/* ============================================================
   Greenville Senior Center - Main Stylesheet
   Colors: Green #00C853, Black #1a1a1a, White #ffffff
   ============================================================ */

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

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

body {
    font-family: 'Lato', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
    display: inline-block;
    background: #e8f8ef;
    color: #00a844;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #00C853;
    color: #000000;
    border-color: #00C853;
}

.btn-primary:hover {
    background: #00a844;
    border-color: #00a844;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-outline-dark:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-facebook {
    background: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    border: 2px solid #1877F2;
}

.btn-facebook:hover {
    background: #1464d8;
    border-color: #1464d8;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-map {
    background: #00C853;
    color: #000000;
    border-color: #00C853;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: 2px solid #00C853;
    display: inline-block;
}

.btn-map:hover {
    background: #00a844;
    border-color: #00a844;
    color: #000000;
}

.facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #00C853;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00C853;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.nav-tagline {
    font-size: 0.72rem;
    color: #00a844;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 700;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: #00C853;
    background: #f0faf4;
}

.nav-links .nav-cta {
    background: #00C853;
    color: #000000;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-links .nav-cta:hover {
    background: #00a844;
    color: #000000;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 72px;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 50, 20, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: #00C853;
    color: #000000;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
}

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

.hero-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-prev, .hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.hero-prev:hover, .hero-next:hover {
    background: #00C853;
    border-color: #00C853;
    color: #000000;
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: #00C853;
    border-color: #00C853;
    transform: scale(1.3);
}

/* ============================================================
   WELCOME BANNER
   ============================================================ */
.welcome-banner {
    background: #00C853;
    padding: 48px 0;
}

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

.welcome-item {
    text-align: center;
    color: #000000;
}

.welcome-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.welcome-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
}

.welcome-item p {
    font-size: 0.88rem;
    color: #1a3a1a;
    line-height: 1.5;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    padding: 100px 0;
    background: #ffffff;
}

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

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

.about-img-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 520px;
}

.about-badge-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #00C853;
    color: #000000;
    padding: 20px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
    min-width: 200px;
}

.about-badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-badge-text {
    display: flex;
    flex-direction: column;
}

.about-badge-text strong {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
    color: #000000;
}

.about-badge-text span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
}

.about-content {
    padding-left: 16px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.about-content p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8fdf9;
    border-radius: 8px;
    border-left: 4px solid #00C853;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.highlight-item span {
    font-size: 0.82rem;
    color: #777;
    margin-top: 2px;
}

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
.activities {
    padding: 100px 0;
    background: #f8fdf9;
}

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

.activity-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e8f4ed;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 200, 83, 0.15);
    border-color: #00C853;
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.activity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.activity-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00a844;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.activity-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================================
   MEALS SECTION
   ============================================================ */
.meals {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.meals-content .section-label {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
}

.meals-content .section-title {
    color: #ffffff;
}

.meals-content p {
    color: #ccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.meals-features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
    font-size: 0.95rem;
}

.meal-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00C853;
    color: #000000;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

.meals-newsletter {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events {
    padding: 100px 0;
    background: #ffffff;
}

.events-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #f8fdf9;
    border-radius: 8px;
    border: 1px solid #e8f4ed;
    transition: all 0.25s ease;
}

.event-item:hover {
    border-color: #00C853;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.12);
}

.event-item.featured {
    background: #1a1a1a;
    border-color: #00C853;
    border-width: 2px;
}

.event-item.featured .event-details h3 {
    color: #ffffff;
}

.event-item.featured .event-details p {
    color: #ccc;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    background: #00C853;
    color: #000000;
    border-radius: 8px;
    padding: 12px 8px;
    flex-shrink: 0;
}

.event-month {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.event-details p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.event-tag {
    display: inline-block;
    background: #e8f8ef;
    color: #00a844;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
}

.event-item.featured .event-tag {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
}

.events-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}

.calendar-card {
    background: #f8fdf9;
    border: 1px solid #e8f4ed;
    border-radius: 8px;
    padding: 24px;
}

.calendar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.calendar-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 12px;
}

.calendar-note {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

.regular-activities-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 24px;
}

.regular-activities-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #00C853;
    margin-bottom: 16px;
}

.regular-activities-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.regular-activities-card li {
    font-size: 0.85rem;
    color: #ccc;
    padding-left: 12px;
    border-left: 3px solid #00C853;
    line-height: 1.5;
}

.regular-activities-card li strong {
    color: #ffffff;
    display: block;
}

