/* =========================
   LUXORA - STYLE
   UIXO Studio
========================= */

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

body{
    font-family: "Vazirmatn", sans-serif;
    background:#0b0b0b;
    color:#f5f5f5;
    overflow-x:hidden;
    line-height:1.7;
}

a{
    color:inherit;
    text-decoration:none;
}

/* ===== CONTAINER ===== */
.container{
    width:min(92%,1200px);
    margin-inline:auto;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    width:100%;
    padding:20px 0;
    backdrop-filter: blur(10px);
    background:rgba(10,10,10,0.6);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:20px;
    font-weight:700;
    letter-spacing:2px;
    color:#d8b46a;
}

/* NAV */
.nav{
    display:flex;
    gap:25px;
    font-size:14px;
    color:#cfcfcf;
}

.nav a{
    color:#cfcfcf;   /* 👈 خیلی مهم */
    text-decoration:none;
    transition:0.3s;
}

.nav a:hover{
    color:#d8b46a;
}

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

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:100px;
    position:relative;
}

/* نور پس‌زمینه لوکس */
.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(201,169,106,0.15), transparent 60%);
    top:-100px;
    right:-150px;
    filter:blur(40px);
}

.hero__inner{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    align-items:center;
    gap:40px;
}

.hero__subtitle{
    color:#d8b46a;
    font-size:14px;
    margin-bottom:10px;
    display:inline-block;
}

.hero__title{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero__text{
    color:#b8b8b8;
    max-width:450px;
    margin-bottom:30px;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:14px 32px;
    background:#d8b46a;
    color:#111;
    font-weight:600;
    border-radius:50px;
    transition:0.4s ease;
    border:1px solid transparent;
}

.btn:hover{
    transform:translateY(-3px);
    background:transparent;
    color:#d8b46a;
    border-color:#d8b46a;
}

/* IMAGE PLACEHOLDER */
.hero__image{
    height:500px;
    background:linear-gradient(135deg,#1a1a1a,#0f0f0f);
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.05);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:900px){

    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:70%;
        height:100vh;
        background:rgba(10,10,10,0.95);
        backdrop-filter: blur(10px);
        flex-direction:column;
        padding:90px 30px;
        gap:25px;
        transition:0.5s ease;
        z-index:1500;
    }

    .nav.active{
        right:0;
    }

    .nav a{
        font-size:18px;
        color:#f5f5f5; /* 👈 خیلی مهم */
    }
}

/* =========================
   HERO - CINEMATIC UPGRADE
========================= */

/* لایه نور عمیق‌تر */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:100px;
    position:relative;
    overflow:hidden;
}

/* وینیت سینمایی */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.85));
    pointer-events:none;
}

/* نور طلایی نرم */
.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle, rgba(201,169,106,0.18), transparent 60%);
    top:-200px;
    right:-200px;
    filter:blur(60px);
}

/* محتوا */
.hero__inner{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    align-items:center;
    gap:50px;
    position:relative;
    z-index:2;
}

/* زیرتیتر */
.hero__subtitle{
    color:#d8b46a;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:12px;
    display:inline-block;
    opacity:0;
    transform:translateY(10px);
    animation:fadeUp .8s ease forwards;
}

/* تیتر اصلی (سنگین‌تر و برندتر) */
.hero__title{
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:600;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 1s ease forwards;
    animation-delay:.2s;
}

/* متن */
.hero__text{
    color:#b8b8b8;
    max-width:480px;
    margin-bottom:30px;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 1s ease forwards;
    animation-delay:.35s;
}

/* دکمه */
.btn{
    display:inline-block;
    padding:14px 30px;
    background:#d8b46a;
    color:#111;
    font-weight:600;
    border-radius:40px;
    transition:0.4s;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 1s ease forwards;
    animation-delay:.5s;
}

.btn:hover{
    transform:translateY(-4px);
    background:#e6c27a;
}

