/* =============================================
   CORE HOSPITALITY — FARMHOUSE VENUE
   Primary: Forest Green & Gold
============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #1a3a2a;
    --green-mid: #2d6a4f;
    --green-light: #40916c;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --cream: #fdf6ec;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #777;
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-hover: 0 16px 48px rgba(0,0,0,0.2);
    --radius: 16px;
    --transition: all 0.35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--green-dark);
    box-shadow: 0 4px 18px rgba(212,160,23,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212,160,23,0.55);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* ---- SECTION BADGE ---- */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: var(--white);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

section h2 {
    font-size: 2.6rem;
    color: var(--green-dark);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* =====================
   HEADER
===================== */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

#main-header.scrolled {
    background: var(--green-dark);
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.logo h1, .logo h3 {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.1;
    margin: 0;
}

.logo .tagline, .logo p {
    color: var(--gold-light);
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--gold-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    display: block;
    border-radius: 3px;
    transition: var(--transition);
}

/* =====================
   HERO
===================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,30,20,0.55) 0%,
        rgba(10,30,20,0.35) 50%,
        rgba(10,30,20,0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 2rem;
}

.hero-sub {
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.hero-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.88);
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    margin: 6px auto 0;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   ABOUT
===================== */
#about {
    padding: 6rem 0;
    background: var(--white);
    text-align: left;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-img-small {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.about-text {
    padding-left: 1rem;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.2rem;
    background: var(--cream);
    border-radius: 12px;
    border-bottom: 3px solid var(--gold);
}

.stat h3 {
    font-size: 1.6rem;
    color: var(--green-mid);
    margin-bottom: 0.3rem;
}

.stat p {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================
   GALLERY
===================== */
#gallery {
    padding: 6rem 0;
    background: var(--cream);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item.large img {
    height: 320px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,20,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* =====================
   AMENITIES
===================== */
#amenities {
    padding: 6rem 0;
    background: var(--green-dark);
    text-align: center;
}

#amenities h2 {
    color: var(--white);
}

#amenities .section-sub {
    color: rgba(255,255,255,0.6);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.amenity-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    text-align: center;
}

.amenity-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.amenity-card h3 {
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.amenity-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* =====================
   EVENTS
===================== */
#events {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.event-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    text-align: left;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.event-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.event-info {
    padding: 1.8rem;
}

.event-info h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 0.8rem;
}

.event-info p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* =====================
   CONTACT
===================== */
#contact {
    padding: 6rem 0;
    background: var(--cream);
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    text-align: left;
    align-items: start;
    margin-top: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.2rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    align-items: flex-start;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--green-mid);
    margin-bottom: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--green-mid);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--gold);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    margin-top: 0.6rem;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #1ebe58;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

/* =====================
   MAP
===================== */
#map-section {
    width: 100%;
    line-height: 0;
}

#map-section iframe {
    display: block;
    filter: grayscale(20%);
}

/* =====================
   FOOTER
===================== */
footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo h3 {
    font-size: 1.2rem;
    color: var(--white);
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.6rem;
}

footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--gold-light);
}

footer p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* =====================
   FLOATING WHATSAPP
===================== */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: #25d366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}

.float-whatsapp:hover {
    background: #1ebe58;
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 8px 28px rgba(37,211,102,0.65);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,0.8); }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-small {
        display: none;
    }

    .about-img-main {
        height: 360px;
    }

    .about-text {
        padding-left: 0;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--green-dark);
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    #nav-menu.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    #about, #gallery, #amenities, #events, #contact {
        padding: 4rem 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
