/* --- Reset & Base --- */
:root {
    --color-burgundy: #722F37;
    --color-burgundy-dark: #562329;
    --color-blush: #FCE4EC;
    --color-blush-light: #FFF0F5;
    --color-text: #2D2D2D;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    --spacing-container: 1200px;
    --spacing-section: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--spacing-section) 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

.display-h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.overline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-accent {
    color: var(--color-burgundy);
    font-style: italic;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.opacity-80 { opacity: 0.8; }
.mt-4 { margin-top: 2rem; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-burgundy-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

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

.full-width {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.navbar.scrolled .logo {
    color: var(--color-burgundy);
}

.logo-accent {
    font-weight: 400;
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 400;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
}

.nav-links a:hover {
    color: var(--color-blush);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-burgundy);
}

.nav-links .btn-primary {
    background-color: var(--color-white);
    color: var(--color-burgundy);
    border: none;
}

.nav-links .btn-primary:hover {
    background-color: var(--color-blush);
    color: var(--color-burgundy-dark);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: 0.3s;
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--color-burgundy);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-burgundy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
}

.mobile-menu-overlay ul {
    text-align: center;
}

.mobile-menu-overlay ul li {
    margin: 20px 0;
}

.mobile-menu-overlay ul li a {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 2rem;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-burgundy) 0%, #8a3a44 50%, var(--color-blush) 100%);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3985083/pexels-photo-3985083.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-headline {
    font-size: 4.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Floating Images */
.hero-img-card {
    position: absolute;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.float-img-1 {
    top: 15%;
    left: 5%;
    width: 250px;
}

.float-img-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Features --- */
.features {
    background-color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--color-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-burgundy);
}

.feature-item p {
    color: var(--color-text-light);
}

/* --- Menu --- */
.menu {
    background-color: var(--color-bg);
}

.section-header {
    margin-bottom: 60px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.menu-img {
    height: 300px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.05);
}

.menu-content {
    padding: 40px;
}

.menu-content h3 {
    font-size: 2rem;
    color: var(--color-burgundy);
    margin-bottom: 15px;
}

.menu-desc {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.menu-list li {
    position: relative;
    padding-left: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.menu-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--color-burgundy);
}

/* --- About --- */
.about {
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper .main-img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--color-blush);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    padding: 20px 30px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

.about-content h2 {
    color: var(--color-burgundy);
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--color-burgundy-dark) 0%, var(--color-burgundy) 100%);
    color: var(--color-white);
    padding: 100px 0;
}

.cta-section .display-h2 {
    color: var(--color-white);
}

.cta-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.cta-box svg {
    margin-bottom: 20px;
    color: var(--color-blush);
}

.cta-box h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.link-underline {
    color: var(--color-blush);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* --- Contact --- */
.contact {
    background-color: var(--color-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-form-container {
    padding: 60px;
}

.contact-form-container h3 {
    font-size: 2rem;
    color: var(--color-burgundy);
    margin-bottom: 10px;
}

.contact-form-container p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
}

.form-feedback {
    margin-top: 15px;
    font-weight: 700;
}

.form-success {
    color: green;
}

.form-error {
    color: red;
}

.contact-map {
    min-height: 400px;
    background-color: #eee;
}

/* --- Footer --- */
footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copy {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }
    
    .float-img-1, .float-img-2 {
        display: none;
    }
    
    .display-h2 {
        font-size: 2.8rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-wrapper {
        order: -1;
    }
    
    .cta-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 40px 20px;
    }
    
    .display-h2 {
        font-size: 2.2rem;
    }
}
