/* Reset default styles */
body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: Arial, sans-serif !important;
    color: #ffffff !important;
    position: relative !important;
    overflow-x: hidden !important;
}

/* ===== ULTRA-PREMIUM COLOR PALETTE ===== */
:root {
    --clay-red: #9a4d44 !important;
    --deep-teal: #0a4842 !important;
    --sand-gold: #d4a55e !important;
    --lake-blue: #5d8aa8 !important;
    --ivory: #f9f5f0 !important;
    --shadow-25: rgba(0, 0, 0, 0.25) !important;
    --shadow-50: rgba(0, 0, 0, 0.5) !important;
    --gold-gradient: linear-gradient(135deg, #d4a55e 0%, #e8c887 100%) !important;
    --red-gradient: linear-gradient(135deg, #9a4d44 0%, #b56d65 100%) !important;
    --ease-bounce: cubic-bezier(0.48, -0.6, 0.32, 1.6) !important;
    --ease-smooth: cubic-bezier(0.15, 0.1, 0.25, 1) !important;
}


* ===== KINETIC HEADER ===== */
#kinetic-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
    z-index: 1000;
    background: #bb7b1c;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px var(--shadow-25);
    transition: all 0.5s var(--ease-smooth);
    box-sizing: border-box;
    flex-wrap: wrap;
    margin-bottom: 20px;
    height: 120px;
    min-height: 120px;
}

.header-content {
    display: flex;
    align-items: center;
    width: 98%;
    height: 68%;
    background: #fff;
    padding: 0.5rem;
    border-radius: 6px;
}

.logo-wrapper {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    background-color: #fff;
    padding: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    height: 100%;
    max-height: 100px;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 2.5vw, 1.5rem);
    color: #17183B;
    margin-left: 0.1rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px var(--shadow-50);
    white-space: nowrap;
    align-self: center;
    display: flex;
    align-items: justify;
}


.logo-bg {
    display: none !important;
}


.logo {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-icon {
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
}

.logo a {
    display: none;
}

.logo .thin {
    display: none;
}


/* ===== KINETIC NAVIGATION ===== */
.kinetic-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.kinetic-nav a {
    position: relative;
    margin: 0 clamp(0.5rem, 1.2vw, 1.2rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 0.95vw, 0.95rem);
    letter-spacing: clamp(0.5px, 1.2vw, 1.2px);
    padding: 0.3rem 0.3rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.kinetic-nav a::before,
.kinetic-nav a::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
    transition: transform 0.45s var(--ease-bounce);
    backface-visibility: hidden;
    pointer-events: none;
}

/* Override for the ABOUTUS link */
.kinetic-nav a[data-text="ABOUTUS"]::before,
.kinetic-nav a[data-text="ABOUTUS"]::after {
    content: "ABOUT US";
}

.kinetic-nav a::before {
    color: #17183B;
    transform: translateY(0);
    -webkit-font-smoothing: antialiased;
}

.kinetic-nav a::after {
    color: #4968a0;
    transform: translateY(100%) rotateX(-90deg);
    transform-origin: 50% 0;
}

.kinetic-nav a:hover::before {
    transform: translateY(-100%) rotateX(90deg);
    transform-origin: 50% 100%;
}

.kinetic-nav a:hover::after {
    transform: translateY(0) rotateX(0);
}

.nav-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0rem;
    background: linear-gradient(135deg, #bb7b1c, #f09206);
    color: transparent;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 128, 0, 0.2);
    min-width: 160px;
    height: 30px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #bb7b1c, #f09206);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 128, 0, 0.3);
}

/* Override to make only "DONATE" bold */
.nav-cta[data-text="DONATE"]::before,
.nav-cta[data-text="DONATE"]::after {
    font-weight: bold;
    text-shadow: 2px 2px 6px var(--shadow-50);
}




/* ===== Mobile NAVIGATION STYLES ===== */
.mobile-nav-toggle {
    display: none; /* Hidden by default, shown in mobile view */
    background: none; /* Remove gradient for simplicity */
    color: #000;
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    line-height: 1; /* Ensure proper alignment */
}

