:root {
    --color-navy: #0b1c2c;
    --color-navy-dark: #050e16;
    --color-copper: #c78657;
    /* Copper/Rose Gold */
    --color-cream: #f4ecdf;
    --color-white: #ffffff;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-navy);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navbar */
#navbar {
    position: fixed;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.4s;
}

#navbar.scrolled {
    background: var(--color-navy-dark);
    padding: 15px 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
}

.logo .dot {
    color: var(--color-copper);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-cream);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--color-copper);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-reserve {
    padding: 12px 30px;
    border: 1px solid var(--color-copper);
    color: var(--color-copper);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-reserve:hover {
    background: var(--color-copper);
    color: var(--color-navy);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/elegant_dining_interior.png') center/cover;
    filter: brightness(0.4);
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    color: var(--color-copper);
    display: block;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 6rem;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* History */
.history-section {
    padding: 120px 60px;
    background: var(--color-navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.image-box {
    flex: 1;
    position: relative;
}

.image-box img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-navy-dark);
}

.sepia-filter {
    filter: sepia(0.4) contrast(1.1);
}

.year-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--color-copper);
    color: var(--color-navy);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.text-box {
    flex: 1;
}

.text-box h6 {
    color: var(--color-copper);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.text-box h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.text-box p {
    color: rgba(244, 236, 223, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-copper);
    padding-bottom: 5px;
}

/* Menu */
.menu-section {
    padding: 120px 60px;
    background: var(--color-navy-dark);
}

.center {
    text-align: center;
}

.divider {
    height: 2px;
    width: 60px;
    background: var(--color-copper);
    margin: 20px auto;
}

.dish-card {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.dish-card.reverse {
    flex-direction: row-reverse;
}

.dish-image {
    flex: 1;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    transition: 0.5s;
    filter: opacity(0.9);
}

.dish-image:hover img {
    transform: scale(1.05);
    filter: opacity(1);
}

.dish-info {
    flex: 1;
}

.dish-info h3 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.dish-info .description {
    font-style: italic;
    color: var(--color-copper);
    margin-bottom: 20px;
}

.dish-info .price {
    font-size: 2rem;
    font-family: var(--font-heading);
}

.menu-list-block {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-navy);
    padding: 60px;
    border: 1px solid rgba(199, 134, 87, 0.2);
}

.menu-item {
    margin-bottom: 30px;
}

.item-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.item-header h4 {
    font-size: 1.5rem;
    color: var(--color-white);
}

.dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

.item-header .price {
    color: var(--color-copper);
    font-size: 1.3rem;
}

.menu-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Reservation Form */
.reservation-section {
    background: url('assets/images/bg-06.jpg') center/cover fixed;
    /* Using downloaded bg if avail */
    padding: 100px 20px;
    position: relative;
    text-align: center;
}

/* Fallback if bg not good */
.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 44, 0.85);
}

.rsvp-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.rsvp-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.rsvp-form input,
.rsvp-form select {
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-family: var(--font-body);
}

.btn-submit {
    padding: 15px;
    background: var(--color-copper);
    border: none;
    color: var(--color-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--color-white);
}

/* Footer */
footer {
    background: var(--color-navy-dark);
    padding: 80px 60px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-cols h5 {
    color: var(--color-copper);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-cols p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* Animations */
@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .dish-card {
        flex-direction: column !important;
    }

    #navbar {
        padding: 20px;
        background: var(--color-navy-dark);
    }

    .nav-links {
        display: none;
    }
}