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

:root {
    --primary: #2D5A27;
    --primary-light: #4A7C44;
    --primary-dark: #1a3a16;
    --secondary: #7a3b10;
    --accent: #c8860a;
    --accent-light: #f0a830;
    --gold: #d4a843;
    --bg-cream: #F9F3E8;
    --bg-warm: #f2e8d4;
    --text-dark: #16120d;
    --text-mid: #3d3427;
    --text-light: #6b5f50;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 18px;
    --radius-lg: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .heading-font {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    font-weight: 600;
}

/* ================================
   NAVIGATION
================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(249, 243, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 8%;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

nav.scrolled .logo {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

nav.scrolled .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
}

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

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

/* ================================
   HERO SECTION
================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    background:
        linear-gradient(160deg, rgba(10, 30, 8, 0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(44,24,4,0.5) 100%),
        url('./images/farmstay.jpeg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 6%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.18);
    border: 1px solid rgba(212, 168, 67, 0.45);
    backdrop-filter: blur(10px);
    color: var(--accent-light);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.9s forwards 0.2s;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 10px 28px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.5);
    border-radius: 4px;
    backdrop-filter: blur(8px);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.35s;
}

.hero h1 {
    font-size: clamp(3.2rem, 7.5vw, 6rem);
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    font-weight: 700;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero p {
    font-size: 1.2rem;
    max-width: 620px;
    margin-bottom: 44px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

.cta-btn {
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(200, 134, 10, 0.4);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(200, 134, 10, 0.5);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.cta-btn-ghost {
    padding: 15px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.cta-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-4px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s forwards 1.8s;
    opacity: 0;
}

.scroll-line {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ================================
   SECTIONS COMMON
================================ */
section {
    padding: 110px 8%;
}

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

.section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    position: relative;
    padding: 0 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.section-eyebrow::before { right: 100%; margin-right: -14px; }
.section-eyebrow::after  { left: 100%; margin-left: -14px; }

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* ================================
   ABOUT SECTION
================================ */
#about {
    background: var(--bg-cream);
}

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

.about-content h3 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

.about-content p {
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.85;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 44px;
}

.stat-item {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle at top right, rgba(212, 168, 67, 0.12), transparent 70%);
}

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

.stat-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 560px;
    box-shadow: var(--shadow-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.25);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

/* ================================
   ACTIVITIES SECTION
================================ */
#activities {
    background: var(--bg-warm);
}

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

.activity-card {
    position: relative;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 50px 30px 34px;
    background: linear-gradient(transparent, rgba(10, 20, 5, 0.88) 60%);
    color: var(--white);
    transform: translateY(10px);
    transition: var(--transition);
}

.activity-card:hover .activity-overlay {
    transform: translateY(0);
}

.activity-overlay h3 {
    font-size: 1.65rem;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.activity-overlay p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.activity-tag {
    display: inline-block;
    background: rgba(212, 168, 67, 0.25);
    border: 1px solid rgba(212, 168, 67, 0.5);
    color: var(--accent-light);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* ================================
   CULINARY SECTION
================================ */
.culinary {
    background: linear-gradient(145deg, var(--primary-dark) 0%, #1f4019 40%, #2a5022 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.culinary::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.culinary::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(74,124,68,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.culinary .section-header h2 {
    color: var(--bg-cream);
}

.culinary .section-eyebrow {
    color: var(--gold);
}

.culinary .section-eyebrow::before,
.culinary .section-eyebrow::after {
    background: var(--gold);
}

.food-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.food-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.food-type:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,168,67,0.2);
}

.food-type:nth-child(even) {
    direction: rtl;
}

.food-type:nth-child(even) .food-info {
    direction: ltr;
}

.food-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    position: relative;
}

.food-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px rgba(212,168,67,0.2);
    pointer-events: none;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.food-type:hover .food-image img {
    transform: scale(1.05);
}

.food-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,168,67,0.15);
    border: 1px solid rgba(212,168,67,0.35);
    color: var(--gold);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.food-info h3 {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: var(--bg-cream);
}

.food-info > p {
    color: rgba(255,255,255,0.65);
    font-size: 0.97rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.food-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.food-info li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.food-info li:hover {
    background: rgba(212,168,67,0.15);
    border-color: rgba(212,168,67,0.4);
    color: var(--accent-light);
}

.food-info li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
}

/* ================================
   GALLERY SECTION
================================ */
#gallery {
    background: #12100d;
    color: var(--white);
    padding-bottom: 120px;
}

#gallery .section-header h2 {
    color: var(--bg-cream);
}

