:root {
    --mustard: #d4a017;
    --pink: #f48fb1;
    --green: #2e7d32;
    --blue: #1976d2;
    --white: #ffffff;
    --dark: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--dark);
}

/* MAIN CONTENT PUSHES FOOTER DOWN */
main {
    flex: 1;
}

/* HEADER */
/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative; /* default */
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease; /* smooth animation */
}

/* Logo */
header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: bold;
    color:var(--mustard);
    transition: all 0.4s ease;
}

/* Nav links */
header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.4s ease;
}

header .btn-nav {
    padding: 10px 18px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

/* Sticky header state */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 12px 8%; /* smaller padding */
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: #ffffff;
}

/* Shrink logo and nav in sticky state */
header.sticky .logo {
    font-size: 22px;
}

header.sticky nav a {
    margin-left: 15px;
    font-size: 14px;
}

header.sticky .btn-nav {
    padding: 6px 15px;
    font-size: 14px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: bold;
    color: var(--mustard);
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.btn-nav {
    background:#ad1457;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
}

.active {
    color: var(--mustard);
    font-weight: bold;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, var(--mustard), var(--pink));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
}

.hero h2 {
    margin-top: 10px;
    font-weight: 400;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: var(--green);
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--blue);
}


.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Facebook */
.social-icons a:nth-child(1) i {
    color: #1877f2;
}

/* X (Twitter) */
.social-icons a:nth-child(2) i {
    color: #000000;
}

/* Instagram */
.social-icons a:nth-child(3) i {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* YouTube */
.social-icons a:nth-child(4) i {
    color: #FF0000;
}

/* TikTok */
.social-icons a:nth-child(5) i {
    color: #000000; /* main TikTok cyan */
    text-shadow: 1px 0 #EE1D52, -1px 0 #EE1D52; /* mimic TikTok's logo gradient effect */
}

/* Hover effect */
.social-icons a:hover i {
    opacity: 0.7;
    transform: scale(1.1);
    transition: 0.3s ease;
}

/* ===== ABOUT PREVIEW ===== */
.section {
    padding: 80px 8%;
    text-align: center;

    /* White elegant card */
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);

    margin: 40px auto;
    max-width: 1000px;

    position: relative;
    overflow: hidden;
}

/* Keep ALL content above overlay */
.section > * {
    position: relative;
    z-index: 2;
}

/* Headings */
.section h2 {
    font-size: 36px;
    color: #111; /* Black text */
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

/* Paragraphs */
.section p {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin: 15px auto;
    max-width: 850px;
    font-family: 'Poppins', sans-serif;
}

/* Strong highlight */
.section strong {
    color: #e91e63;
}

/* ============================= */
/* ANIMATED PINK GLOW OVERLAY */
/* ============================= */

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 160%;
    height: 100%;
    border-radius: 25px;
    pointer-events: none;
    z-index: 1;

    background:
        /* Center subtle glow */
        radial-gradient(circle at center, rgba(255,192,203,0.08) 0%, transparent 60%),

        /* Stronger pink margins */
        radial-gradient(circle at top left, rgba(255,105,180,0.30) 15%, transparent 60%),
        radial-gradient(circle at top right, rgba(255,105,180,0.30) 15%, transparent 60%),
        radial-gradient(circle at bottom left, rgba(255,105,180,0.30) 15%, transparent 60%),
        radial-gradient(circle at bottom right, rgba(255,105,180,0.30) 15%, transparent 60%);

    animation:
        pinkBreath 6s ease-in-out infinite,
        shimmerMove 18s linear infinite;
}

/* ============================= */
/* Breathing Glow Effect */
/* ============================= */
@keyframes pinkBreath {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

/* ============================= */
/* Horizontal Shimmer */
/* ============================= */
@keyframes shimmerMove {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(20%);
    }
}

/* ============================= */
/* Curved Top & Bottom Fade */
/* ============================= */

.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 25px;
    z-index: 1;

    background:
        radial-gradient(ellipse at top, rgba(255,255,255,0.6), transparent 70%),
        radial-gradient(ellipse at bottom, rgba(255,255,255,0.6), transparent 70%);
}

/* ============================= */
/* IMPORTANT: IMAGES STAY CLEAN */
/* ============================= */

.section img {
    position: relative;
    z-index: 3;  /* Above glow */
}

/* Optional subtle hover polish */
.section img:hover {
    transform: scale(1.02);
    transition: 0.4s ease;
}

/* Light background utility */
.light-bg {
    background: #f9f9f9;
}
/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-weight: 500;
}

/* CONTACT */
.contact-section {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #ad1457;   /* Changed from #111 to pink */
    color: white;
}