/* ============================================================
   GALA FEATURE SECTION
   ============================================================ */
.gala-feature {
    padding: 100px 0;
    background: #fafafa;
}

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

.gala-images {
    position: relative;
}

.gala-img-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 500px;
}

.gala-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: 8px;
    border: 6px solid #ffffff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    object-fit: cover;
    max-height: 220px;
}

.gala-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: #00a844;
    margin-bottom: 20px;
    font-weight: 600;
}

.gala-quote {
    font-style: italic;
    font-size: 1rem;
    color: #444;
    border-left: 4px solid #00C853;
    padding-left: 20px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.gala-content p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.gala-program {
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.gala-program h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #00C853;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-list li {
    font-size: 0.9rem;
    color: #ccc;
    padding-left: 16px;
    position: relative;
}

.program-list li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: #00C853;
    font-size: 0.6rem;
    top: 5px;
}

.gala-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #1a1a1a;
    font-style: normal !important;
    font-weight: 600;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

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

.gallery-overlay p {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
    padding: 100px 0;
    background: #f8fdf9;
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    border: 1px solid #e8f4ed;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.12);
    border-color: #00C853;
}

.testimonial-card.featured-testimonial {
    grid-column: span 1;
    background: #1a1a1a;
    border-color: #00C853;
}

.testimonial-card.featured-testimonial blockquote {
    color: #ffffff;
}

.testimonial-card.featured-testimonial .testimonial-author strong {
    color: #ffffff;
}

.testimonial-card.featured-testimonial .testimonial-author span {
    color: #aaa;
}

.testimonial-stars {
    color: #00C853;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card.featured-testimonial .testimonial-stars {
    color: #00C853;
}

blockquote {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    color: #00C853;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #00C853;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: #888;
}

/* ============================================================
   FIELD TRIP SECTION
   ============================================================ */
.field-trip {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.field-trip-content .section-label {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
}

.field-trip-content .section-title {
    color: #ffffff;
}

.field-trip-content p {
    color: #ccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.trip-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.trip-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.trip-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00C853;
    line-height: 1;
    margin-bottom: 6px;
}

.trip-stat-label {
    font-size: 0.78rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field-trip-image {
    position: relative;
}

.field-trip-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: cover;
    max-height: 520px;
}

.field-trip-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.contact-card {
    background: #f8fdf9;
    border: 1px solid #e8f4ed;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.25s ease;
}

.contact-card:hover {
    border-color: #00C853;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.12);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-link {
    color: #00a844;
    font-weight: 700;
    font-size: 0.88rem;
    transition: color 0.2s;
    word-break: break-all;
}

.contact-link:hover {
    color: #007a30;
}

.contact-social-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-card {
    background: #f8fdf9;
    border: 1px solid #e8f4ed;
    border-radius: 8px;
    padding: 32px;
}

.social-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.social-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-preview {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8f4ed;
}

.social-preview-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.social-preview-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.social-preview-text p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.map-placeholder {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-pin {
    font-size: 3rem;
}

.map-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
}

.map-content p {
    color: #aaa;
    font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #111111;
    color: #ffffff;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid #00C853;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-style: italic;
    color: #00C853;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00C853;
    display: inline-block;
}

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

.footer-links a {
    color: #aaa;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00C853;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact li {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}

.footer-contact li strong {
    color: #ffffff;
}

.footer-contact a {
    color: #00C853;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #00ff6a;
}

.footer-facebook-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1877F2;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.2s;
    margin-bottom: 24px;
    border: 2px solid #1877F2;
}

.footer-facebook-btn:hover {
    background: #1464d8;
    border-color: #1464d8;
    color: #ffffff;
}

.footer-hours {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.8;
}

.footer-hours strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
}

.footer-bottom a {
    color: #00C853;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #00ff6a;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    .about-grid,
    .meals-grid,
    .gala-grid,
    .field-trip-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-badge-card {
        position: static;
        margin-top: 16px;
    }

    .gala-img-secondary {
        position: static;
        width: 100%;
        margin-top: 16px;
        border: none;
        max-height: 300px;
    }

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

    .events-layout {
        grid-template-columns: 1fr;
    }

    .events-sidebar {
        position: static;
    }

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

    .contact-info-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 3px solid #00C853;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

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

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

    .contact-info-col {
        grid-template-columns: 1fr;
    }

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

    .trip-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .welcome-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .trip-stats {
        grid-template-columns: 1fr;
    }
}