/* Style the hamburger icon using ::before and ::after */
.mobile-nav-toggle::before {
    content: '\2261'; /* Unicode for hamburger icon (≡) */
    font-size: 1.8rem;
    color: #000;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 50px; /* Below the header */
    left: 0;
    right: 0;
    flex-direction: column;
    background: #d4a55e;
    padding: 1rem;
    text-align: left;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
}


.hidden {
    display: none;
}

.register-btn {
    display: none; /* Hidden by default, shown in mobile view */
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 20px;
    text-align: right;
    white-space: nowrap;
    position: right;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}


@media (max-width: 768px) and (max-width: 1024px) {
    .kinetic-nav {
        display: none; /* Hide desktop navigation */
    }
    
    .logo-name {
        display: none; /* Hide the name on mobile to avoid clutter */
    }

    .mobile-nav-toggle {
        display: block !important;
        position: absolute;
        left: 10%;
        transform: translateX(-90%);
        z-index: 1000;
    }    

    .mobile-menu {
        display: none; /* Shown when toggle is clicked via JavaScript */
    }
    
    

   .register-btn {
        display: block !important;
        margin-left: auto; /* Force right alignment */
        order: 2; /* Ensure it stays on the right in flexbox */
    }
    
     

   .logo-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-icon {
        max-height: 60px;
        width: auto;
    }
}

/* Header Spacer */
.header-spacer {
    height: 170px; /* Match your header height */
    width: 100%;
}

/* Responsive Adjustments for Phones */
@media (max-width: 768px) {
  .header-spacer {
    height: 100px; /* Reduced height to match adjusted mobile header */
  }
}



/* Dining section */

/* Volunteers Page Styles */
.volunteers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Hero Section */
.volunteers-hero {
    background: linear-gradient(rgba(212, 165, 94, 0.9), rgba(184, 134, 11, 0.9)), url('path/to/volunteer-hero-bg.jpg'); /* Replace with inspiring music/youth image */
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.volunteers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for contrast */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.volunteers-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.volunteers-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    display: inline-block;
    background: #fff;
    color: #d4a55e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.volunteers-intro {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    margin: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.volunteers-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4a55e;
    margin-bottom: 1rem;
}

.volunteers-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4a55e;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

/* Opportunities Section */
.volunteers-opportunities {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
}

.volunteers-opportunities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4a55e;
    margin-bottom: 3rem;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.opportunity-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d4a55e;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.opportunity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: #666;
    margin-bottom: 1rem;
}

.role-details {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.role-details li {
    color: #999;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.role-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a55e;
    font-weight: bold;
}

.apply-btn {
    display: inline-block;
    background: #d4a55e;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: #b8860b;
}

/* Testimonials Section */
.volunteers-testimonials {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem;
    border-radius: 12px;
}

.volunteers-testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4a55e;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4a55e;
}

.testimonial-author span {
    color: #d4a55e;
    font-weight: 500;
}

/* Apply Section */
.volunteers-apply {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d4a55e, #b8860b);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    margin: 2rem;
}

.volunteers-apply h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.apply-steps {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #fff;
    color: #d4a55e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #fff;
}

.step p {
    color: #f5e8c7;
}

.apply-form {
    max-width: 600px;
    margin: 0 auto;
}

.apply-form h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: #fff;
}

.apply-form input,
.apply-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.apply-form button {
    background: #fff;
    color: #d4a55e;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply-form button:hover {
    background: #d4a55e;
    color: #fff;
}

/* FAQ Section */
.volunteers-faq {
    padding: 4rem 2rem;
    background: #fafafa;
    border-radius: 12px;
    margin: 2rem;
}

.volunteers-faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4a55e;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #666;
    display: none; /* Initially hidden; use JS to toggle */
}

.faq-item.active p {
    display: block;
}

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

.opportunity-card, .step, .testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .volunteers-hero h1 {
        font-size: 2.5rem;
    }

    .volunteers-hero p {
        font-size: 1.1rem;
    }

    .intro-stats {
        gap: 1.5rem;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .apply-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .volunteers-faq {
        padding: 2rem 1rem;
    }
}






