
/* #E80557 */
:root {
    --brand-yellow: #E80557;
    --brand-blue: #E80557;
    --light-blue: #20AEE3;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-gradient: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
    --bg-gradient-op: linear-gradient(135deg, #33333380, #E8055780);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

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

html,
body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* --- NEW: STYLING FOR THE "DONATE" BUTTON IN NAVBAR --- */

/* Style for the list item containing the button */
.nav-link.nav-button {
    margin-left: 1rem;
    /* Add some space from the other links */
}

/* Style for the link itself */
.nav-link.nav-button a {
    background-color: var(--brand-yellow);
    color: var(--text-light) !important;
    /* Force the text color */
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Remove the underline effect from the button */
.nav-link.nav-button a::after {
    display: none;
}

/* Hover effect */
.nav-link.nav-button a:hover {
    background-color: var(--text-light);
    /* White background on hover */
    color: var(--brand-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- MOBILE MENU ADJUSTMENTS FOR THE DONATE BUTTON --- */
@media (max-width: 960px) {
    .nav-link.nav-button {
        margin-left: 0;
        /* Reset margin for stacked layout */
        margin-top: 1rem;
        /* Add space above in mobile menu */
    }

    .nav-link.nav-button a {
        display: inline-block;
        /* Ensure padding is applied correctly */
        background-color: var(--brand-yellow);
    }
}

/* --- HASSET SOCIAL LINKS SECTION --- */
#hasset-social {
    background: #005B8F;
    color: var(--text-light);
    padding: 80px 20px;
}

/* --- NEW: DONATION SECTION STYLES --- */

#donate {
    background-color: #f7f9fc;
}

#donate h2 {
    color: var(--brand-blue);
}

#donate .container>p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

.donation-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.donation-amount {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    background-color: transparent;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.donation-amount:hover {
    background-color: var(--brand-blue);
    color: var(--text-light);
    transform: translateY(-3px);
}

.any-amount {
    font-style: italic;
    color: #666;
    margin-bottom: 2.5rem !important;
}

.payment-instructions {
    background-color: #e6f6ff;
    /* A very light blue */
    border: 2px dashed var(--light-blue);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.payment-instructions h3 {
    font-family: var(--font-primary);
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.payment-instructions .payment-email {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-blue);
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin: 1rem 0;
}

/* --- END: DONATION SECTION STYLES --- */

#hasset-social h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-light);
}

#hasset-social p {
    max-width: 700px;
    margin: 0 auto 10px auto;
    font-size: 18px;
    color: #f1f1f1;
}

#hasset-social .email-phone{
    display: inline-block;
    padding: 5px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    margin-left: 2rem;
}
.email-phone a{
    padding-left: 2px;
    color: var(--light-blue);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 22px;
}

/* Instagram Style */
.social-btn.instagram {
    background: #E1306C;
    color: #fff;
}

.social-btn.instagram:hover {
    background: #b82254;
    transform: translateY(-3px);
}

/* TikTok Style */
.social-btn.tiktok {
    background: #000000;
    color: #fff;
}

.social-btn.tiktok:hover {
    background: #111111;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 480px) {
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- NEW: EVENT FLYER SECTION STYLES --- */

#event-flyer {
    background-color: #f0f4f7;
    /* A light, clean background to make the section stand out */
}

#event-flyer h2 {
    color: var(--brand-blue);
}

/* Subheading text below the main title */
#event-flyer .container>p {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    /* Center it and add space below */
    font-size: 1.1rem;
    color: #555;
}

.flyer-wrapper {
    max-width: 700px;
    /* Controls the max size of the flyer */
    margin: 0 auto;
    /* Centers the flyer container */
}

.flyer-image {
    width: 100%;
    /* Makes the image responsive */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    display: block;
}

.cta-button-container {
    margin-top: 2.5rem;
    /* Adds space between the flyer and the button */
}

/* --- END: EVENT FLYER SECTION STYLES --- */

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 2rem !important;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.navbar .logo {
    height: 50px;
}

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

.nav-link {
    margin: 0 0.5rem !important;
    padding: .5rem .5rem !important;
}

.nav-link a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link a:hover {
    color: var(--brand-yellow);
}

.nav-link a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--brand-yellow);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

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

/* Mobile Menu Styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 2rem;
}

.hamburger-menu div {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

@media (max-width: 960px) {
    .navbar {
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 91, 143, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

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

    .nav-link {
        margin: 1rem 0;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Banner as Hero Section */
.banner-hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('../images/overlay-image.png') no-repeat center center/cover;
    /* Original background */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 91, 143, 0.5);
    z-index: 1;
}

.banner-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 20px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- NEW FLYER SECTION --- */
.flyer-container {
    background: rgba(0,0,0,0.5);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    width: 95%;
}