/* ===== CAROUSEL ===== */
.carousel {
    position: relative;
    height: 80vh;
    overflow: hidden;
    border-radius: 25px;           /* Rounded corners for classic look */
    margin: 40px 8%;               /* Space around carousel */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* Soft shadow */
    background: #000;              /* Fallback background */
}

/* Add subtle curved fade effect */
.carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 25px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 10%, transparent 90%, rgba(0,0,0,0.25) 100%);
    z-index: 2;
}

.slides {
    position: relative;
    height: 100%;
    border-radius: 25px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 25px;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.5s ease;
}

.slide img:hover {
    transform: scale(1.02);        /* Slight zoom for elegance */
}

.caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    background: rgba(0,0,0,0.55);  /* Dark overlay for text */
    padding: 25px 30px;
    border-radius: 15px;
    max-width: 500px;
    font-family: 'Playfair Display', serif;
    z-index: 3;
}

.caption h1 {
    font-size: 36px;
    color: #d4a017;                /* Mustard accent for elegance */
    margin-bottom: 10px;
}

.caption p {
    font-size: 18px;
}

/* ===== GALLERY ===== */
/* ===== GALLERY ===== */
.gallery-section {
    padding: 80px 8%;
    text-align: center;
    background: #d4a017; /* Mustard yellow background */
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
}

.gallery-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff; /* White card */
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery img {
    width: 100%;
    height: 220px; /* Uniform height */
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.gallery-item p {
    margin-top: 12px;
    font-size: 15px;
    color: #000000; /* Black text */
    text-align: center;
    max-width: 250px;
    line-height: 1.6;
}
/* ===== VIDEO SECTION ===== */
.video-section {
    text-align: center;
    margin: 40px 0;
}

/* Heading with lines on the same row */
.heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.heading-row h2 {
    margin: 0 15px;
    font-size: 1.8em;
    color: #333;
}

/* Decorative lines */
.heading-row .line {
    height: 2px;
    background: #d32f2f; /* red accent */
    border-radius: 2px;
    width: 0; /* start with 0 width for animation */
}

/* Left and right line animations */
.left-line {
    animation: grow-left 1s forwards;
}

.right-line {
    animation: grow-right 1s forwards;
}

/* Keyframes for growing lines */
@keyframes grow-left {
    from { width: 0; }
    to { width: 100px; } /* adjust final width */
}

@keyframes grow-right {
    from { width: 0; }
    to { width: 100px; } /* adjust final width */
}

/* Video wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.6);
}

.play-icon {
    width: 80px;
    height: 80px;
}

.about-section h1 {
    font-size: 36px;
    color: #d4a017; /* Mustard yellow accent */
    text-align: center;
    margin-bottom: 20px;
}

.about-section h2 {
    font-size: 24px;
    color: #e91e63; /* Pink accent */
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-section p, .about-section ul {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.about-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-section .cta-text {
    text-align: center;
    font-size: 18px;
    color: #005b96; /* White-blue accent */
    font-weight: bold;
    margin-top: 40px;
}


/* About Hero Image */
.about-hero {
    text-align: center;
    margin-bottom: 30px;
}

.about-hero img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image-caption {
    font-size: 14px;
    color: #e91e63; /* Pink accent */
    margin-top: 10px;
    font-weight: 500;
}

.vision-section h1 {
    font-size: 32px;
    color: #d4a017; /* Mustard yellow */
    text-align: center;
    margin-bottom: 20px;
}

.vision-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: center;
}


.youth-section h1 {
    font-size: 32px;
    color: #d4a017; /* Mustard yellow */
    text-align: center;
    margin-bottom: 20px;
}

.youth-section p, .youth-section ul {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.youth-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.youth-image {
    text-align: center;
    margin: 30px 0;
}

.youth-image img {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.youth-image p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.youth-section .cta-text {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #005b96; /* White-blue accent */
    margin-top: 40px;
}

/* Section heading */
.contact-section h1 {
    font-size: 32px;
    color: #d4a017; /* Mustard yellow */
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraph text */
.contact-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}

/* WhatsApp button with pink & mustard accents */
.whatsapp-btn {
    text-align: center;
    margin: 30px 0;
}

.whatsapp-btn .btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #d4a017, #e91e63); /* Mustard to pink gradient */
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Call-to-action text */
.contact-section .cta-text {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #e91e63; /* Pink accent */
    margin-top: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 5%;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #e91e63; /* Pink accent */
}

.vision-section .cta-text {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #005b96; /* White-blue accent */
    margin-top: 40px;
}

/* ================= MOBILE MENU ================= */

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Styling */
@media (max-width: 968px) {

    header {
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        flex-direction: column;
        margin-top: 15px;
        background: white;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    nav a {
        margin: 10px 0;
        text-align: center;
    }

    nav.active {
        display: flex;
    }
}


