/* ==========================
   GLOBAL RESET & BASE STYLE
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}



/* ==========================
   PREMIUM NAVIGATION BAR
   ========================== */

.nav-header {
    background: #000;
    padding: 18px 0;
    border-bottom: 1px solid #222;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: gold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop menu */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

/* Gold underline animation */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: gold;
    transition: 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 3px;
    background: gold;
    border-radius: 2px;
}


/* Mobile dropdown */
@media(max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #000;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border: 1px solid #333;
        border-radius: 10px;
        display: none;
        width: 180px;
        animation: fadeIn .3s ease;
    }

    .nav-menu.show {
        display: flex;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}



/* ==========================
   HERO SECTION
   ========================== */

.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #000, #333);
    color: white;
}

.hero .btn {
    display: inline-block;
    background: gold;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    color: #000;
    margin-top: 1rem;
    font-weight: bold;
}



/* ==========================
   SECTION TITLE
   ========================== */

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: gold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}



/* ==========================
   ABOUT AGENCY SECTION
   ========================== */
.agency-about {
    background: #111;
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-top: 40px;
}

.agency-about p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 10px;
}



/* ==========================
   INSTAGRAM MODELS GRID
   ========================== */

.embed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.instagram-embed {
    background: #111;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #333;
    height: 360px;            /* FIX white embed area */
    overflow: hidden;         /* HIDE Instagram excess */
    transition: .3s ease;
}

.instagram-embed:hover {
    transform: translateY(-6px);
    border-color: gold;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.5);
}

.instagram-embed iframe {
    width: 100%;
    height: 360px;           /* Match container height */
    border: none;
    border-radius: 10px;
}



/* ==========================
   HOW WE WORK SECTION
   ========================== */

.how-we-work {
    padding: 60px 0;
    background: #111;
    color: #fff;
}

.work-steps {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.work-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: 0.3s ease;
}

.work-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.5);
    border-color: gold;
}

.work-box .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: gold;
    margin-bottom: 15px;
}

.work-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.work-box p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
}



/* ==========================
   CONTACT PAGE
   ========================== */

.contact-page {
    margin-bottom: 60px;
}

.contact-wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 20px;
}

.contact-box {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
}

.contact-box h3 {
    color: gold;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.form-info {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    background: #000;
    border: 1px solid #333;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: gold;
    outline: none;
}

.gold-btn {
    background: gold;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gold-btn:hover {
    background: #e6c200;
}



/* ==========================
   CTA BANNER
   ========================== */

.cta-banner {
    background: linear-gradient(to right, #000, #222);
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #333;
}

.cta-banner h3 {
    color: gold;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-banner p {
    color: #ccc;
    margin-bottom: 20px;
}

.cta-btn {
    background: gold;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #e6c200;
}



/* ==========================
   FOOTER
   ========================== */

footer {
    background: black;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}
