@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --base-color: hsl(0, 0%, 10%);
    --primary-color: #3e3e3e;
    --secondary-color: #73281a;
    --text-color: white;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--text-color);
}

body {
    background-color: var(--base-color);
}

header {
    height: 100vh;
    background-color: var(--primary-color);
    letter-spacing: 1.5px;
}

nav {
    width: 90%;
    margin-inline: auto;
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: clamp(1em, 2vw, 1.5em);
}

nav .logo {
    margin-right: auto;
}

nav .logo img {
    width: clamp(4rem, 10vw, 7rem);
    height: auto;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(1rem, 1.8vw, 1.6rem);
}

nav a:hover {
    text-decoration: underline;
}

hr {
    border-color: #aaaaaa;
}

header .header-image {
    text-align: center;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .header-image img {
    width: clamp(10rem, 30vw, 16rem);
    height: auto;
}

header .header-image h1 {
    font-weight: 500;
    font-size: clamp(2.2rem, 6vw, 4rem);
}

header .header-image p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 0;
    font-weight: 300;
    margin-block: 10px;
}

#AboutUs {
    background-color: var(--secondary-color);
    padding: 4em 0;
}

.flex-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

#AboutUs .text-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 400px;
}

#AboutUs .text-container h2 {
    font-weight: 500;
    font-size: 5rem;
}

#AboutUs h4 {
    margin-block: 0.5em;
}

#AboutUs p {
    margin-block: 2em;
    line-height: 30px;
    letter-spacing: 2px;
    font-weight: 300;
}

#AboutUs .highlight {
    background-color: #ff894f;
    padding: 5px;
    color: #000;
    font-weight: 500;
    border-radius: 5px;
}

#AboutUs img {
    flex: 1 1 400px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

#Menu {
    background-color: var(--primary-color);
    padding: 2rem 0;
}

#Menu h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 400;
}

#Menu .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 max(300px, calc(50% - 2rem));
}

#Menu .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}

#Menu .card .name {
    margin-block: 1rem;
    font-size: 2rem;
    font-weight: 500;
}

#Menu .card ul {
    width: 100%;
    padding-left: 2em;
    display: flex;
    column-gap: max(2em, 10%);
    row-gap: 0;
    flex-wrap: wrap;
    list-style: square;
}

#BookNow {
    background-color: var(--secondary-color);
    padding: 2rem;
}

#BookNow h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 400;
}

#BookNow form {
    width: min(90%, 400px);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin: auto;
}

#BookNow input {
    height: 40px;
    padding: 5px;
}

#BookNow label {
    display: block;
    margin-block: 0.5rem;
}

#BookNow form * {
    width: 100%;
    border: none;
    border-radius: 5px;
}

#BookNow #Submit {
    width: 100%;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: transparent;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    cursor: pointer;
    margin-block: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: min(1rem, 4vw);
    font-weight: 300;
    letter-spacing: 1.5px;
}