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

/* =========================
   BODY
========================= */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   HEADER FIX (PERFECT CENTER)
========================= */
header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #111;
}

/* LOGO (LEFT) */
.logo {
    z-index: 2;
}

.logo img {
    width: 260px;
    height: auto;
}

/* NAV (RIGHT) */
nav {
    margin-left: auto;
    z-index: 2;
}

/* BRAND (TRUE CENTER) */
.brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* MAIN TITLE */
.brand h1 {
    font-size: 32px;
    letter-spacing: 3px;
    font-weight: 600;
}

/* PHOTOGRAPHY LINE */
.brand span {
    color: red;
    font-size: 12px;
    letter-spacing: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 5px;
}

/* RED LINES */
.brand span::before,
.brand span::after {
    content: "";
    height: 2px;
    width: 80px;
    background: red;
    display: block;
    opacity: 0.9;
}

/* =========================
   NAVIGATION
========================= */
nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover {
    color: red;
}

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

.hero {
    height: 700px;

    display: flex;
    align-items: center;

    padding-left: 80px;

    background-color: #000; /* fills empty space */

    background-image:
        linear-gradient(to right, rgba(0,0,0,0.95) 30%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.9)),
        url('../images/hero2.jpg');

    background-repeat: no-repeat;

    background-size: contain;        /* 🔥 shows FULL image (top & bottom) */

    background-position: 85% center; /* 🔥 moves image RIGHT */
}

/* HERO TEXT */
.hero-text {
    max-width: 500px;
    z-index: 2;
}

.hero-text h2 {
    font-size: 50px;
    line-height: 1.2;
}

.hero-text h2 span {
    color: red;
}

.hero-text p {
    margin-top: 20px;
    font-size: 16px;
    color: #ccc;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    border: 1px solid red;
    color: red;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn:hover {
    background: red;
    color: #000;
}


/* =========================
   SECTIONS
========================= */
.section {
    padding: 80px;
    text-align: center;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.section p {
    color: #bbb;
    max-width: 600px;
    margin: auto;
}

/* =========================
   FORM (CONTACT PAGE)
========================= */
form input,
form textarea {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

form textarea {
    height: 120px;
}

/* =========================
   FOOTER
========================= */
.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #111;
    font-size: 12px;
    color: #777;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 900px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 10px;
    }

    .hero {
        padding: 60px 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .brand span::before,
    .brand span::after {
        width: 40px;
    }
}

/* =========================
   EXPERIENCE PAGE (FIX)
========================= */

/* HERO */
.experience-hero {
    text-align: center;
    padding: 120px 20px 60px;
}

.experience-hero h1 {
    font-size: 60px;
    letter-spacing: 3px;
}

.experience-hero p {
    margin-top: 15px;
    letter-spacing: 4px;
    color: #ccc;
}

.red-line {
    width: 80px;
    height: 2px;
    background: red;
    margin: 20px auto;
}

/* 🔥 CENTER CONTENT */
.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* GRID (THIS FIXES YOUR ISSUE) */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 20px;
}

/* CARD */
.experience-card {
    border: 1px solid #222;
    padding: 40px 25px;
    text-align: center;
    background: #000;
}

/* ICON */
.icon {
    font-size: 40px;
    color: red;
    margin-bottom: 20px;
}

/* TITLE */
.experience-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* RED LINE */
.card-line {
    width: 40px;
    height: 2px;
    background: red;
    margin: 10px auto 20px;
}

/* TEXT */
.experience-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA */
.experience-cta {
    text-align: center;
    padding: 40px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CONTACT PAGE (MATCH TEMPLATE)
========================= */

.contact-hero {
    text-align: center;
    padding: 100px 20px 40px;
}

.contact-hero h1 {
    font-size: 50px;
    letter-spacing: 2px;
}

.contact-hero p {
    color: #ccc;
    margin-top: 10px;
    letter-spacing: 3px;
}

/* WRAPPER */
.contact-section {
    padding: 60px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

/* LEFT SIDE */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon {
    font-size: 22px;
    color: red;
}

/* FORM */
.contact-right form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.contact-right textarea {
    height: 140px;
}

/* BUTTON */
.send-btn {
    border: 1px solid red;
    background: transparent;
    color: red;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.send-btn:hover {
    background: red;
    color: #000;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

/* =========================
   ABOUT PAGE (TEMPLATE MATCH)
========================= */

.about-section {
    padding: 100px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.about-text h1 {
    font-size: 60px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-subtitle {
    color: #ccc;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* RED LINE (MISSING IN YOUR VERSION) */
.about-line {
    width: 60px;
    height: 2px;
    background: red;
    margin-bottom: 30px;
}

.about-text p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 420px;
}

/* BUTTON */
.learn-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    border: 1px solid red;
    color: red;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
}

.learn-btn:hover {
    background: red;
    color: #000;
}

/* IMAGE */

.about-image {
    width: 100%;
    height: 450px;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.75) 15%,
            rgba(0,0,0,0.10) 70%
        ),
        url('../images/about.jpg') no-repeat center/cover;

    filter: grayscale(100%) brightness(1.1) contrast(1.08);
}


/* MOBILE */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }
}





/* =========================
   MODELS PAGE
========================= */

.models-section {
    padding: 80px 20px;
}

/* CONTAINER */
.models-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT TEXT */
.models-text h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.models-text h3 {
    color: #ccc;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.models-text p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid red;
    color: red;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
}

.apply-btn:hover {
    background: red;
    color: #000;
}

/* RIGHT IMAGE */
.models-image {
    width: 100%;
    height: 500px;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2)),
        url('../images/model.jpg') no-repeat center/cover;
    filter: grayscale(100%);
}

/* MOBILE */
@media (max-width: 900px) {
    .models-container {
        grid-template-columns: 1fr;
    }

    .models-image {
        height: 300px;
    }
}



/* =========================
   EXPERIENCE PAGE
========================= */

/* existing experience styles */


/* 🔥 TEXT WRAP FIX (ADD THIS AT THE VERY BOTTOM) */
.experience-card {
    text-align: center;
    padding: 30px 20px;
}

.experience-card h3 {
    max-width: 140px;
    margin: 0 auto 10px;
    line-height: 1.3;
    word-break: normal;
}

.experience-card p {
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.6;
    color: #aaa;
}











/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
