/* CSS Variables */
:root {
    --color-midnight: #0f1c3f;
    --color-midnight-light: #1a2b52;
    --color-mint: #b8e6d3;
    --color-mint-dark: #8fbfa8;
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-midnight);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

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

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

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

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 28, 63, 0.08);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-midnight);
}

.logo .dot {
    color: var(--color-mint-dark);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.3px;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1.5px;
    background-color: var(--color-midnight);
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-midnight);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background-color: var(--color-midnight);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/35627597/pexels-photo-35627597.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

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

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    color: var(--color-white);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-title .text-mint {
    color: var(--color-mint);
    font-style: italic;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-mint-dark);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-midnight);
}

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

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

.feature-item {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--color-mint-dark);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.feature-item p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Menu Section */
.menu-section {
    background-color: var(--color-white);
}

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

.menu-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-img {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3/2;
}

.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-info {
    padding: 8px 0;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.menu-header h4 {
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.menu-header .tag {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    background-color: var(--color-mint);
    color: var(--color-midnight);
    border-radius: 20px;
}

.menu-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

/* Quote Section */
.quote-section {
    background-color: var(--color-midnight);
    padding: 80px 0;
    text-align: center;
}

.quote-section blockquote {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--color-white);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Location Section */
.location-section {
    background-color: var(--color-off-white);
}

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

.location-info .section-tag {
    margin-bottom: 16px;
}

.location-info .section-title {
    margin-bottom: 40px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.detail-item .value {
    font-size: 16px;
    color: var(--color-midnight);
    line-height: 1.6;
}

.detail-item a.value:hover {
    color: var(--color-mint-dark);
}

.map-placeholder {
    margin-top: 32px;
}

.location-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-midnight);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--color-midnight);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--color-white);
    font-size: 28px;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}
