:root {

    --gold: #D4AF37;
    --black: #000000;
    --white: #ffffff;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {

    font-family: Arial, sans-serif;
    overflow-x: hidden;

}

#programs {
    scroll-margin-top: 100px;
}

/* NAVBAR */

.navbar {
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(3px);
    padding: 0px 0;
}

.navbar .container {
    max-width: 1200px;
}

.navbar-brand {

    text-decoration: none;

}

.logo-img {

    height: 60px;
    width: auto;

    object-fit: contain;

}

.logo-text {

    margin-left: 12px;

    color: #fff;

    font-size: 1.2rem;

    font-weight: 700;

    letter-spacing: 1px;

}

.nav-link {
    font-size: 0.95rem;
    margin-left: 15px;
}

/* Dropdown Menu */

.dropdown-menu {
    background: #000;
    border: 1px solid #D4AF37;
    border-radius: 0;
    min-width: 240px;
    padding: 0;
    margin-top: 10px;
}

.dropdown-item {
    color: #fff;
    padding: 12px 18px;
    transition: all .3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #D4AF37;
    color: #000;
}

.nav-link.dropdown-toggle::after {
    margin-left: 8px;
}

/* Desktop Hover Dropdown */

@media (min-width: 992px) {

    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}


/* ====================================
MODEL PORTFOLIO PAGE
==================================== */

/* HERO */

.portfolio-hero {

    min-height: 100vh;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background:
        linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
        url("../images/models/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.portfolio-hero .hero-content {

    max-width: 700px;

}

.portfolio-hero span {

    color: #D4AF37;

    font-weight: 700;

    letter-spacing: 3px;

}

.portfolio-hero h1 {

    font-size: 4.5rem;

    font-weight: 800;

    margin: 20px 0;

    line-height: 1.1;

}

.portfolio-hero p {

    color: #ddd;

    font-size: 18px;

    line-height: 1.9;

}


/* ABOUT */

.portfolio-about {

    padding: 120px 0;

    background: #fff;

}

.portfolio-about img {

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);

}

.section-subtitle {

    color: #D4AF37;

    letter-spacing: 3px;

    font-weight: 700;

    display: block;

    margin-bottom: 15px;

}

.portfolio-about h2 {

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 25px;

}

.portfolio-about p {

    color: #666;

    line-height: 1.9;

}


/* SECTION TITLE */

.section-heading {

    margin-bottom: 60px;

}

.section-heading span {

    color: #D4AF37;

    font-weight: 700;

    letter-spacing: 3px;

}

.section-heading h2 {

    font-size: 3rem;

    font-weight: 800;

    margin-top: 10px;

}


/* FEATURED MODELS */

.featured-models {

    padding: 120px 0;

    background: #0f0f0f;

}

.featured-models .section-title h2 {

    color: #fff;

}

.model-card {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

}

.model-card img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    transition: .5s;

}

.model-card:hover img {

    transform: scale(1.08);

}

.model-info {

    position: absolute;

    bottom: 0;

    width: 100%;

    padding: 20px;

    background: rgba(0, 0, 0, .75);

    color: #fff;

}

.model-info h4 {

    margin-bottom: 5px;

}

.model-info span {

    color: #D4AF37;

}


/* MODELING CATEGORIES */

.modeling-categories {

    padding: 120px 0;

    background: #111;

}

.category-card {

    background: #1b1b1b;

    padding: 35px 25px;

    border-radius: 15px;

    color: #fff;

    height: 100%;

    border: 1px solid rgba(212, 175, 55, .15);

    transition: .4s;

}

.category-card:hover {

    transform: translateY(-10px);

    border-color: #D4AF37;

    box-shadow: 0 10px 25px rgba(212, 175, 55, .15);

}

.category-card h4 {

    color: #D4AF37;

    margin-bottom: 15px;

}

.category-card p {

    color: #ccc;

}


/* BODY PART MODELING */

.body-modeling-section {

    padding: 120px 0;

    background: #fff;

}

.body-modeling-section img {

    border-radius: 20px;

}

.body-modeling-section h2 {

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;

}

.body-modeling-section p {

    color: #666;

    line-height: 1.9;

}

.body-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;

}

.body-item {

    background: #f7f7f7;

    padding: 15px;

    border-radius: 10px;

    font-weight: 600;

    transition: .3s;

}

.body-item:hover {

    background: #D4AF37;

    color: #000;

}


/* SCHEDULE */

.schedule-section {

    padding: 120px 0;

    background: #0f0f0f;

}

.schedule-card {

    background: #181818;

    color: #fff;

    padding: 35px;

    border-radius: 20px;

    height: 100%;

    transition: .4s;

}

