/*=========================================================
    NIC KERALA ONAM CELEBRATION 2026
    style.css
    PART 1
=========================================================*/

:root {
    --primary: #145a32;
    --secondary: #ffd54f;
    --accent: #f57c00;
    --cream: #fff9ee;
    --white: #ffffff;
    --dark: #1e293b;
    --maroon: #7b1e3b;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Poppins",
        "Noto Sans Malayalam",
        sans-serif;

    background: linear-gradient(180deg, #fff7e2, #fffdf9);

    color: var(--dark);

    overflow-x: hidden;
}

img {
    max-width: 100%;

    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    position: relative;

    width: 100%;
}

/*=========================================================
    LOADER
=========================================================*/

#loader {
    position: fixed;

    inset: 0;

    background: linear-gradient(135deg, #fff9ec, #ffe6a8);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    z-index: 999999;
}

.loader-logo {
    font-size: 90px;

    animation: loaderSpin 3s linear infinite;
}

#loader h1 {
    margin-top: 20px;

    font-family: "Cinzel", serif;

    color: var(--primary);
}

#loader p {
    color: #666;

    margin-top: 10px;
}

@keyframes loaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*=========================================================
    HEADER
=========================================================*/

header {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    padding: 20px 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    backdrop-filter: blur(20px);

    background: rgba(255, 255, 255, 0.35);

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    z-index: 1000;
}

.logo {
    display: flex;

    align-items: center;

    gap: 15px;
}

.logo img {
    width: 58px;
}

.logo h3 {
    font-family: "Cinzel", serif;

    color: var(--primary);
}

.logo small {
    color: #666;
}

nav ul {
    display: flex;

    gap: 30px;
}

nav a {
    color: #333;

    font-weight: 500;

    transition: 0.35s;

    position: relative;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--secondary);

    transition: 0.35s;
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

#menuButton {

    display: none;

    background: none;

    border: none;

    cursor: pointer;

}

/*=========================================================
    HERO
=========================================================*/

.hero {
    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    position: relative;

    padding: 120px 8%;
}

.sky {
    position: absolute;

    inset: 0;

    background: linear-gradient(to bottom, #ffe082, #fff9e4, #ffffff);
}

.sun {
    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    right: 8%;

    top: 90px;

    background: #ffd54f;

    box-shadow:
        0 0 100px #ffd54f,
        0 0 180px rgba(255, 213, 79, 0.8);
}

.cloud {
    position: absolute;

    background: white;

    border-radius: 100px;

    opacity: 0.8;
}

.cloud::before,
.cloud::after {
    content: "";

    position: absolute;

    background: white;

    border-radius: 50%;
}

.cloud1 {
    width: 180px;

    height: 60px;

    left: -250px;

    top: 130px;
}

.cloud2 {
    width: 220px;

    height: 70px;

    right: -250px;

    top: 250px;
}

.cloud3 {
    width: 140px;

    height: 50px;

    left: 35%;

    top: 80px;
}

.heroContent {
    position: relative;

    z-index: 20;

    text-align: center;

    max-width: 900px;
}

.tag {
    display: inline-block;

    padding: 12px 28px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.65);

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 30px;
}

.heroContent h3 {
    color: var(--primary);

    letter-spacing: 4px;
}

.heroContent h1 {
    font-size: 95px;

    font-family: "Cinzel", serif;

    color: var(--maroon);

    margin: 15px 0;

    line-height: 1;
}

.heroContent h2 {
    font-size: 48px;

    color: var(--accent);
}

.heroContent p {
    margin: 35px auto;

    max-width: 760px;

    font-size: 20px;

    line-height: 1.8;
}

.heroButtons {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 35px;
}

