/* ===================================
   Tannin & Oak — Styles
   Forest Green + Off-White Palette
===================================== */

:root {
    --forest: #2D4A3E;
    --forest-light: #3D5A4E;
    --forest-dark: #1E3529;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --warm: #D4B896;
    --warm-light: #E8D5BC;
    --warm-dark: #B8956A;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(45, 74, 62, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 74, 62, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 74, 62, 0.16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.2;
    color: var(--forest);
}

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

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

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

/* ===================================
   Buttons
===================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--forest-light);
    border-color: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   Section Tags & Titles
===================================== */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-dark);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--forest);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
}

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

.section-header .section-tag,
.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Navigation
===================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 74, 62, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--warm-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--forest);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--forest);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   Hero Section
===================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 50%, #EDE5D8 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 74, 62, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 184, 150, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(45, 74, 62, 0.1);
    color: var(--forest);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    color: var(--forest-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

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

/* Floating Stat Cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: -2s;
    margin-left: 30px;
}

.stat-card:nth-child(3) {
    animation-delay: -4s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    border-radius: var(--radius-md);
    color: var(--white);
    flex-shrink: 0;
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

/* ===================================
   About Section
===================================== */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

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

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

.about-image-wrapper img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--warm-light) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 74, 62, 0.1);
    border-radius: 50%;
    color: var(--forest);
    flex-shrink: 0;
}

/* ===================================
   Menu Section
===================================== */
.menu {
    padding: 100px 0;
    background-color: var(--cream);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 28px;
    border: 2px solid var(--forest);
    background: transparent;
    color: var(--forest);
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    background-color: rgba(45, 74, 62, 0.05);
}

.menu-tab.active {
    background-color: var(--forest);
    color: var(--white);
}

.menu-content {
    position: relative;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.menu-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-item-image {
    width: 140px;
    min-height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-item-content {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--forest);
}

.menu-item-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Experience Section
===================================== */
.experience {
    padding: 100px 0;
    background-color: var(--forest);
}

.experience .section-tag {
    color: var(--warm-light);
}

.experience .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

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

.experience-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.experience-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.experience-card-content {
    padding: 28px;
}

.experience-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--forest);
}

.experience-card-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   Visit Section
===================================== */
.visit {
    padding: 100px 0;
    background-color: var(--white);
}

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

.visit-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 74, 62, 0.1);
    border-radius: var(--radius-md);
    color: var(--forest);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--forest);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--forest);
    text-decoration: underline;
}

.hours {
    background-color: var(--cream);
    padding: 28px;
    border-radius: var(--radius-lg);
}

.hours h4 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: var(--forest);
    margin-bottom: 16px;
}

.hours p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ===================================
   Footer
===================================== */
.footer {
    background-color: var(--forest-dark);
    color: var(--cream);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    color: var(--warm);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.7);
}

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

.footer-newsletter h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(245, 240, 232, 0.3);
    background-color: rgba(245, 240, 232, 0.1);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(245, 240, 232, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--warm);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--warm);
    color: var(--forest-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--warm-light);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.15);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
}

/* ===================================
   Mobile Menu
===================================== */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--cream);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.nav-links.open {
    right: 0;
}

.nav-links a {
    font-size: 1.1rem;
}

.mobile-menu-btn {
    z-index: 1002;
}

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

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

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

/* ===================================
   Responsive
===================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-cards {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-wrapper img {
        height: 500px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links li:last-child {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .stat-card {
        padding: 18px;
    }
    
    .stat-icon {
        width: 44px;
        height: 44px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        min-height: 180px;
    }
    
    .menu-item-content {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===================================
   Success Message
===================================== */
.success-message {
    display: none;
    padding: 12px 20px;
    background-color: rgba(45, 74, 62, 0.1);
    color: var(--forest);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 12px;
    animation: fadeIn 0.3s ease;
}

.success-message.show {
    display: block;
}
