*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



main{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

section{
    margin-bottom: 0 !important;
}

footer{
    margin-top: 0 !important;
}




html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #f5e8d4;
    font-family: 'Nunito Sans', sans-serif;
}

/* Main content sticky nav-ku keezhey irukkanum */
main {
    position: relative;
    z-index: 1;
}

main * {
    position: relative;
    z-index: 1;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ─── Container ─────────────────────────────── */
.container-fluid {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 640px)  { .container-fluid { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container-fluid { padding-left: 2rem;   padding-right: 2rem;   max-width: 1280px; } }

/* ─── HEADER (always visible) ────────────────── */
#main-header {
    background-color: #ffffff;
    border-bottom: 2px solid #ffe1e0;
    position: relative;
    z-index: 40;
    height: auto !important;
    min-height: 90px;
}

/* ─── STICKY NAV ─────────────────────────────── */
#sticky-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 2px solid #ffe1e0;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    height: auto !important;
    min-height: 90px;
}
#sticky-nav.nav-visible {
    transform: translateY(0);
}

/* ─── NAV INNER LAYOUT ───────────────────────── */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 350px;
}

/* ─── THREE LOGOS — EQUAL WIDTH ─────────────── */
.nav-logo-left,
.nav-logo-center,
.nav-cta {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.nav-logo-left img,
.nav-logo-center img,
.nav-cta img {
    width: auto !important;
    height: auto !important;
    max-height: 90px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    background-color: transparent !important;
    mix-blend-mode: multiply !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ─── Mobile ─── */
@media (max-width: 640px) {
    .nav-inner {
        gap: 4px;
        padding: 5px 4px;
    }

    #main-header,
    #sticky-nav {
        min-height: 65px;
    }

    .nav-logo-left img,
    .nav-logo-center img,
    .nav-cta img {
        max-height: 60px !important;
    }
}

/* ─── ENROLL BUTTON ──────────────────────────── */
.btn-enroll {
    display: inline-block;
    background-color: #e54623;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0px 4px 0px 0px #b83a1e;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}
.btn-enroll:hover  { background-color: #f27a60; }
.btn-enroll:active { transform: translateY(2px); box-shadow: 0px 2px 0px 0px #b83a1e; }

@media (max-width: 639px) {
    .btn-enroll { display: none; }
}

/* ─── CARD / STICKER ─────────────────────────── */
.sticker-card {
    border: 2px solid #D1D5DB;
    box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}
.sticker-card:hover {
    transform: translate(-2px, -2px);
}

.btn-primary {
    box-shadow: 0px 4px 0px 0px #b83a1e;
    transition: all 0.1s ease;
}
.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px 0px #b83a1e;
}

.club-card { transition: all 0.3s ease; }
.club-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.1); }

/* ─── HERO ───────────────────────────────────── */
.hero-section {
    background-size: cover;
    background-position: center;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
    background-color: #e54623;
    border-top: 4px solid #ff0000;
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-animation {
    opacity: 0;
    animation: fadeIn 1s forwards;
}