﻿/* ----------------------------------------------------
   GLOBAL THEME COLORS & FONTS
---------------------------------------------------- */
:root {
    --green-dark: #4E5F4D;
    --green-darker: #2F3E36;
    --cream: #E7DDBD;
    --cream-light: #F3ECD4;
    --text-dark: #222;
    --text-light: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: var(--text-dark);
}


/* ----------------------------------------------------
   NAVIGATION BAR
---------------------------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background-color: var(--green-dark);
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.nav-title {
    color: var(--cream);
    font-size: 22px;
    font-weight: 600;
    margin-left: 12px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
}

    .nav-links a {
        color: var(--cream);
        text-decoration: none;
        font-weight: 500;
        transition: 0.25s;
    }

        .nav-links a:hover {
            color: #fff;
        }


/* ----------------------------------------------------
   MAIN BUTTON STYLES (GLOBAL)
---------------------------------------------------- */
.hero-btn,
.book-button,
.link-btn,
button,
a.button {
    background-color: var(--cream) !important;
    color: var(--green-darker) !important;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.25s ease;
}

    .hero-btn:hover,
    .book-button:hover,
    .link-btn:hover,
    button:hover,
    a.button:hover {
        background-color: var(--green-darker) !important;
        color: var(--cream) !important;
    }


/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
    background-color: var(--green-dark);
    color: var(--cream);
    text-align: center;
    padding: 120px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    margin-top: 10px;
}


.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 36px; /* spacing between buttons */
}

.center-image {
    display: block;
    margin: 20px auto;
    max-width: 280px;
}

/* ----------------------------------------------------
   SECTIONS (STANDARD)
---------------------------------------------------- */
.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.light-section {
    background: #f3f3f3;
    padding: 50px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-text {
    font-size: 18px;
    text-align: center;
    color: #555;
}


/* ----------------------------------------------------
   INFORMATION PAGE STYLES
---------------------------------------------------- */
.info-section {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--green-darker);
}

.info-description {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}


    .flyer-img:hover {
        transform: scale(1.0);
    }


/* ----------------------------------------------------
   GRID LAYOUTS (Events, Updates, Membership)
---------------------------------------------------- */
.info-grid,
.membership-grid,
.update-grid,
.event-grid,
.gallery-grid {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
}


.update-grid,
.event-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


/* ----------------------------------------------------
   CARDS
---------------------------------------------------- */
.info-card,
.membership-card,
.update-card,
.event-card,
.gallery-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: 0.25s ease;
    text-align: center;
}

    .info-card:hover,
    .membership-card:hover,
    .update-card:hover,
    .event-card:hover,
    .gallery-item:hover {
        transform: translateY(-5px);
    }


/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer {
    background: var(--green-dark);
    color: var(--cream);
    text-align: center;
    padding: 35px 20px;
    margin-top: 60px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 12px;
}


/* ----------------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------------- */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 14px;
    }

    .book-button {
        margin-top: 12px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* 🔥 NEW — Make hero buttons mobile-friendly */
    .hero-buttons {
        flex-direction: column; /* stack vertically */
        gap: 15px; /* spacing between each button */
        margin-top: 20px; /* space above the button group */
    }

    .hero-btn {
        width: 100%; /* make buttons full width */
        max-width: 280px; /* but not too big */
        margin: 0 auto; /* center on screen */
        text-align: center;
    }

    /*.flyer-img {
        width: 90%;*/ /* reduce size on smaller screens */
        /*max-width: 330px;*/ /* optional limit */
    /*}*/
}

/* CENTER FLYER IMAGE CLEAN VERSION */
.flyer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.flyer-img {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}