#gallery .subtitle {
    color: rgba(255,255,255,0.5);
}

#gallery .section-eyebrow {
    color: var(--gold);
}

#gallery .section-eyebrow::before,
#gallery .section-eyebrow::after {
    background: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 16px 50px rgba(0,0,0,0.7);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.92);
}

.gallery-item.wide img {
    height: 370px;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(5, 10, 3, 0.82) 100%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption span {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.5px;
    padding-left: 4px;
    border-left: 2.5px solid var(--gold);
    padding-left: 10px;
}

/* ================================
   FLORA SECTION
================================ */
#flora {
    background: var(--bg-cream);
    position: relative;
}

#flora::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.flora-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.tree-card {
    width: 175px;
    text-align: center;
    transition: var(--transition);
}

.tree-card:hover {
    transform: translateY(-6px);
}

.tree-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-warm) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    font-size: 2.8rem;
    box-shadow: var(--shadow), 0 0 0 6px rgba(212,168,67,0.1);
    transition: var(--transition);
    border: 2px solid rgba(212,168,67,0.2);
}

.tree-card:hover .tree-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: var(--shadow-lg), 0 0 0 8px rgba(45,90,39,0.12);
    border-color: var(--primary-light);
}

.tree-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-mid);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================================
   BOOKING SECTION
================================ */
.booking-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #173514 50%, #1f4019 100%);
    padding: 110px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.booking-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.booking-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bg-cream);
    margin: 12px 0 16px;
    letter-spacing: -0.2px;
}

.booking-inner > p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-bottom: 56px;
    line-height: 1.8;
}

.booking-options {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.booking-card {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.booking-card:hover {
    background: rgba(255,255,255,0.05);
}

.booking-icon {
    font-size: 2.4rem;
    margin-bottom: 6px;
}

.booking-card h3 {
    font-size: 1.6rem;
    color: var(--bg-cream);
    margin-bottom: 4px;
}

.booking-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.93rem;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.booking-phone {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    padding: 14px 36px;
    background: rgba(212,168,67,0.15);
    border: 2px solid rgba(212,168,67,0.6);
    border-radius: 50px;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(212,168,67,0.1);
}

.booking-phone:hover {
    background: rgba(212,168,67,0.28);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,168,67,0.25);
    color: var(--accent-light);
}

.booking-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    margin: 30px 0;
    flex-shrink: 0;
}

.booking-cta {
    margin-top: auto;
    font-size: 0.85rem;
}

@media (max-width: 700px) {
    .booking-options {
        flex-direction: column;
    }
    .booking-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .booking-card {
        padding: 36px 24px;
    }
}

/* ================================
   FOOTER
================================ */
footer {
    background: #0e0c09;
    color: var(--white);
    padding: 90px 8% 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4), transparent);
}

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

.footer-brand h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--bg-cream);
    letter-spacing: 1px;
}

.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.93rem;
    line-height: 1.85;
    max-width: 300px;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

.footer-links h4 {
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.72rem;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-address-link {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.9;
    display: inline-block;
    transition: var(--transition);
}

.footer-address-link:hover {
    color: rgba(255,255,255,0.8);
}

.maps-cta {
    display: inline-block;
    margin-top: 6px;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.93rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.copyright {
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

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

.reveal {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1100px) {
    .activity-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 968px) {
    /* --- Nav & Logo --- */
    nav {
        padding: 12px 5%;
    }

    nav.scrolled {
        padding: 10px 5%;
    }

    .logo-img {
        height: 60px;
    }

    /* Push hero content below the smaller nav */
    .hero {
        padding-top: 90px;
        justify-content: center;
    }

    /* --- Layout --- */
    .about-grid,
    .food-type {
        grid-template-columns: 1fr;
    }

    .food-type {
        padding: 28px;
    }

    .food-type:nth-child(even) {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .nav-links {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .hero-ctas {
        flex-direction: column;
    }

    /* Prevent badge stars from wrapping to next line */
    .hero-badge {
        white-space: nowrap;
        font-size: 0.68rem;
        padding: 7px 16px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 10px 4%;
    }

    .logo-img {
        height: 48px;
    }

    /* Extra top padding for very small screens */
    .hero {
        padding-top: 75px;
    }

    /* Scroll hint flows below buttons instead of overlapping */
    .hero-scroll-hint {
        position: static;
        margin-top: 18px;
        transform: none;
        opacity: 1;
        animation: none;
    }
    section {
        padding: 80px 5%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .activity-card {
        height: 420px;
    }

    .food-image {
        height: 300px;
    }
}