/* Variables */
:root {
    --color-midnight: #0f1c3f;
    --color-mint: #a8d5ba;
    --color-mint-light: #e8f5e9;
    --color-cream: #fdfbf7;
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    --color-white: #ffffff;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    --spacing-section: 5rem;
    --spacing-container: 1.5rem;
}

/* Reset & Base */
*, *::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-cream);
    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: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

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

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-midnight);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.subtitle {
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    color: var(--color-mint);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-mint);
    color: var(--color-midnight);
}

.btn-primary:hover {
    background-color: var(--color-white);
    border-color: var(--color-mint);
}

.btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

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

.btn-text {
    background: transparent;
    color: var(--color-white);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.btn-text:hover {
    border-color: var(--color-white);
}

/* Header */
.site-header {
    background-color: var(--color-midnight);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 400;
}

.main-nav a:hover {
    color: var(--color-mint);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 28, 63, 0.6), rgba(15, 28, 63, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 1.5rem;
}

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

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

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

.bg-light {
    background-color: var(--color-mint-light);
}

.section-header {
    margin-bottom: 3rem;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.features-list {
    margin-top: 1.5rem;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-midnight);
}

.features-list li::before {
    content: '•';
    color: var(--color-mint);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

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

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

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

.menu-info {
    padding: 1.5rem;
}

.menu-info p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-info {
    padding: 3rem;
    background: var(--color-midnight);
    color: var(--color-white);
}

.contact-info h2 {
    color: var(--color-white);
}

.contact-info p {
    color: rgba(255,255,255,0.8);
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block strong {
    display: block;
    color: var(--color-mint);
    margin-bottom: 0.25rem;
    font-family: var(--font-serif);
}

.info-block a {
    color: var(--color-white);
}

.info-block a:hover {
    color: var(--color-mint);
    text-decoration: underline;
}

.contact-map {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    color: var(--color-midnight);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.map-link:hover .map-overlay {
    background: var(--color-mint);
}

/* Footer */
.footer {
    background-color: #0a1229;
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

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

.social-links a {
    color: rgba(255,255,255,0.6);
}

.social-links a:hover {
    color: var(--color-mint);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        box-shadow: 10px 10px 0 var(--color-mint);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-midnight);
        padding: 1rem 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-text {
        border-bottom: none;
        border-top: 1px solid rgba(255,255,255,0.5);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 2rem;
    }
}