.schedule-card:hover {

    transform: translateY(-10px);

}

.schedule-card h3 {

    color: #D4AF37;

    margin-bottom: 25px;

}

.schedule-card ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.schedule-card li {

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    color: #ddd;

}


/* PORTFOLIO GALLERY */

.portfolio-gallery {

    padding: 120px 0;

    background: #fff;

}

.gallery-img {

    width: 100%;

    height: 350px;

    object-fit: cover;

    border-radius: 15px;

    transition: .4s;

}

.gallery-img:hover {

    transform: scale(1.05);

}


/* CTA */

.registration-cta {

    padding: 120px 0;

    background: #111;

}

.cta-box {

    text-align: center;

    background: #181818;

    padding: 70px 40px;

    border-radius: 25px;

}

.cta-box h2 {

    color: #fff;

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;

}

.cta-box p {

    color: #ccc;

    max-width: 700px;

    margin: auto;

    margin-bottom: 30px;

}

.btn-register {

    display: inline-block;

    padding: 15px 40px;

    background: #D4AF37;

    color: #000;

    font-weight: 700;

    text-decoration: none;

    border-radius: 50px;

    transition: .4s;

}

.btn-register:hover {

    background: #fff;

    color: #000;

}


/* MOBILE */

@media(max-width:991px) {

    .portfolio-hero h1 {

        font-size: 3rem;

    }

    .portfolio-about h2,
    .body-modeling-section h2 {

        font-size: 2.3rem;

    }

}

@media(max-width:768px) {

    .portfolio-hero {

        text-align: center;

    }

    .portfolio-hero h1 {

        font-size: 2.2rem;

    }

    .section-heading h2 {

        font-size: 2rem;

    }

    .portfolio-about,
    .featured-models,
    .modeling-categories,
    .body-modeling-section,
    .schedule-section,
    .portfolio-gallery,
    .registration-cta {

        padding: 80px 0;

    }

    .model-card img {

        height: 400px;

    }

    .gallery-img {

        height: 220px;

    }

    .body-grid {

        grid-template-columns: 1fr;

    }

    .cta-box {

        padding: 50px 25px;

    }

    .cta-box h2 {

        font-size: 2rem;

    }

}

/* kids and teenage */


/* HERO */

.portfolio-hero {

    min-height: 100vh;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;

    color: #fff;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kids-hero {

    min-height: 100vh;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;

 color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../images/kids/kids-hero.webp');
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.teenager-hero {

    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../images/teen/teen-hero.jpg');
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-hero span {

    color: #d4af37;

    letter-spacing: 3px;
    font-weight: 700;
}

.portfolio-hero h1 {

    font-size: 4rem;
    font-weight: 800;

    margin: 20px 0;
}

.portfolio-hero p {

    max-width: 700px;

    margin: auto;

    color: #ddd;
}

 .hero-btn {

     display: inline-block;

     margin-top: 30px;

     background: #D4AF37;

     padding: 15px 40px;

     border-radius: 50px;

     color: #000;

     font-weight: 700;

     text-decoration: none;

 }


/* INTRO */

.portfolio-intro h2 {

    font-size: 3rem;

    font-weight: 700;

    margin-bottom: 20px;
}

.portfolio-intro p {

    max-width: 800px;

    margin: auto;

    line-height: 1.9;

    color: #666;
}


/* GALLERY */

.portfolio-gallery {

    background: #f8f8f8;
}

.gallery-img {

    width: 100%;

    height: 400px;

    object-fit: cover;

    border-radius: 15px;

    transition: .4s;

    cursor: pointer;
}

.gallery-img:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}


/* CTA */

.portfolio-cta {

    padding: 100px 0;

    background: #111;
}

.cta-box {

    text-align: center;
}

.cta-box h2 {

    color: #fff;

    font-size: 3rem;

    margin-bottom: 20px;
}

.cta-box p {

    color: #ccc;

    margin-bottom: 30px;
}

.cta-btn {

    display: inline-block;

    padding: 15px 40px;

    background: #d4af37;

    color: #000;

    text-decoration: none;

    font-weight: 700;

    border-radius: 50px;

    transition: .3s;
}

.cta-btn:hover {

    background: #fff;

    color: #000;
}


/* MOBILE */

@media(max-width:768px) {

    .portfolio-hero h1 {

        font-size: 2.5rem;
    }

    .portfolio-intro h2 {

        font-size: 2rem;
    }

    .gallery-img {

        height: 280px;
    }

    .cta-box h2 {

        font-size: 2rem;
    }

}