.primaryButton {
    padding: 18px 42px;

    border-radius: 50px;

    background: linear-gradient(135deg, #ffd54f, #f59e0b);

    color: white;

    font-weight: 600;

    box-shadow: var(--shadow);
}

.secondaryButton {
    padding: 18px 42px;

    border-radius: 50px;

    border: 2px solid var(--primary);

    color: var(--primary);

    font-weight: 600;
}

.heroInfo {
    margin-top: 45px;

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;
}

.heroInfo div {
    background: white;

    padding: 16px 28px;

    border-radius: 40px;

    box-shadow: var(--shadow);
}

.tree {
    position: absolute;

    bottom: 0;

    width: 280px;

    opacity: 0.95;
}

.treeLeft {
    left: 0;
}

.treeRight {
    right: 0;
}

.lamp {
    position: absolute;

    bottom: 60px;

    width: 110px;
}

.lampLeft {
    left: 120px;
}

.lampRight {
    right: 120px;
}

.pookalam {
    position: absolute;

    bottom: -130px;

    left: 50%;

    transform: translateX(-50%);

    width: 340px;

    height: 340px;

    border-radius: 50%;
}

.ring {
    position: absolute;

    border-radius: 50%;
}

.one {
    inset: 0;

    background: repeating-radial-gradient(circle,
            #f44336 0 12px,
            #ffd54f 12px 24px,
            #4caf50 24px 36px,
            #ff9800 36px 48px);
}

.two {
    inset: 45px;

    background: repeating-radial-gradient(circle,
            white 0 10px,
            #ffd54f 10px 20px,
            #e53935 20px 30px);
}

.three {
    inset: 95px;

    background: radial-gradient(circle, #ffd54f, #ff7043);
}

.four {
    inset: 135px;

    background: white;

    border: 6px solid #ffd54f;
}

.birds {
    position: absolute;

    top: 160px;

    left: 15%;

    font-size: 32px;
}

/*=========================================================
    STYLE.CSS
    PART 2
    About • Highlights • Countdown • Explore Menu
=========================================================*/

/*=========================================================
    SECTION TITLE
=========================================================*/

.sectionTitle {
    text-align: center;

    margin-bottom: 70px;
}

.sectionTitle h2 {
    font-family: "Cinzel", serif;

    font-size: 52px;

    color: var(--maroon);

    margin-bottom: 18px;
}

.sectionTitle p {
    max-width: 760px;

    margin: auto;

    color: #666;

    line-height: 1.8;

    font-size: 18px;
}

.sectionTitle h2::after {
    content: "";

    display: block;

    width: 120px;

    height: 4px;

    margin: 18px auto 0;

    border-radius: 50px;

    background: linear-gradient(to right,

            var(--secondary),
            var(--accent));
}

/*=========================================================
    ABOUT
=========================================================*/

#about {
    padding: 140px 8%;

    background: linear-gradient(180deg, #fffdf9, #fff4de);
}

.aboutGrid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 70px;

    align-items: center;
}

.aboutText {
    background: rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(18px);

    border-radius: 30px;

    padding: 60px;

    box-shadow: var(--shadow);
}

.aboutText h3 {
    font-family: "Cinzel", serif;

    font-size: 42px;

    color: var(--primary);

    margin-bottom: 30px;
}

.aboutText p {
    line-height: 2;

    color: #555;

    font-size: 18px;

    margin-bottom: 22px;
}

.aboutArtwork {
    display: flex;

    justify-content: center;

    align-items: center;
}

.aboutArtwork img {
    width: 420px;

    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

/*=========================================================
    HIGHLIGHTS
=========================================================*/

.highlights {
    padding: 120px 8%;

    background: white;
}

.highlightGrid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 35px;
}

.highlightCard {
    padding: 45px;

    border-radius: 30px;

    text-align: center;

    background: linear-gradient(145deg, #ffffff, #fff6df);

    box-shadow: var(--shadow);

    transition: 0.45s;
}

.highlightCard:hover {
    transform: translateY(-12px) scale(1.02);
}

.highlightCard .icon {
    font-size: 65px;

    margin-bottom: 25px;
}

.highlightCard h3 {
    font-family: "Cinzel", serif;

    color: var(--primary);

    margin-bottom: 18px;
}

.highlightCard p {
    color: #666;

    line-height: 1.8;
}

/*=========================================================
    COUNTDOWN
=========================================================*/

.countdownSection {
    padding: 120px 8%;

    background: linear-gradient(180deg, #fff7e6, #fffdf8);
}

.countdownBox {
    max-width: 1000px;

    margin: auto;

    text-align: center;

    background: white;

    border-radius: 35px;

    padding: 70px;

    box-shadow: var(--shadow);
}

.countdownBox h2 {
    font-family: "Cinzel", serif;

    color: var(--maroon);

    font-size: 44px;

    margin-bottom: 45px;
}

#countdown {
    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.timeBox {
    width: 170px;

    padding: 35px;

    border-radius: 25px;

    background: linear-gradient(135deg, #ffd54f, #ff9800);

    color: white;
}

.timeBox span {
    display: block;

    font-size: 52px;

    font-weight: 700;
}

.timeBox small {
    font-size: 16px;

    letter-spacing: 2px;
}

/*=========================================================
    MENU SECTION
=========================================================*/

.menuSection {
    padding: 120px 8%;

    background: #fffdf8;
}

.menuGrid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 30px;
}

.menuCard {
    background: white;

    border-radius: 28px;

    padding: 45px;

    text-align: center;

    color: var(--dark);

    box-shadow: var(--shadow);

    transition: 0.45s;

    position: relative;

    overflow: hidden;
}

.menuCard::before {
    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 60%;

    height: 100%;

    background: linear-gradient(rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.65),
            rgba(255, 255, 255, 0));

    transform: skewX(-25deg);

    transition: 1s;
}

.menuCard:hover::before {
    left: 180%;
}

.menuCard:hover {
    transform: translateY(-10px);
}

.menuCard span {
    font-size: 60px;

    display: block;

    margin-bottom: 20px;
}

.menuCard h3 {
    font-family: "Cinzel", serif;

    color: var(--primary);

    font-size: 28px;
}

/*=========================================================
    STYLE.CSS
    PART 3 (FINAL)
    Gallery • Footer • Utilities • Effects
=========================================================*/

/*=========================================================
    GALLERY
=========================================================*/

.gallery {
    padding: 120px 8%;

    background: linear-gradient(180deg, #fff9ec, #ffffff);
}

.galleryGrid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.galleryItem {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background: #fff;

    padding: 20px;

    box-shadow: var(--shadow);

    transition: 0.45s;
}

.galleryItem img {
    width: 100%;

    height: 260px;

    object-fit: contain;

    transition: 0.6s;
}

.galleryItem:hover {
    transform: translateY(-10px);
}

.galleryItem:hover img {
    transform: scale(1.08) rotate(2deg);
}

/*=========================================================
    FOOTER
=========================================================*/

footer {
    background: linear-gradient(135deg, #0b3d2e, #145a32, #1b7a4b);

    color: white;

    padding: 80px 8% 30px;

    margin-top: 80px;

    position: relative;

    overflow: hidden;
}

footer::before {
    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top right,
            rgba(255, 255, 255, 0.08),
            transparent 45%);

    pointer-events: none;
}

.footerTop {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 50px;

    margin-bottom: 45px;

    position: relative;

    z-index: 2;
}

.footerLogo {
    width: 70px;

    margin-bottom: 20px;
}

.footerTop h3 {
    font-family: "Cinzel", serif;

    margin-bottom: 10px;
}

.footerTop h4 {
    margin-bottom: 20px;

    color: var(--secondary);
}

.footerTop p {
    line-height: 1.8;

    opacity: 0.9;
}

.footerTop ul {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footerTop a {
    color: white;

    opacity: 0.9;

    transition: 0.3s;
}

.footerTop a:hover {
    color: var(--secondary);

    padding-left: 8px;
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    margin-top: 35px;

    padding-top: 20px;

    text-align: center;

    opacity: 0.8;

    font-size: 14px;
}

/*=========================================================
    DECORATIVE ELEMENTS
=========================================================*/

.floatingLeaves,
.goldParticles,
.mountains,
.river,
.mist {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.mountains {
    background: linear-gradient(to top, rgba(20, 90, 50, 0.18), transparent 70%);
}

.river {
    background: linear-gradient(to top,
            rgba(100, 181, 246, 0.18),
            transparent 40%);
}

.mist {
    backdrop-filter: blur(2px);

    opacity: 0.2;
}

/*=========================================================
    BUTTONS
=========================================================*/

.primaryButton,
.secondaryButton,
.menuCard,
.highlightCard,
.heroInfo div {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.primaryButton:hover {
    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(245, 124, 0, 0.35);
}

.secondaryButton:hover {
    background: var(--primary);

    color: white;

    transform: translateY(-4px);
}

.heroInfo div:hover {
    transform: translateY(-5px);
}

/*=========================================================
    CURSOR GLOW
=========================================================*/

#cursorGlow {
    position: fixed;

    width: 26px;

    height: 26px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 213, 79, 0.9),
            rgba(255, 213, 79, 0.15),
            transparent);

    pointer-events: none;

    z-index: 9999;

    transform: translate(-50%, -50%);

    mix-blend-mode: screen;
}

/*=========================================================
    CUSTOM SCROLLBAR
=========================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff4de;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--secondary), var(--accent));

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/*=========================================================
    TEXT SELECTION
=========================================================*/

::selection {
    background: var(--secondary);

    color: #222;
}

/*=========================================================
    SMALL UTILITY CLASSES
=========================================================*/

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

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.hidden {
    display: none !important;
}

.fade {
    opacity: 0;

    transition: opacity 0.5s ease;
}

.fade.show {
    opacity: 1;
}

/*=====================================================
   ONAM EXPLORE SECTION
=====================================================*/

.exploreSection {
    position: relative;

    padding: 100px 8%;

    overflow: hidden;

    background:
        radial-gradient(circle at top, rgba(255, 213, 79, 0.45), transparent 40%),
        linear-gradient(135deg, #fff8e1, #fff3cd, #ffe082);
}

/* glowing background circles */

.exploreSection::before,
.exploreSection::after {
    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(255, 152, 0, 0.35), transparent 70%);

    animation: lightMove 8s infinite alternate;
}

.exploreSection::before {
    top: -200px;

    left: -150px;
}

.exploreSection::after {
    bottom: -200px;

    right: -150px;
}

@keyframes lightMove {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(80px, 50px);
    }
}

.sectionTitle {
    position: relative;

    z-index: 5;

    text-align: center;

    margin-bottom: 60px;
}

.smallTitle {
    display: inline-block;

    padding: 8px 20px;

    border-radius: 30px;

    background: rgba(255, 152, 0, 0.15);

    color: #b45309;

    font-weight: 700;
}

.sectionTitle h2 {
    margin-top: 15px;

    font-size: 48px;

    color: #7b1f00;

    font-weight: 900;
}

.sectionTitle p {
    color: #6b4f2a;

    font-size: 18px;
}

/* GRID */

.menuGrid {
    position: relative;

    z-index: 10;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

/* CARD */

.menuCard {
    position: relative;

    overflow: hidden;

    text-align: center;

    text-decoration: none;

    padding: 35px 20px;

    background: rgba(255, 255, 255, 0.65);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    border: 2px solid rgba(255, 193, 7, 0.35);

    box-shadow: 0 20px 50px rgba(121, 85, 0, 0.15);

    transition: 0.4s ease;
}

.menuCard:hover {
    transform: translateY(-15px) scale(1.04);

    box-shadow: 0 30px 70px rgba(255, 152, 0, 0.35);
}

.cardGlow {
    position: absolute;

    width: 120px;

    height: 120px;

    top: -60px;

    right: -60px;

    background: radial-gradient(circle, #ffd54f, transparent 70%);
}

.icon {
    display: block;

    font-size: 55px;

    margin-bottom: 15px;
}

.menuCard h3 {
    color: #8b2500;

    font-size: 22px;

    margin: 10px;
}

.menuCard p {
    color: #795548;

    font-size: 14px;
}

/* Decorations */

.explorePookalam {
    position: absolute;

    width: 220px;

    bottom: -80px;

    left: 40px;

    opacity: 0.7;

    animation: rotatePookalam 20s linear infinite;
}

@keyframes rotatePookalam {
    to {
        transform: rotate(360deg);
    }
}

.exploreLeaf {
    position: absolute;

    width: 260px;

    opacity: 0.5;
}

.exploreLeaf.left {
    left: -100px;

    top: 120px;

    transform: rotate(30deg);
}

.exploreLeaf.right {
    right: -100px;

    bottom: 80px;

    transform: rotate(-50deg);
}

/*=====================================================*
*AUDIO CONTROL - NIC Kerala Onam Celebration 2026*
*=====================================================*/


/*=====================================================*
*AUDIO BUTTON CONTAINER*
*=====================================================*/

.audioControl {

    position: fixed;

    left: 30px;

    bottom: 30px;

    z-index: 999999;

}



/*=====================================================*
*AUDIO TOGGLE BUTTON*
*=====================================================*/

#audioToggle {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    border: none;

    outline: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;


    font-size: 26px;


    color: #ffffff;


    background:
        linear-gradient(135deg,
            #FFD54F,
            #FF9800);


    box-shadow:

        0 10px 35px rgba(255, 152, 0, .5),

        0 0 25px rgba(255, 213, 79, .6);


    transition:

        transform .3s ease,

        box-shadow .3s ease;


    animation:

        audioPulse 2s infinite;

}



/*=====================================================*
*HOVER*
*=====================================================*/

#audioToggle:hover {


    transform:

        scale(1.15) rotate(10deg);


    box-shadow:

        0 15px 45px rgba(255, 152, 0, .7),

        0 0 40px rgba(255, 213, 79, .8);

}



/*=====================================================*
*ACTIVE CLICK*
*=====================================================*/

#audioToggle:active {


    transform:

        scale(.9);

}



/*=====================================================*
*AUDIO ON STATE*
*=====================================================*/

#audioToggle.audio-on {


    background:

        linear-gradient(135deg,
            #4CAF50,
            #2E7D32);


    box-shadow:

        0 10px 35px rgba(76, 175, 80, .5),

        0 0 30px rgba(76, 175, 80, .7);

}



/*=====================================================*
*AUDIO OFF STATE*
*=====================================================*/

#audioToggle.audio-off {


    background:

        linear-gradient(135deg,
            #9E9E9E,
            #424242);


    box-shadow:

        0 10px 35px rgba(0, 0, 0, .35);

}



/*=====================================================*
*PULSE ANIMATION*
*=====================================================*/

@keyframes audioPulse {


    0% {

        transform: scale(1);

    }


    50% {

        transform: scale(1.05);

    }


    100% {

        transform: scale(1);

    }

}



/*=====================================================*
*MOBILE*
*=====================================================*/

@media(max-width:768px) {


    .audioControl {

        right: 20px;

        bottom: 20px;

    }


    #audioToggle {


        width: 52px;

        height: 52px;


        font-size: 22px;

    }

}

.malayalam, .heroInfo {

    font-family:
        "Noto Sans Malayalam",
        sans-serif;

    font-weight: 600;

    line-height: 1.9;

    letter-spacing: .2px;

}

.eventMalayalam {

    font-family:
        "Noto Sans Malayalam",
        sans-serif;


    font-size: 19px;


    font-weight: 700;


    color: #d97706;


    line-height: 1.8;


    margin-bottom: 15px;

}

.tag {

    font-family:
        "Noto Sans Malayalam",
        sans-serif;

    font-size: 20px;


    font-weight: 700;


}

.sectionTitle h2 {


    font-family:
        "Noto Sans Malayalam",
        sans-serif;


    font-weight: 800;


}

.eventDescription {


    font-family:
        "Noto Sans Malayalam",
        sans-serif;


    font-size: 16px;


    line-height: 2;


}

.malayalamGlow {


    font-family:
        "Noto Sans Malayalam",
        sans-serif;


    font-weight: 700;


    text-shadow:

        0 2px 8px rgba(255, 152, 0, .25);


}


/*=========================================================
    MOBILE MENU
=========================================================*/

#menuButton {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd54f, #ff9800);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 152, 0, .35);
    transition: .3s;
}

#menuButton:hover {
    transform: scale(1.05);
}

@media (max-width:900px) {

    header {
        padding: 16px 20px;
    }

    .logo img {
        width: 42px;
    }

    .logo h3 {
        font-size: 18px;
    }

    .logo small {
        font-size: 12px;
    }

    #menuButton {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1202;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;

        background:
            linear-gradient(180deg,
                #fffdf8 0%,
                #fff6dc 100%);

        backdrop-filter: blur(20px);

        box-shadow:
            -15px 0 40px rgba(0, 0, 0, .18);

        transition: .4s ease;

        z-index: 1200;

        overflow-y: auto;

        padding-top: 95px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: flex;
        align-items: center;
        gap: 14px;

        padding: 18px 20px;

        margin-bottom: 10px;

        border-radius: 18px;

        background: #ffffff;

        color: #145a32;

        font-weight: 600;

        box-shadow:
            0 8px 20px rgba(0, 0, 0, .08);

        transition: .3s;
    }

    nav a:hover,
    nav a.active {
        background: linear-gradient(135deg,
                #ffd54f,
                #ff9800);

        color: #fff;

        transform: translateX(8px);
    }

    nav a::after {
        display: none;
    }

    nav::before {
        content: "🌸 NIC Kerala";
        position: absolute;
        top: 28px;
        left: 24px;

        font-family: "Cinzel", serif;
        font-size: 24px;
        color: #145a32;
    }

    nav::after {
        content: "Onam Celebration 2026";
        position: absolute;
        top: 60px;
        left: 24px;

        color: #777;
        font-size: 13px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (min-width:901px) {

    nav {
        position: static !important;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
}
/*=========================================================
    END OF STYLE.CSS
=========================================================*/