/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Merriweather:wght@300;400;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --midnight-blue: #1a2332;
    --warm-gold: #d4a574;
    
    /* Logo Colors */
    --cream: #fde8d7;
    --logo-red: #c13939;
    --logo-green: #2d5f3f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #faf8f5;
    --light-gray: #f5f3f0;
    --medium-gray: #a8a5a0;
    --dark-gray: #4a4845;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.25;
    color: var(--midnight-blue);
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: var(--spacing-sm);
}
h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

#content > div {
    max-width: 100% !important;
    padding: 0px ! IMPORTANT;
    display: block ! IMPORTANT;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--midnight-blue);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--midnight-blue);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--midnight-blue);
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.logo img {
    height: 80px;
    width: auto;
}

.text-center  {
    text-align: center;
}

.main-nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--midnight-blue);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--warm-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: var(--midnight-blue);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xxl);
}

.footer-content {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.footer-delivery,
.footer-contact {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--midnight-blue);
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
    pointer-events: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 100px;
    }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        right: 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--light-gray);
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav-link:hover {
        background-color: var(--off-white);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .logo img {
        height: 60px;
    }
}