/* تصویر عطر - حس لوکس واقعی */
.hero__image{
    height:520px;
    border-radius:24px;
    background:
        linear-gradient(135deg,#1a1a1a,#0f0f0f);
    border:1px solid rgba(255,255,255,0.06);
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,0.6);
    opacity:0;
    transform:scale(0.95);
    animation:fadeZoom 1.2s ease forwards;
    animation-delay:.3s;
}

/* افکت نور روی تصویر */
.hero__image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,transparent,rgba(201,169,106,0.08),transparent);
}

/* انیمیشن‌ها */
@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeZoom{
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* =========================
   COLLECTION SECTION
========================= */

.collection{
    padding:120px 0;
    position:relative;
}

/* عنوان بخش */
.section__head{
    text-align:center;
    margin-bottom:60px;
}

.section__head span{
    color:#d8b46a;
    font-size:13px;
    letter-spacing:2px;
}

.section__head h2{
    font-size:42px;
    margin:10px 0;
}

.section__head p{
    color:#b8b8b8;
    max-width:500px;
    margin:0 auto;
}

/* گرید کارت‌ها */
.collection__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* کارت */
.card{
    background:#111;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

/* افکت نور روی کارت */
.card::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:radial-gradient(circle, rgba(201,169,106,0.15), transparent 60%);
    top:-80px;
    left:-80px;
    filter:blur(30px);
    opacity:0;
    transition:0.4s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:rgba(201,169,106,0.3);
}

.card:hover::before{
    opacity:1;
}

.card h3{
    color:#fff;
    margin-bottom:10px;
    font-size:20px;
}

.card p{
    color:#b8b8b8;
    font-size:14px;
    margin-bottom:20px;
}

.card span{
    font-size:12px;
    color:#d8b46a;
    border:1px solid rgba(201,169,106,0.3);
    padding:5px 10px;
    border-radius:20px;
}

/* ریسپانسیو */
@media (max-width:900px){
    .collection__grid{
        grid-template-columns:1fr;
    }

    .section__head h2{
        font-size:32px;
    }
}

/* =========================
   WHY LUXORA SECTION
========================= */

.why{
    padding:120px 0;
    position:relative;
}

/* گرید اصلی */
.why__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* متن سمت چپ */
.why__subtitle{
    color:#d8b46a;
    font-size:13px;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:10px;
}

.why__title{
    font-size:40px;
    margin-bottom:20px;
}

.why__text{
    color:#b8b8b8;
    max-width:450px;
}

/* کارت‌ها */
.why__cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.why__card{
    background:#111;
    padding:20px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.why__card:hover{
    transform:translateY(-6px);
    border-color:rgba(201,169,106,0.3);
}

.why__card h3{
    font-size:16px;
    margin-bottom:8px;
    color:#fff;
}

.why__card p{
    font-size:13px;
    color:#b8b8b8;
}

/* ریسپانسیو */
@media (max-width:900px){
    .why__grid{
        grid-template-columns:1fr;
    }

    .why__cards{
        grid-template-columns:1fr;
    }

    .why__title{
        font-size:30px;
    }
}

/* =========================
   OFFER SECTION
========================= */

.offer{
    padding:120px 0;
    position:relative;
}

/* باکس اصلی */
.offer__box{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:center;
    background:#111;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:24px;
    padding:40px;
    position:relative;
    overflow:hidden;
}

/* نور طلایی پشت */
.offer__box::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(201,169,106,0.18), transparent 60%);
    top:-200px;
    left:-200px;
    filter:blur(60px);
}

/* badge */
.offer__badge{
    display:inline-block;
    font-size:12px;
    color:#111;
    background:#d8b46a;
    padding:5px 12px;
    border-radius:20px;
    margin-bottom:15px;
    font-weight:600;
}

/* title */
.offer__title{
    font-size:42px;
    margin-bottom:15px;
}

/* text */
.offer__text{
    color:#b8b8b8;
    margin-bottom:20px;
    max-width:450px;
}

/* meta */
.offer__meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.offer__meta li{
    font-size:13px;
    color:#d8b46a;
    border:1px solid rgba(201,169,106,0.2);
    padding:6px 10px;
    border-radius:20px;
}

