@font-face {
    font-family: 'LorealProBook';
    src: url('Fonts/LOREAL_PRO-2-Book.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'LorealProSemibold';
    src: url('Fonts/LOREAL_PRO-4-Semibold.ttf') format('truetype');
}

@font-face {
    font-family: "LorealProBold";
    font-weight: 400;
    src: url("Fonts/LOREAL_PRO-5-Bold.ttf") format("truetype");
}



.loreal-font {
    font-family: 'LorealProBook', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: white;
    /* Optional override */
}



/* GLOBAL RESET & BASE STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

/* Header bar styling */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #121132;
    /* dark blue */
    padding: 10px 0;
    z-index: 1000;
}

/* Center logo in the header */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 50px;
    max-width: 100%;
}

/* Ensure main content starts below the fixed header */
.content {
    margin-top: 80px;
    /* adjust based on header height */
}

/* Responsive T&C image */
.tnc-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}


/* NAVBAR */
.navbar {
    position: absolute;
    /* Transparent navbar over hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
}

.navbar .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger {
    display: none;
}

/* LOGO */
.logo {
    height: 60px;
    display: block;
}

/* NAVIGATION LINKS */
.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 6px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffc107;
}

/* REGISTER BUTTON LINK IN NAV */
.register-link {
    background: linear-gradient(to right, #ff3f7f, #fdd835);
    padding: 8px 14px;
    border-radius: 5px;
    color: #000 !important;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    background: url("images/bg_Headline1.png") no-repeat center center;
    background-size: cover;
    padding: 140px 0 100px 0;
    width: 100%;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align left */
    text-align: left;
}

/* HERO HEADLINE */
.hero-headline {
    max-width: 600px;
    height: auto;
    margin-bottom: 10px;
}

/* PARAGRAPH */
.hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    max-width: 700px;
    margin-bottom: 10px;
    margin-left: 10px;
}