h1 {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 900;
    color: var(--text-light);
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* --- NEW CALENDAR COUNTDOWN STYLES --- */
.event-date-display {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.countdown-calendar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
    font-family: var(--font-primary);
}

.countdown-item {
    color: white;
    width: 100px;
    background-color: rgba(120, 120, 120, 0.1);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    overflow: hidden;
}

.countdown-item .top-bar {
    padding: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.countdown-item span {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    padding: 10px 0;
    line-height: 1;
}

/* --- END CALENDAR STYLES --- */

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--brand-yellow);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: var(--text-light);
    color: var(--brand-blue);
}

/* Responsive Styles for Hero */
@media (max-width: 768px) {
    h1 {
        font-size: 44px;
    }

    .subtitle {
        font-size: 20px;
    }

    .countdown-item {
        width: 80px;
    }

    .countdown-item span {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .flyer-container {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .countdown-calendar {
        gap: 10px;
        flex-wrap: wrap;
    }

    .countdown-item {
        width: calc(50% - 5px);
    }

    .countdown-item span {
        font-size: 2rem;
    }
}

/* Generic Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 80px 0;
}

#about h2,
#event-location h2,
#meet-the-faces h2,
#merchandise h2,
#contact h2 {
    font-family: var(--font-primary);
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-button-container {
    margin-top: 2.5rem;
}

/* For new CTA buttons */

/* About Section */
#about {
    background-color: var(--text-light);
}

#about h2 {
    color: var(--brand-blue);
}

#about p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: #f7f9fc;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 36px;
    color: var(--brand-yellow);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--brand-blue);
}

/* Event Location Section */
#event-location {
    background: #f7f9fc;
}

#event-location h2 {
    color: var(--brand-blue);
}

.location-flex-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    text-align: left;
}

.location-details,
.location-map {
    flex: 1 1 400px;
}

.location-details h3 {
    font-family: var(--font-primary);
    color: var(--brand-blue);
    font-size: 26px;
    margin-bottom: 10px;
}

.location-details p {
    font-size: 18px;
    margin-bottom: 25px;
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Meet the Faces Section */
#meet-the-faces {
    background-color: #f0f4f7;
}

#meet-the-faces h2 {
    color: var(--brand-blue);
}

.faces-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.face-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    max-width: 700px;
    transition: transform 0.3s ease;
}

.face-card:hover {
    transform: translateY(-5px);
}

.face-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--brand-yellow);
    margin-bottom: 15px;
}

.face-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--brand-blue);
    margin-bottom: 5px;
}

.face-card .role {
    font-style: italic;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.face-card p {
    font-size: 16px;
    color: #555555;
    text-align: left;
}

.full-bio {
    display: none;
}

.read-more {
    color: var(--brand-blue);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    text-align: left;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faces-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Merchandise Section */
#merchandise {
    background: var(--bg-gradient);
    color: var(--text-light);
}

#merchandise h2 {
    color: var(--brand-yellow);
}

.merch-flex {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.merch-img-col {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tshirt-img {
    max-width: 450px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

.merch-pay-col,
.merch-pickup-col {
    flex: 1 1 320px;
    background: rgba(0, 91, 143, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.merch-pay-col h3,
.merch-pickup-col h3 {
    color: var(--brand-yellow);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.merch-pay-col p,
.merch-pickup-col p {
    margin-bottom: 20px;
    font-size: 16px;
}

.pickup-details {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.pickup-details .detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pickup-details .detail-item i {
    color: var(--brand-yellow);
    font-size: 20px;
    width: 20px;
    text-align: center;
}

.pickup-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pickup-details a:hover {
    color: var(--brand-yellow);
    text-decoration: underline;
}

@media (max-width: 1250px) {

    .merch-pay-col,
    .merch-pickup-col,
    .merch-img-col {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Contact Section */
#contact {
    background-color: var(--brand-blue);
    color: var(--text-light);
}

#contact h2 {
    color: var(--brand-yellow);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info-col {
    text-align: left;
    flex: 1 1 300px;
}

.contact-info-col p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-info-col a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-col a:hover {
    text-decoration: underline;
}

.contact-form-col {
    flex: 1 1 400px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.contact-form-col form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-col input,
.contact-form-col textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 16px;
}

.contact-form-col input::placeholder,
.contact-form-col textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-col button {
    width: 100%;
    background-color: var(--brand-yellow);
    color: var(--brand-blue);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-col button:hover {
    background-color: var(--light-blue);
    color: var(--text-light);
}

#form-status {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
}

.success {
    color: var(--brand-yellow);
}

.error {
    color: #ff6347;
}

/* Footer styles */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-light);
    font-size: 28px;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--brand-yellow);
    transform: scale(1.1);
}

.footer p {
    font-size: 14px;
    color: #ccc;
}
