/* Premium Fashion Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background: #fff; color: #1a1a1a; line-height: 1.6; }

/* Navigation */
header { text-align: center; padding: 50px 0 20px; border-bottom: 1px solid #eee; }
header h1 { font-family: 'Playfair Display', serif; font-size: 2.8rem; letter-spacing: 12px; font-weight: 400; text-transform: uppercase; }
.main-nav { margin-top: 25px; }
.nav-links { list-style: none; display: flex; justify-content: center; }
.nav-links li { position: relative; }
.nav-links a { text-decoration: none; color: #111; padding: 10px 20px; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }

.dropdown-content {
    display: none; position: absolute; background: #fff; min-width: 180px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); top: 100%; left: 50%; transform: translateX(-50%); z-index: 100;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { color: #888; padding: 12px; display: block; font-size: 0.7rem; text-decoration: none; }
.dropdown-content a:hover { color: #000; background: #fafafa; }

/* Enhanced Category Banner */
.gender-banner {
    display: flex;
    background: #fff;
    margin-bottom: 60px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    min-height: 600px;
}

.banner-image { flex: 1.2; background: #f9f9f9; display: flex; align-items: center; justify-content: center; }
/* UPDATE: cover fills the area, top ensures the face isn't cut */
.banner-image img { width: 100%; height: 600px; object-fit: cover; object-position: top; display: block; transition: transform 0.5s ease; }
.banner-image:hover img { transform: scale(1.02); }

.banner-content-right {
    flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
}

.banner-content-right h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin: 15px 0; font-weight: 300; letter-spacing: 4px; }
.banner-history p { color: #666; line-height: 1.8; margin-bottom: 30px; font-style: italic; }

.banner-stats-box {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 40px;
    border-top: 1px solid #f5eee8; padding-top: 25px;
}

.stat-row { font-size: 0.75rem; letter-spacing: 1px; color: #888; text-transform: uppercase; }
.stat-row strong { color: #000; margin-right: 5px; }

.banner-actions { display: flex; gap: 15px; }
.banner-actions .btn { flex: 1; padding: 16px; text-align: center; text-decoration: none; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; transition: 0.4s; }

.hire-btn { background: #000; color: #fff; border: 1px solid #000; }
.portfolio-btn { background: transparent; color: #000; border: 1px solid #000; }

/* Model Roster Grid */
.container { max-width: 1400px; margin: 0 auto; padding: 40px 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 30px; }

.model-card { border: 1px solid #c9b8a4; }

.image-container { 
    width: 100%; height: 550px; background: #f9f9f9; display: flex;
    align-items: center; justify-content: center; overflow: hidden;
}

/* UPDATE: cover fills the area, top ensures head is always visible */
.image-container img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.static-info { padding: 20px 18px 24px; text-align: center; }
.static-info h3 { font-family: 'Playfair Display', serif; letter-spacing: 2px; }
.overlay-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; font-size: 0.7rem; color: #777; margin: 15px 0; text-align: left; }
.overlay-buttons { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.mini-btn { flex: 1; padding: 12px; font-size: 0.65rem; border: 1px solid #000; text-align: center; text-decoration: none; color: #000; text-transform: uppercase; }
.mini-btn.hire { background: #000; color: #fff; }

.section-title { display: flex; align-items: center; margin-bottom: 50px; }
.section-title hr { flex: 1; border: none; height: 1px; background: #eee; }
.section-title span { padding: 0 30px; letter-spacing: 5px; font-weight: 600; font-size: 0.8rem; }

footer {
    background: #0a0a0a;
    color: #888;
    padding: 70px 20px 30px;
    border-top: 1px solid #111;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #1e1e1e;
    margin-bottom: 30px;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 10px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    margin-top: 6px;
}

.footer-contact-col p {
    font-size: 0.78rem;
    line-height: 2;
    color: #666;
}

.footer-contact-col strong {
    color: #aaa;
    display: block;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-contact-col a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-col a:hover { color: #fff; }

.footer-nav-col strong {
    color: #aaa;
    display: block;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-nav-col a {
    display: block;
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-nav-col a:hover { color: #fff; }

.footer-copy {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
}

@media (max-width: 850px) {
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 1000px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gender-banner { flex-direction: column; }
    .banner-image img { height: 500px; }
}


/* --- MOBILE SPECIFIC CHANGES --- */
@media (max-width: 850px) {
    .dropdown-content {
        display: none !important; 
        position: static !important;
        width: 100% !important;
        background: #f9f9f9 !important;
        box-shadow: none !important;
        transform: none !important;
        text-align: center;
        padding: 10px 0;
    }

    /* Ensure the links inside are visible and clickable */
    .dropdown-content a {
        display: block !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee;
        color: #333 !important;
    }
    
    /* This allows the menu to show Home, Category, and Contact in a clean line */
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* 1. Burger Menu Styling */
    .burger-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
        position: absolute;
        right: 25px;
        top: 45px;
        cursor: pointer;
        z-index: 2000;
    }
    
    .burger-menu span {
        width: 25px;
        height: 2px;
        background: #000;
    }

    /* 2. 25% Width Menu from Right */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 35%;   /* Cover 25% of the screen */
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 1500;
        display: block !important;
        margin-top: 0 !important;
        padding-top: 100px;
    }

    .main-nav.mobile-active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Hide PC dropdown behavior for mobile to keep drawer clean */
    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        transform: none;
        text-align: center;
    }

    /* 3. Symmetrical Images (Cropped left/right/bottom) */
    .container { padding: 20px; }
    
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 Column for Roster */
        gap: 30px;
    }

    .image-container {
        height: 500px; /* Symmetrical fixed height for mobile */
        width: 100%;
    }

    /* Crops equally from left/right and bottom while keeping heads (top) visible */
    .image-container img, 
    .hero-left-image img, 
    .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center; 
    }

    /* 4. Profile Page Adjustments */
    .profile-hero {
        flex-direction: column;
        gap: 20px;
    }

    .hero-left-image {
        width: 100%;
        height: 500px;
    }

    .hero-right-info {
        text-align: center;
        padding: 0;
    }

    .portfolio-grid, .career-grid {
        grid-template-columns: 1fr !important; /* 1 Column for all galleries */
    }

    /* 5. Category Banner Adjustment */
    .gender-banner {
        flex-direction: column;
    }
    .banner-image {
        height: 400px;
        width: 100%;
    }
}

/* ── Contact Page ── */
.page-hero {
    text-align: center;
    padding: 80px 20px 60px;
    border-bottom: 1px solid #eee;
    margin-bottom: 80px;
}

.page-hero .tag { font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase; color: #999; }
.page-hero h2 { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 400; margin: 20px 0 15px; letter-spacing: 4px; }
.page-hero p { color: #888; font-size: 0.9rem; max-width: 600px; margin: 0 auto; line-height: 1.8; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.contact-info-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 5px;
}

.contact-info-item p, .contact-info-item a {
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    line-height: 1.8;
}

.contact-info-item a:hover { color: #000; }

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #111;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #000; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select { cursor: pointer; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.6;
}

.form-check input[type="checkbox"] { margin-top: 3px; cursor: pointer; flex-shrink: 0; }
.form-check a { color: #000; }

.form-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.form-submit:hover { background: #222; }

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    border: 1px solid #eee;
    margin-top: 20px;
}

.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: #888; font-size: 0.85rem; }

@media (max-width: 850px) {
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero h2 { font-size: 2.2rem; }
}

/* ── Privacy / Impressum Page ── */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.legal-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.legal-page .legal-subtitle {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 60px;
    display: block;
}

.legal-block {
    margin-bottom: 55px;
    padding-bottom: 55px;
    border-bottom: 1px solid #eee;
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.legal-block h3 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin: 20px 0 10px;
}

.legal-block p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 14px;
}

.legal-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}

.legal-block ul li {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.9;
    padding-left: 16px;
    position: relative;
}

.legal-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #ccc;
}

.legal-block a { color: #000; }

.legal-address-box {
    background: #fafafa;
    padding: 25px 30px;
    margin: 20px 0;
    font-size: 0.88rem;
    color: #444;
    line-height: 2;
}

/* ── Legal Hero Banner ── */
.legal-hero {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.legal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 50px;
    gap: 12px;
}

.legal-hero-overlay .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.legal-hero-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
}

@media (max-width: 850px) {
    .legal-hero { height: 300px; }
    .legal-hero-overlay h2 { font-size: 1.8rem; letter-spacing: 4px; }
}