/* REGISTER BUTTON */
.register-button {
    max-width: 250px;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.register-button:hover {
    transform: scale(1.05);
}


/* SECTION GENERAL STYLING */
.section {
    padding: 100px 0;
    background-color: #0a032a;
}

.section:nth-child(even) {
    background-color: #1a103a;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 800px;
}

.about-section {
    background: url("images/bg_WhatsThis_Plain1.jpg") no-repeat center top;
    background-size: cover;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.about-title {
    width: 400px;
    max-width: 90%;
    margin: 0 auto 40px;
    display: block;
}

.about-box-text-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.about-box {
    width: 100%;
    display: block;
}

.about-box-text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px 40px;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 1.3rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: 'lorealProBook', sans-serif;
}




.how-join-section {
    background: url("images/bg_HowDoIJoin1.png") no-repeat center center;
    background-size: cover;
    padding: 100px 20px;
    color: white;
    font-family: "LorealProBook", sans-serif;
    text-align: left;
}

.title-center {
    text-align: center;
}

.how-join-heading,
.how-join-bottom {

    display: block;
    /* makes the image act like a block */
    margin: 0 auto 50px auto;
    /* centers horizontally, adds bottom spacing */
    height: auto;
    /* keeps image proportions */
}

.how-join-heading {
    max-width: 300px;
    /* keeps it from being too big */
}

.how-join-bottom {
    max-width: 250px;
}

/* Steps List */
.how-join-list {
    list-style: disc;
    color: #fff;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 50px;
    padding-left: 20px;
    font-family: "LorealProBook", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.how-join-list li {
    margin-bottom: 10px;
}

/* Timeline Box */
.timeline-box {
    background-color: #121132;
    border-radius: 12px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #00ffff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.timeline-table {
    width: 100%;
    border-collapse: separate;
    /* keep columns separate for glow effect */
    border-spacing: 0;
    /* remove gaps between cells */
    /* background-color: #121132; */
    border-radius: 12px;
    overflow: hidden;
}

.timeline-table th,
.timeline-table td {
    padding: 12px 15px;
    text-align: left;
    color: #fff;
    border-top: none;
    border-bottom: 0;
    /* force no row divider */
}

.timeline-table th {
    font-family: 'LorealProBold';
    text-align: middle;
}

.timeline-table td {
    font-family: 'LorealProBook';
}

/* Remove all default borders */
.timeline-table,
.timeline-table th,
.timeline-table td {
    border: none;
}

/* Neon vertical borders only
.timeline-table th:not(:last-child),
.timeline-table td:not(:last-child) {
  border-right: 2px solid #00ffff;
  box-shadow: 2px 0 5px rgba(0, 255, 255, 0.5);
} */


.prizes-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.prizes-title {
    max-width: 220px;
    margin: 0 auto 40px;
    display: block;
}

.prize-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.prize-card {
    max-width: 200px;
}

.prize-medal {
    width: 200px;
    margin-bottom: 12px;
}

.prize-text .prize-rank,
.prize-text .prize-amount {
    font-family: "LorealProBold", sans-serif;
    font-size: 20px;
    margin: 0;
    color: #262261;
}

.prize-text .prize-amount {
    font-size: 20px;
}

.prize-desc {
    font-family: "LorealProSemibold", sans-serif;
    color: #262261;
    font-size: 14px;
    margin-top: 8px;
}

/* FAQ Section */
.faq-section {
    background: url("images/bg_FAQ1.png") no-repeat center top;
    background-size: cover;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.faq-title {
    display: block;
    /* makes the image act like a block */
    margin: 0 auto 50px auto;
    /* centers horizontally, adds bottom spacing */
    max-width: 500px;
    /* keeps it from being too big */
    height: auto;
    /* keeps image proportions */
}


.faq-box-wrapper {
    display: flex;
    justify-content: center;
}

.faq-box-wrapper {
    background-color: #121132;
    /* Dark blue */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 12px 2px rgba(0, 255, 255, 0.6);
    /* reduced blur + spread */
    border: 2px solid #00ffff;
    max-width: 1000px
}

/* Apply L’Oréal Pro Book for normal paragraph text */
.faq-content p {
    margin-bottom: 15px;
    color: white;
    line-height: 1.5;
    font-family: 'LorealProBook', sans-serif;
    /* Replace with your exact font name */
}

/* Apply L’Oréal Pro Bold for Q: parts */
.faq-content strong {
    color: #ffffff;
    font-family: 'LorealProBold', sans-serif;
    /* Replace with your exact font name */
}


/* Register Button */
.register-section {
    background-color: #fff;
    padding: 25px 20px 60px;
    text-align: center;
}

.register-container {
    max-width: 1500px;
    margin: 0 auto;
}

.register-title {
    max-width: 350px;
    width: 100%;
    margin: 0 auto 40px;
    display: block;
}

.form-wrapper {
    max-width: 100%;
    margin: 0 auto 60px;
}

.form-wrapper iframe {
    width: 100%;
    height: 1000px;
    border: none;
}

.organisers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.organisers p {
    font-family: 'LorealProSemibold', sans-serif;
    font-weight: bold;
}



.logo-box {
    text-align: center;
    gap: 20px;
}

.logo-box p {
    margin-bottom: 10px;
    font-weight: 500;
    color: #222;
    font-family: 'LorealProSemibold', sans-serif;
    font-weight: bold;
}

.logo-box img {
    height: 40px;
    max-width: 350px;
}

/* FOOTER */
.footer-bottom {
    background: url("images/bg_Footer1.png") no-repeat center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'lorealProBook', sans-serif;
    min-height: 80px;
}

.footer-bottom p {
    font-family: 'lorealProBook', sans-serif;
}

.footer-divider {
    color: white;
    opacity: 1;
    margin: 0 15px;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
    font-family: 'lorealProBook', sans-serif;
}

.footer-link:hover {
    color: #cccccc;
    text-decoration: underline;
}




/* =========================
   MOBILE RESPONSIVENESS
   ========================= */
@media screen and (max-width: 768px) {
    .burger {
        display: flex;
    }

    /* Base burger button */
    .burger {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: #121132;
        /* dark blue background */
        border: 2px solid #00ffff;
        /* neon border */
        border-radius: 6px;
        /* rounded corners */
        box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
        /* neon glow */
        cursor: pointer;
        padding: 4px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-left: auto;
    }

    /* Hover/active glow effect */
    .burger:hover {
        box-shadow: 0 0 12px rgba(0, 255, 255, 0.9);
    }

    /* The bars inside the burger */
    .burger .bar {
        width: 24px;
        height: 2.5px;
        background: #ffffff;
        border-radius: 999px;
        transition: all 0.3s ease;
    }


    .nav-links {
        display: none;
        position: absolute;
        top: 45px;
        right: 25px;
        flex-direction: column;
        background: #121132;
        color: black;
        padding: 16px;
        gap: 12px;
        border-radius: 8px;
        z-index: 25;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar .container {
        position: relative;
    }

    .hero {
        padding: 120px 0 80px 0;
    }

    .hero .container {
        padding: 0 20px;
        align-items: flex-start;
        text-align: left;
    }

    .hero-headline {
        max-width: 100%;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .register-button {
        max-width: 180px;
    }

    .section {
        padding: 60px 0;
    }

    .section .container {
        padding: 0 20px;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section p {
        font-size: 0.95rem;
    }


    .how-join-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        /* Reduced vertical space between steps */
    }

    .step {
        padding: 0 10px;
        margin-bottom: 10;
        /* Remove extra vertical spacing */
        text-align: center;
    }

    .timeline-table th {
        font-size: 14px;
    }

    .timeline-table td {
        font-size: 10px;
    }

    .how-join-list {
        font-size: 14px;
    }


    .how-join-bottom {
        width: 220px;
    }

    .how-join-heading {
        margin-bottom: 30px !important;
    }

    .how-join-section {
        padding: 60px 20px !important;
    }

    .step h4 {
        margin-bottom: 6px;
    }

    .step p {
        margin-bottom: 4px;
    }

    .step strong {
        margin-top: 4px;
    }

    .prize-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .prizes-title {
        max-width: 180px;
        margin-bottom: 24px;
    }

    .faq-title {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .faq-box-wrapper {
        padding: 15px;
        max-width: 100%;
    }

    /* Apply L’Oréal Pro Book for normal paragraph text */
    .faq-content p {
        font-size: 13px;

    }

    /* Apply L’Oréal Pro Bold for Q: parts */
    .faq-content strong {
        font-size: 13px;
    }

    .register-title {
        max-width: 250px;
    }

    .about-box-text {
        font-size: 12px;
    }

    .about-box {
        width: 100%;
        display: block;
        height: 350px;
    }

    .prize-medal {
        width: 100px;
    }

    .logo-box img {
        height: 40px;
        max-width: 330px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-divider {
        display: none;
        /* Hide the pipe divider on mobile */
    }

    .footer-bottom p {
        font-size: 10px;
        text-align: center;
        margin: 0;
    }

    .footer-link {
        margin-left: 0;
        font-size: 12px;
        text-align: center;
        margin-top: 15px;
    }

    .hero-content p {
        font-size: 13px;
    }
}