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

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-weight: 400;
    letter-spacing: -0.011em;
    font-feature-settings: 'cv11', 'ss01';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a3d1f 0%, #2c5530 100%);
    color: white;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    background-color: rgba(44, 85, 48, 0.95);
}

.header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo img {
    height: 180px;
    width: auto;
    display: block;
}

.navigation {
    position: static;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #a8d6ac;
    text-shadow: 0 0 8px rgba(168, 214, 172, 0.5);
}

.nav-menu a.active {
    border-bottom: 2px solid #90c695;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    z-index: 1001;
    position: relative;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Main content */
main {
    margin-top: 48px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, rgba(26, 61, 31, 0.88) 0%, rgba(44, 85, 48, 0.85) 40%, rgba(58, 107, 63, 0.82) 100%),
                url('golf-g45630ddab_1920.jpg') center/cover no-repeat;
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(144, 198, 149, 0.15) 20%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(144, 198, 149, 0.1) 25%, transparent 60%),
                      radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.05) 15%, transparent 45%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 200px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)) drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    opacity: 0.95;
}

.hero-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.02em;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
}

/* Sections */
section {
    padding: 4rem 0;
}

.menu-section {
    background-color: white;
}

.menu-section h2,
.about-section h2,
.contact-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c5530;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.2;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.menu-category {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.menu-category h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-item {
    border-bottom: 1px solid #ddd;
    padding: 1.5rem 0;
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.menu-item p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: -0.005em;
}

.price {
    position: absolute;
    right: 0;
    top: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

/* Weekly menu styles */
.weekly-menu {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    border: 1px solid rgba(144, 198, 149, 0.1);
}

.weekly-header {
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-align: center;
    font-size: 2.4rem;
    color: #2c5530;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #90c695;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.daily-menu {
    margin-bottom: 2rem;
}

.daily-menu:last-of-type {
    margin-bottom: 2rem;
}

.daily-menu h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.daily-menu .menu-item {
    border: none;
    padding: 0;
    position: static;
}

.daily-menu .menu-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.special-note {
    color: #c8975f;
    font-style: italic;
    font-weight: 500;
}

.italic {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
}

.book-note {
    font-size: 1rem;
    color: #c8975f;
    font-weight: 500;
    margin-left: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.menu-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 2rem;
    margin-top: 2rem;
}

.included {
    background: linear-gradient(145deg, #fafafa 0%, #f4f4f4 100%);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-style: italic;
    border: 1px solid rgba(144, 198, 149, 0.1);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: -0.005em;
}

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

.price-info p {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.015em;
}

.price-info p strong {
    font-weight: 700;
    color: #2c5530;
}

.booking-info {
    text-align: center;
    background: linear-gradient(135deg, #2c5530 0%, #3a6b3f 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.3);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.008em;
    line-height: 1.6;
}

/* Always available menu */
.always-menu {
    margin-top: 3rem;
}

.always-menu h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.always-menu .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.always-menu .menu-item {
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf9 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(144, 198, 149, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.always-menu .menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: rgba(144, 198, 149, 0.3);
}

.always-menu .menu-item h4 {
    margin-bottom: 0.5rem;
}

.always-menu .price {
    position: static;
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(135deg, #2c5530 0%, #3a6b3f 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(44, 85, 48, 0.2);
}

.always-menu .price:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

/* About section */
.about-section {
    background-color: #f0f5f0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.008em;
}

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

.image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.placeholder-image {
    background-color: #ddd;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #666;
}

/* Contact section */
.contact-section {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-info h3,
.opening-hours h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #2c5530;
    display: block;
    margin-bottom: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.note {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.reservation-note {
    background: linear-gradient(135deg, #f5faf5 0%, #e8f5e8 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid rgba(144, 198, 149, 0.2);
    box-shadow: 0 4px 15px rgba(144, 198, 149, 0.1);
}

.reservation-note strong {
    color: #2c5530;
}

/* Footer */
.footer {
    background-color: #2c5530;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    color: #90c695;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #90c695;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a6b4d;
    color: #ccc;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 48px;
        left: 0;
        right: 0;
        background-color: #2c5530;
        flex-direction: column;
        padding: 1rem 20px;
        gap: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.15;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 0.015em;
    }
    
    .hero-content p {
        font-size: 1rem;
        letter-spacing: -0.005em;
        line-height: 1.65;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    main {
        margin-top: 48px;
    }
    
    .hero-logo img {
        height: 150px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .menu-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
        letter-spacing: 0;
    }
    
    /* Weekly menu mobile styles */
    .weekly-menu {
        padding: 1.5rem;
    }
    
    .weekly-header {
        font-size: 1.5rem;
    }
    
    .daily-menu h4 {
        font-size: 1.3rem;
    }
    
    .book-note {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
    
    .price-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .booking-info {
        font-size: 0.95rem;
    }
    
    .always-menu .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        letter-spacing: -0.008em;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
    
    .price {
        position: static;
        margin-top: 0.5rem;
        display: block;
    }
}

/* Accessibility improvements */
a:focus,
button:focus {
    outline: 2px solid #90c695;
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.menu-section,
.about-section,
.contact-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animation delays */
.menu-section {
    animation-delay: 0.2s;
}

.about-section {
    animation-delay: 0.3s;
}

.contact-section {
    animation-delay: 0.4s;
}

/* Enhanced link transitions */
a {
    position: relative;
    transition: all 0.3s ease;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}