:root {
    /* پالت رنگی جدید: تم روشن و لوکس */
    --bg-color: #faf9f6; /* سفید استخوانی/کرم خیلی روشن */
    --bg-secondary: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --gold: #c5a059; /* طلایی متالیک */
    --gold-hover: #b08d4b;
    --gold-light: #f3e5c5;
    --border-color: #e5e5e5;
    --shadow: 0 10px 40px rgba(0,0,0,0.05);
    
    --font-display: 'Lalezar', 'Times New Roman', serif;
    --font-body: 'Vazirmatn', 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-logo {
    font-family: bebas neue;
    font-size: 28px;
    color: var(--text-main);
    letter-spacing: 1px;
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--text-main);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-cta:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

    /* HERO */
    .hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    }

    .hero-video-wrap {
    position: relative;
    overflow: hidden;
    }

    .hero-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.1);
    }

    .hero-video-overlay {
    width: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,8,0.4) 0%, transparent 60%),
                linear-gradient(to right, transparent 70%, var(--black) 100%);
    }

.hero-content {
    position: absolute;
    bottom: 80px;
    right: 30px;
    text-align: right;
}

.hero-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-hover);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 80px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    position: relative;
    display: inline-block;
}


.hero { grid-template-columns: 1fr; height: 100svh; }
.hero-text { right: 24px; left: 24px; bottom: 60px; text-align: right; }

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 8px;
    background: rgba(197, 160, 89, 0.2);
    z-index: -1;
}

.hero-desc {
    font-size: 16px;
    color: #fff;
    max-width: 450px;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
    width: fit-content;
}

.hero-btn:hover { color: var(--gold); }

.hero-visual {
    position: relative;
    height: 100%;
    background: #f0f0f0;
    overflow: hidden;
}

.hero-visual img {
    transition: transform 1s ease;
}

.hero-visual:hover img {
    transform: scale(1.05);
}

/* --- MARQUEE --- */
.marquee {
    background: var(--text-main);
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 20px;
    margin: 0 40px;
    opacity: 0.8;
}

.marquee-item span { color: var(--gold); margin-right: 10px; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* --- SECTIONS COMMON --- */
.section-padding {
    padding: 100px 8%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--text-main);
}

/* --- ABOUT --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 250px;
    border: 5px solid var(--bg-color);
    border-radius: 4px;
    z-index: -1;
    background: var(--gold-light); /* Placeholder color */
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    text-align: justify;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h4 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
}

.stat-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- MODELS GRID --- */
.models-grid {
    display: flex;
    overflow-x: auto; /* اجازه اسکرول افقی */
    scroll-behavior: smooth; /* حرکت نرم هنگام اسکرول */
    
    /* مخفی کردن نوار اسکرول زشت (اختیاری) */
    scrollbar-width: none; /* برای فایرفاکس */
    gap: 30px;
}

.models-grid-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    scroll-behavior: smooth; /* حرکت نرم هنگام اسکرول */
    
    /* مخفی کردن نوار اسکرول زشت (اختیاری) */
    scrollbar-width: none; /* برای فایرفاکس */
    gap: 30px;
}

.models-grid::-webkit-scrollbar{
    display: none; /* برای کروم و سافاری */
}

.model-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.model-img {
    height: 380px;
    overflow: hidden;
}

.model-img img {
    transition: transform 0.5s;
}

.model-card:hover .model-img img {
    transform: scale(1.1);
}

.model-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.model-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.model-role {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ARTICLES --- */
.articles-grid {
    display: flex;
    overflow-x: auto; /* اجازه اسکرول افقی */
    scroll-behavior: smooth; /* حرکت نرم هنگام اسکرول */
    
    /* مخفی کردن نوار اسکرول زشت (اختیاری) */
    scrollbar-width: none; /* برای فایرفاکس */
    gap: 30px;
}

.articles-grid-list{
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    scroll-behavior: smooth; /* حرکت نرم هنگام اسکرول */
    
    /* مخفی کردن نوار اسکرول زشت (اختیاری) */
    scrollbar-width: none; /* برای فایرفاکس */
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    flex-shrink: 0;
    transition: 0.3s;
    width: 300px;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.article-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-cat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.article-body {
    padding: 25px;
}

.article-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid transparent;
}

.article-card:hover .read-more {
    border-bottom-color: var(--gold);
    color: var(--gold);
}

/* --- REGISTER / CASTING --- */
.casting-section {
    background: var(--text-main);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.casting-visual {
    position: relative;
    min-height: 500px;
}

.casting-visual img {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.casting-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.casting-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.casting-content h2 em { color: var(--gold); font-style: normal; }

.casting-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.input-group {
    position: relative;
}

.casting-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    transition: 0.3s;
}

.casting-input:focus {
    border-bottom-color: var(--gold);
}

.casting-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.submit-btn {
    margin-top: 20px;
    padding: 15px 40px;
    background: var(--gold);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #fff;
    color: var(--text-main);
}

/* --- FOOTER --- */
footer {
    background: #fff;
    padding: 80px 8% 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: #999;
    font-size: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; height: auto; padding-top: 120px; }
    .hero-content { padding: 0 5%; order: 2; }
    .hero-visual { height: 50vh; order: 1; }
    .about { grid-template-columns: 1fr; }
    .casting-section { grid-template-columns: 1fr; }
    .casting-visual { min-height: 300px; }
    .casting-content { padding: 50px 5%; }
    .articles-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; } /* Simplified mobile nav for demo */
    .model-img{height: 150px; width: 120px;}
    .model-card{width: 120px;}
    .article-thumb{ height: 100px; width: 200px;}
    .article-card{width: 200px;}
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 40px; }
}