:root {
    --brand-primary: #ff6b00;
    /* 🔥 CHANGE TO YOUR BRAND COLOR */
    --brand-secondary: #ff2d55;
    /* 🔥 CHANGE TO YOUR SECONDARY */
    --dark: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: var(--dark);
    color: white;
}


/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 18px 8%;
    background: white;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

nav img {
    height: 2rem;


}




/* MOBILE NAV FIX */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        /* let content define height */
        padding: 110px 15px 70px;
        /* increased bottom padding to avoid sticky CTA overlap */
    }

    .hero h1 {
        font-size: clamp(24px, 8vw, 38px);
        /* smaller for mobile */
        line-height: 1.3;
    }

    .hero p {
        font-size: clamp(13px, 4vw, 16px);
        margin-bottom: 30px;
    }
}


/* HERO */

.hero {
    /* Make hero responsive */
    min-height: 100vh;
    /* full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* FIX: Extra safe spacing for fixed navbar */
    padding: 130px 20px 80px;
    /* slightly increased top & bottom */

    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    position: relative;
    z-index: 1;
}


.hero h1 {
    font-size: clamp(28px, 6vw, 65px);
    /* responsive font size */
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
    line-height: 1.25;
    /* slightly increased for better wrapping */
    z-index: 10;
    /* increased to avoid overlap issues */
    position: relative;
    word-break: break-word;
    /* prevents overflow on very small screens */
}

.hero p {
    font-size: clamp(14px, 4vw, 20px);
    /* responsive text */
    max-width: 700px;
    margin-bottom: 40px;
    color: white;
    line-height: 1.6;
    /* slightly improved readability */
}

.btn {
    padding: 18px 50px;
    background: white;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 900;
    border-radius: 50px;
    transition: 0.3s;
}

.btn:hover {
    background: black;
    color: white;
    transform: scale(1.08);
}

/* SECTION */
.section {
    padding: 120px 8%;
    text-align: center;
}

.section h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.section p {
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.8;
}

/* WORKSHOP GRID */
.grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    padding: 50px 30px;
    border-radius: 20px;
    background: #1a1a1a;
    transition: 0.4s;
    border: 2px solid var(--brand-primary);
}

.card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.card p {
    font-size: 15px;
    opacity: 0.9;
}

/* CTA */
.cta {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.cta h2 {
    font-size: 50px;
    margin-bottom: 30px;
}

footer {
    text-align: center;
    padding: 30px;
    background: #000;
    font-size: 14px;
    opacity: 0.6;
}

/*

/* MOBILE */
@media(max-width:768px) {
    .hero h1 {
        font-size: 38px;
    }

    .section h2 {
        font-size: 30px;
    }
}

/* MOBILE STICKY CTA */
/* MOBILE STICKY CTA */
.mobile-cta {
    display: none;
}

@media(max-width:768px) {

    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: block;
        text-align: center;
        padding: 16px 0;
        font-weight: 900;
        font-size: 16px;
        text-decoration: none;
        color: white;
        z-index: 1000;
        overflow: hidden;
        background: #111;

        /* Zoom animation */
        animation: slideUp 0.4s ease-out, pulse 2s ease-in-out infinite;
    }

    /* Moving gradient border */
    .mobile-cta::before {
        content: "";
        position: absolute;
        inset: -3px;
        background: linear-gradient(45deg,
                #ff0000,
                #ff7300,
                #ff7300,
                #ff0000);
        background-size: 400%;
        border-radius: 0;
        z-index: -1;
        animation: glowing 6s linear infinite;
    }

    /* Soft glow blur */
    .mobile-cta::after {
        content: "";
        position: absolute;
        inset: -8px;
        background: inherit;
        filter: blur(25px);
        z-index: -2;
        animation: glowing 6s linear infinite;
    }

    body {
        padding-bottom: 75px;
    }
}

/* Slide up animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Gradient movement */
@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 400% 0;
    }
}

/* Zoom in & out */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



/* ------------------------ Register Now button new css ----------------------- */
.btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    background: #111;
    z-index: 1;
    overflow: hidden;
    border: 2px solid white;

    /* Zoom animation */
    animation: pulse 2s ease-in-out infinite;
}

/* Moving rainbow border */
.btn::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg,
            #ff0000,
            #ff7300,
            #ff7300,
            #ff0000);
    background-size: 400%;
    border-radius: 14px;
    z-index: -1;
    animation: glowing 6s linear infinite;
}

/* Glow blur */
.btn::after {
    content: "";
    position: absolute;
    inset: -6px;
    background: inherit;
    filter: blur(20px);
    border-radius: 14px;
    z-index: -2;
    animation: glowing 6s linear infinite;
}

/* Gradient movement */
@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 600% 0;
    }
}

/* Zoom in & out animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* form section for whatsapp and google sheet */
/* Form */
.form-section {
    background: var(--black);
    color: var(--white);
}

.form-container {
    max-width: 500px;
    margin: auto;
    background: #111;
    padding: 30px;
    border-radius: 6px;
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}

.form-container button {
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-container button:hover {
    background: var(--red);
}

/* form section for whatsapp and google sheet */
.form-section {
    padding: 40px 20px;
}

.form-container {
    max-width: 500px;
    margin: auto;
    background: #111;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Inputs & Select */
.form-container input,
.form-container select {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* Focus Effect */
.form-container input:focus,
.form-container select:focus {
    border-color: var(--brand-primary);
}

/* Button (Override old duplicate button style issue) */
.form-container button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.form-container button:hover {
    transform: scale(1.05);
}