/* image placeholder */
.offer__image{
    height:350px;
    border-radius:20px;
    background:linear-gradient(135deg,#1a1a1a,#0f0f0f);
    border:1px solid rgba(255,255,255,0.05);
}

/* responsive */
@media (max-width:900px){
    .offer__box{
        grid-template-columns:1fr;
        text-align:center;
    }

    .offer__text{
        margin-inline:auto;
    }

    .offer__meta{
        justify-content:center;
    }
}

/* =========================
   BLOG SECTION
========================= */

.blog{
    padding:120px 0;
}

/* grid */
.blog__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* card */
.blog__card{
    background:#111;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

/* نور طلایی */
.blog__card::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:radial-gradient(circle, rgba(201,169,106,0.12), transparent 60%);
    top:-100px;
    right:-100px;
    filter:blur(40px);
    opacity:0;
    transition:0.4s;
}

.blog__card:hover{
    transform:translateY(-8px);
    border-color:rgba(201,169,106,0.3);
}

.blog__card:hover::before{
    opacity:1;
}

.blog__card h3{
    font-size:18px;
    margin-bottom:10px;
    color:#fff;
}

.blog__card p{
    font-size:14px;
    color:#b8b8b8;
    margin-bottom:15px;
}

.blog__card a{
    font-size:13px;
    color:#d8b46a;
    transition:0.3s;
}

.blog__card a:hover{
    color:#e6c27a;
}

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

/* =========================
   FOOTER
========================= */

.footer{
    padding:80px 0 30px;
    background:#0a0a0a;
    border-top:1px solid rgba(255,255,255,0.05);
    margin-top:80px;
}

/* grid */
.footer__grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

/* brand */
.footer__brand h2{
    color:#d8b46a;
    margin-bottom:10px;
    font-size:24px;
}

.footer__brand p{
    color:#b8b8b8;
    max-width:300px;
}

/* links */
.footer__links h3,
.footer__contact h3{
    margin-bottom:15px;
    font-size:16px;
    color:#fff;
}

.footer__links a{
    display:block;
    margin-bottom:8px;
    color:#b8b8b8;
    transition:0.3s;
    font-size:14px;
}

.footer__links a:hover{
    color:#d8b46a;
}

/* contact */
.footer__contact p{
    color:#b8b8b8;
    font-size:14px;
    margin-bottom:8px;
}

/* bottom */
.footer__bottom{
    text-align:center;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.05);
    color:#777;
    font-size:13px;
}

/* responsive */
@media (max-width:900px){
    .footer__grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer__brand p{
        margin-inline:auto;
    }
}

/* =========================
   SCROLL ANIMATION BASE
========================= */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

body{
    font-family:"Vazirmatn", sans-serif;
    background:#0b0b0b;
    color:#f5f5f5;
    overflow-x:hidden;
    line-height:1.7;

    /* 👇 حس بهتر */
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-btn{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-btn span{
    width:25px;
    height:2px;
    background:#d8b46a;
    transition:0.4s;
}

/* موبایل */
@media (max-width:900px){

    .menu-btn{
        display:flex;
    }

    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:70%;
        height:100vh;
        background:#0b0b0b;
        flex-direction:column;
        padding:80px 30px;
        gap:20px;
        transition:0.5s ease;
        border-left:1px solid rgba(255,255,255,0.05);
    }

    .nav.active{
        right:0;
    }
}

/* =========================
   HAMBURGER TO X
========================= */

.menu-btn{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:2000;
}

.menu-btn span{
    width:26px;
    height:2px;
    background:#d8b46a;
    transition:0.4s ease;
}

/* حالت فعال (X) */
.menu-btn.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
}

/* موبایل */
@media (max-width:900px){

    .menu-btn{
        display:flex;
    }

    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:70%;
        height:100vh;
        background:rgba(10,10,10,0.95);
        backdrop-filter: blur(10px);
        flex-direction:column;
        padding:90px 30px;
        gap:25px;
        transition:0.5s ease;
        border-left:1px solid rgba(255,255,255,0.05);
        z-index:1500;
    }

    .nav.active{
        right:0;
    }

    .nav a{
        font-size:18px;
        opacity:0.9;
        transition:0.3s;
    }

    .nav a:hover{
        color:#d8b46a;
        padding-right:10px;
    }
}

