* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #071526;
    color: #f4f1e8;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #04101f;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    color: #f7c873;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #f4f1e8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s, border-bottom 0.2s;
}

.nav-links a:hover,
.nav-links .active {
    color: #f7c873;
    border-bottom: 2px solid #f7c873;
}

.hero {
    min-height: 78vh;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(4, 16, 31, 0.70), rgba(4, 16, 31, 0.85)),
        url("pour.jpg") center/cover;
}

.hero-text {
    max-width: 700px;
}

.eyebrow {
    color: #f7c873;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 10px 0 20px;
}

h2 {
    color: #f7c873;
}

.button,
button {
    display: inline-block;
    background: #f7c873;
    color: #071526;
    border: none;
    padding: 13px 22px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.button:hover,
button:hover {
    background: #ffd98c;
    transform: translateY(-2px);
}

.info-grid,
.menu-layout,
.staff-grid,
.contact-layout {
    display: grid;
    gap: 24px;
    padding: 55px 8%;
}

.info-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.menu-box,
.staff-card,
.text-panel,
.contact-form,
.contact-info {
    background: #0d2138;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    padding: 55px 8%;
    background: #091a2d;
}

.feature-section img,
.image-row img,
.staff-card img {
    border-radius: 18px;
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.page-content {
    min-height: 80vh;
}

.page-intro {
    padding: 55px 8% 20px;
    max-width: 850px;
}

.menu-layout {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 8% 60px;
}

.staff-grid,
.contact-layout {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 25px;
}

.staff-card img {
    height: 340px;
}

.text-panel {
    margin: 0 8% 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 15px;
    margin-bottom: 6px;
    font-weight: bold;
}

input,
select,
textarea {
    padding: 12px;
    border: 1px solid #314763;
    border-radius: 10px;
    background: #06111f;
    color: #f4f1e8;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

form button {
    margin-top: 20px;
    width: fit-content;
}

.map-placeholder {
    margin-top: 20px;
    height: 180px;
    border-radius: 14px;
    background: repeating-linear-gradient(
        45deg,
        #0a1829,
        #0a1829 12px,
        #122b47 12px,
        #122b47 24px
    );
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f7c873;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 25px;
    background: #04101f;
    color: #b9c3cf;
}

@media (max-width: 850px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .info-grid,
    .menu-layout,
    .image-row,
    .staff-grid,
    .contact-layout,
    .feature-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 65vh;
        padding-top: 60px;
    }
}
