/* 
* Handanbey Döner - Ultra Luxury Split Theme
* Iteration 2: Strict Visual Match
*/

:root {
    /* Exact Colors from Reference */
    --color-burgundy: #7a1a23;
    /* Deep Wine */
    --color-cream: #f2e1d1;
    /* Soft Cream */
    --color-gold: #bfa37c;
    /* Muted Elegant Gold */
    --color-gold-bright: #d4af37;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;

    --frame-inset: 30px;
    /* Distance of gold line from edge */
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-serif);
    background-color: var(--color-cream);
}

/* 
   Layout Structure 
   The page is divided into a Top (Burgundy) and Bottom (Cream) section.
*/

.hero-zone {
    background-color: var(--color-burgundy);
    height: 85vh;
    /* Takes up most of the screen */
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--frame-inset);
}

/* The Gold Frame Line */
.hero-zone::before {
    content: '';
    position: absolute;
    top: var(--frame-inset);
    left: var(--frame-inset);
    right: var(--frame-inset);
    bottom: 0;
    /* Open at bottom or closed? Reference shows open or connecting to line */
    border: 1px solid rgba(191, 163, 124, 0.4);
    border-bottom: none;
    /* Let it flow into the text separator */
    pointer-events: none;
    z-index: 1;
}

/* Header inside the Burgundy Zone */
.site-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 10;
    position: relative;
}

.logo {
    font-family: var(--font-serif);
    color: var(--color-gold);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: -2rem;
    /* Slight adjustment */
}

/* The Plate Image */
.hero-plate {
    width: 450px;
    height: 450px;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4));
    /* Animation */
    animation: floatPlate 4s ease-in-out infinite;
}

@keyframes floatPlate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* The Massive Text */
.hero-title {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--color-cream);
    /* Or Gold? Reference shows Cream/White */
    font-weight: 400;
    margin-top: -4rem;
    /* Overlap with plate bottom */
    z-index: 6;
    text-align: center;
    line-height: 1;
}

.hero-title span {
    color: var(--color-gold);
    font-style: italic;
}

/* Separator Line */
.separator-line {
    width: calc(100% - (var(--frame-inset) * 2));
    height: 1px;
    background-color: rgba(191, 163, 124, 0.4);
    position: absolute;
    bottom: 0;
    left: var(--frame-inset);
}

/* Bottom Cream Zone */
.content-zone {
    background-color: var(--color-cream);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

/* Connecting lines for the frame effect */
.content-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--frame-inset);
    bottom: 0;
    width: 1px;
    background-color: rgba(191, 163, 124, 0.4);
}

.content-zone::after {
    content: '';
    position: absolute;
    top: 0;
    right: var(--frame-inset);
    bottom: 0;
    width: 1px;
    background-color: rgba(191, 163, 124, 0.4);
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
}

.intro-subtitle {
    font-family: var(--font-sans);
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.intro-heading {
    font-size: 2.5rem;
    color: var(--color-burgundy);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-burgundy);
    color: var(--color-burgundy);
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--color-burgundy);
    color: var(--color-cream);
}

/* Mobile Responsiveness */
.mobile-toggle {
    display: none;
    color: var(--color-gold);
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-zone {
        height: auto;
        min-height: 80vh;
        padding: 15px;
    }

    .hero-zone::before {
        top: 15px;
        left: 15px;
        right: 15px;
    }

    .separator-line {
        width: calc(100% - 30px);
        left: 15px;
    }

    .content-zone::before {
        left: 15px;
    }

    .content-zone::after {
        right: 15px;
    }

    .site-header {
        padding: 1rem 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-burgundy);
        padding: 2rem;
        text-align: center;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 1000;
        font-size: 1.5rem;
        padding: 10px;
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 1.2rem;
    }


    .hero-plate {
        width: 280px;
        height: 280px;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 3rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }

    .intro-heading {
        font-size: 1.8rem;
    }
}

/* Subpage Hero */
.subpage-hero {
    height: 50vh;
    min-height: 400px;
}

.subpage-hero .hero-title {
    font-size: 4rem;
    margin-top: 0;
}

/* Shop & Location Sections */
.image-section {
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background-color: rgba(191, 163, 124, 0.1);
    /* Light gold tint */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 90%;
    max-width: 1000px;
    height: 650px;
    /* Fixed height for crop */
    object-fit: cover;
    display: block;
    border: 2px solid var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-section {
    background-color: var(--color-burgundy);
    padding: 6rem 2rem;
    color: var(--color-cream);
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-map {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

/* Footer Styles */
footer {
    background-color: var(--color-burgundy);
    color: var(--color-gold);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(191, 163, 124, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 3rem;
    gap: 2rem;
}

.footer-brand h3,
.footer-info h4 {
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--color-gold);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-burgundy);
}

.copyright {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    opacity: 0.5;
    padding-top: 2rem;
}

/* Menu List Centering */
.menu-list {
    max-width: 500px;
    margin: 20px auto;
}.btn-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 2rem;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.btn-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-burgundy);
}