section{
    padding:100px 0;
}

h1,h2,h3{
    letter-spacing:-0.5px;
}

section{
    padding:100px 0;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3{
    letter-spacing:-0.5px;
}

h1{
    font-weight:700;
}

h2{
    font-weight:600;
}

h3{
    font-weight:500;
}

p{
    line-height:1.9;
    color:#b8b8b8;
}

/* ===== BUTTON POLISH ===== */
.btn{
    display:inline-block;
    padding:14px 32px;
    background:#d8b46a;
    color:#111;
    font-weight:600;
    border-radius:50px;
    transition:0.4s ease;
    border:1px solid transparent;
}

.btn:hover{
    transform:translateY(-3px);
    background:transparent;
    color:#d8b46a;
    border-color:#d8b46a;
}

/* ===== SMOOTH HOVER FOR ALL CARDS ===== */
.card,
.blog__card,
.why__card{
    transition:0.4s cubic-bezier(0.4,0,0.2,1);
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:0.9s cubic-bezier(0.4,0,0.2,1);
    will-change: transform, opacity;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   MOBILE HEADER FIX
========================= */

@media (max-width:900px){

    .header__inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .logo{
        font-size:18px;
    }

    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:75%;
        height:100vh;
        background:rgba(10,10,10,0.96);
        backdrop-filter: blur(12px);
        flex-direction:column;
        padding:100px 30px;
        gap:25px;
        transition:0.5s ease;
        z-index:1500;
    }

    .nav.active{
        right:0;
    }

    .nav a{
        font-size:18px;
        color:#f5f5f5;
    }
}
@media (max-width:900px){

    .hero__title{
        font-size:34px;
        line-height:1.3;
    }

    .hero__text{
        font-size:14px;
    }

    .hero__image{
        height:300px;
        margin-top:30px;
    }
}

@media (max-width:900px){

    .collection__grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .card{
        padding:20px;
    }
}

@media (max-width:900px){

    .why__title{
        font-size:26px;
    }

    .why__cards{
        grid-template-columns:1fr;
    }
}

@media (max-width:900px){

    .offer__box{
        grid-template-columns:1fr;
        padding:25px;
        text-align:center;
    }

    .offer__title{
        font-size:28px;
    }

    .offer__meta{
        justify-content:center;
    }

    .offer__image{
        height:250px;
    }
}

@media (max-width:900px){

    .blog__grid{
        grid-template-columns:1fr;
    }
}

section{
    padding:110px 0;
}

.container{
    width:min(92%,1150px);
}

.card,
.blog__card,
.why__card,
.offer__box{
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

*{
    scroll-behavior:smooth;
}

.card,
.blog__card,
.why__card,
.btn{
    transition:0.5s cubic-bezier(0.4,0,0.2,1);
}

:root{
    --gold:#d8b46a;
    --bg:#0b0b0b;
    --text:#f5f5f5;
    --muted:#b8b8b8;
}

a, button{
    transition:0.3s ease;
}

body{
    opacity:0;
    transition:0.6s ease;
}

body.loaded{
    opacity:1;
}

@media (min-width:768px) and (max-width:1024px){

    .hero{
        min-height:auto;
        padding-top:120px;
        padding-bottom:40px;
    }

    .hero__inner{
        align-items:center;
        gap:25px;
    }

}

/* تنظیم کلی تصاویر داخل کارت‌ها */
.card img {
    width: 100%;
    height: 200px; /* یا هر ارتفاعی که دوست داری */
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

/* افکت زوم ملایم هنگام هاور روی کارت */
.card:hover img {
    transform: scale(1.05);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* این باعث میشه تصویر توی اون باکس 520 پیکسلی که گفتی، عالی بشینه */
}


.offer__image {
    height: 350px;
    border-radius: 20px;
    overflow: hidden; 
    border: 1px solid rgba(255,255,255,0.05);
}

.offer__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .offer__image {
        height: 250px;
    }
}