/* Footer */
.home-footer {
    padding: 1rem 1rem;
    background: #2c3e50;
    color: #f7f5f5;
    text-align: center;
    position: center;
    overflow: hidden;
    
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
    margin-top: 0.5px;
    margin-bottom: 0.5px;
}

.footer-column {
    text-align: left;
}

.logo-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d4a55e;
    padding: 0.5rem 0;
}

.logo-column p {
    font-size: 0.95rem;
    color: #f7f5f5;
    margin-bottom: 1rem;
    max-width: 200px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-top: 1rem;
    border-radius: 5px;
}

.contact-column h4,
.links-column h4,
.social-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d4a55e;
    text-transform: uppercase;
}

.contact-column p {
    font-size: 0.95rem;
    color: #f7f5f5;
    margin-bottom: 0.5rem;
}

.contact-column a {
    color: #d4a55e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-column a:hover {
    color: #f7f5f5;
}

.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column li {
    margin-bottom: 0.5rem;
}

.links-column a {
    color: #f7f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: #d4a55e;
}

.social-column .footer-social {
    margin-top: 1rem;
}

.social-column a {
    color: #d4a55e;
    font-size: 1.6rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-column a:hover {
    color: #f7f5f5;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    border-top: 1px solid #ffffff;
    margin-top: 2rem;
    color: #f7f5f5;
    font-size: 0.9rem;
}


/* Animations */
/* Mobile View - Footer */
@media (max-width: 768px) {
    .home-footer {
        padding: 1rem 1rem;
        background: #2c3e50;
        color: #f7f5f5;
        text-align: center;
        position: relative; /* Changed from 'center' which is invalid */
        overflow: hidden;
    }

    .footer-content {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 2rem;
        padding: 1rem 0;
        margin-top: 0.5px;
        margin-bottom: 0.5px;
        justify-items: center; /* Center all grid items */
    }

    .footer-column {
        text-align: center; /* Center text */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center content horizontally */
    }

    .logo-column h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem; /* Changed from 1.2rem to 1.8rem for mobile */
        margin-bottom: 1rem;
        color: #d4a55e;
        padding: 0.5rem 0;
    }

    .logo-column p {
        font-size: 0.95rem;
        color: #f7f5f5;
        margin-bottom: 1rem;
        max-width: 200px;
        text-align: center; /* Center paragraph text */
    }

    .footer-logo {
        max-width: 150px;
        height: auto;
        margin-top: 1rem;
        border-radius: 5px;
    }

    .contact-column h4,
    .links-column h4,
    .social-column h4 {
        font-size: 1.8rem; /* Also increased for consistency */
        margin-bottom: 1rem;
        color: #d4a55e;
        text-transform: uppercase;
        text-align: center; /* Center headings */
    }

    .contact-column p {
        font-size: 0.95rem;
        color: #f7f5f5;
        margin-bottom: 0.5rem;
        text-align: center; /* Center paragraph text */
    }

    .contact-column a {
        color: #d4a55e;
        text-decoration: none;
        transition: color 0.3s ease;
        text-align: center; /* Center link text */
    }

    .contact-column a:hover {
        color: #f7f5f5;
    }

    .links-column ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center list items */
    }

    .links-column li {
        margin-bottom: 0.5rem;
        text-align: center; /* Center list item text */
    }

    .links-column a {
        color: #f7f5f5;
        text-decoration: none;
        transition: color 0.3s ease;
        text-align: center; /* Center link text */
    }

    .links-column a:hover {
        color: #d4a55e;
    }

    .social-column .footer-social {
        margin-top: 1rem;
        display: flex;
        justify-content: center; /* Center social icons */
    }

    .social-column a {
        color: #d4a55e;
        font-size: 1.6rem;
        margin: 0 1rem;
        transition: color 0.3s ease;
    }

    .social-column a:hover {
        color: #f7f5f5;
    }

    .footer-bottom {
        grid-column: 1 / -1;
        padding-top: 2rem;
        border-top: 1px solid #ffffff;
        margin-top: 2rem;
        color: #f7f5f5;
        font-size: 0.9rem;
        text-align: center; /* Center bottom text */
    }
}