/* ==========================================
   LUMIÈRE BUDAPEST - style.css (v1)
========================================== */

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:"Inter",sans-serif;
    background:#111;
    color:#fff;
    overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 80px;
    z-index:1000;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(16px);
    transition:.35s;
}
.navbar.scrolled{
    background:rgba(15,15,15,.9);
    padding:18px 80px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.logo{display:flex;flex-direction:column}
.logo-script{
    font-family:"Cormorant Garamond",serif;
    font-style:italic;
    font-size:42px;
    color:#C8A96A;
    line-height:1;
}
.logo-city{
    letter-spacing:6px;
    text-transform:uppercase;
    font-size:12px;
}
nav{display:flex;gap:40px}
nav a{
    position:relative;
    transition:.3s;
}
nav a::after{
    content:"";
    position:absolute;
    left:0;bottom:-6px;
    width:0;height:1px;
    background:#C8A96A;
    transition:.3s;
}
nav a:hover{color:#C8A96A}
nav a:hover::after{width:100%}
.button{
    padding:14px 30px;
    border:1px solid #C8A96A;
    color:#C8A96A;
    transition:.3s;
}
.button:hover{
    background:#C8A96A;
    color:#111;
}

/* HAMBURGER (mobil menü gomb) */
.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    width:32px;
    cursor:pointer;
    z-index:1100;
}
.hamburger span{
    display:block;
    width:100%;
    height:2px;
    background:#fff;
    transition:.3s;
}
.hamburger.open span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2){
    opacity:0;
}
.hamburger.open span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* MOBIL NAV (lenyíló menü) */
@media(max-width:992px){
    nav{
        position:fixed;
        top:0;right:0;
        height:100vh;
        width:min(320px,80vw);
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        gap:32px;
        padding:0 48px;
        background:rgba(15,15,15,.97);
        transform:translateX(100%);
        transition:.4s ease;
        z-index:1050;
    }
    nav.open{
        transform:translateX(0);
    }
    .hamburger{
        display:flex;
    }
}

/* HERO */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero-slider{
    position:absolute;
    inset:0;
}
.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.08) translateX(40px);
    transition:
        opacity 1.8s ease,
        transform 8s ease;
}
.slide.active{
    opacity:1;
    transform:scale(1) translateX(0) translateY(0);
}
.slide.move-right{
    transform:scale(1.08) translateX(40px);
}
.slide.move-left{
    transform:scale(1.08) translateX(-40px);
}
.slide.move-up{
    transform:scale(1.08) translateY(40px);
}
.slide.move-down{
    transform:scale(1.08) translateY(-40px);
}
.slide.move-right.active,
.slide.move-left.active,
.slide.move-up.active,
.slide.move-down.active{
    transform:scale(1) translateX(0) translateY(0);
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.42));
}
.hero-content{
    position:relative;
    z-index:5;
    padding-left:10%;
    max-width:760px;
}
.eyebrow{
    display:block;
    color:#C8A96A;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:24px;
    font-size:.9rem;
}
.script{
    display:block;
    font-family:"Cormorant Garamond",serif;
    font-style:italic;
    font-size:clamp(5rem,10vw,8rem);
    line-height:.9;
}
.city{
    display:block;
    margin-top:10px;
    text-transform:uppercase;
    letter-spacing:12px;
    font-size:clamp(2rem,5vw,4rem);
}
.lead{
    max-width:620px;
    margin:40px 0;
    line-height:1.8;
    color:#ddd;
    font-size:1.15rem;
}
.hero-buttons{
    display:flex;
    gap:20px;
}
.btn-primary,.btn-secondary{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:220px;
    height:58px;
    border:1px solid #C8A96A;
    transition:.35s;
    font-weight:600;
}
.btn-primary{
    background:#C8A96A;
    color:#111;
}
.btn-primary:hover{
    background:transparent;
    color:#fff;
    transform:translateY(-4px);
}
.btn-secondary{
    color:#fff;
}
.btn-secondary:hover{
    background:#C8A96A;
    color:#111;
    transform:translateY(-4px);
}
.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
}
.scroll-indicator span{
    display:block;
    width:2px;
    height:60px;
    background:#C8A96A;
    animation:scroll 2s infinite;
}
@keyframes scroll{
0%{opacity:0;transform:translateY(-15px)}
50%{opacity:1}
100%{opacity:0;transform:translateY(15px)}
}
@media(max-width:992px){
.navbar{padding:20px 24px}
.button{display:none}
.hero-content{padding:0 24px}
.hero-buttons{flex-direction:column;align-items:flex-start}
}

/* SERVICES */
.services{
    padding:140px 10% 120px;
    background:#0d0d0d;
}
.section-head{
    text-align:center;
    margin-bottom:70px;
}
.section-head .eyebrow{
    text-align:center;
}
.section-head h2{
    margin-top:10px;
}
.section-head .script{
    font-family:"Cormorant Garamond",serif;
    font-style:italic;
    font-size:clamp(2.5rem,5vw,3.5rem);
    font-weight:500;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    max-width:1100px;
    margin:0 auto;
}
.service-card{
    text-align:center;
    padding:50px 30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}
.service-card:hover{
    border-color:#C8A96A;
    transform:translateY(-6px);
}
.service-icon{
    width:48px;
    height:48px;
    color:#C8A96A;
    margin-bottom:28px;
}
.service-card h3{
    font-family:"Cormorant Garamond",serif;
    font-weight:600;
    font-size:1.5rem;
    margin-bottom:16px;
}
.service-card p{
    color:#bbb;
    line-height:1.7;
    font-size:.95rem;
}
@media(max-width:900px){
.services{padding:100px 6% 90px}
.services-grid{grid-template-columns:1fr;gap:36px}
}

/* PORTFOLIO */
.portfolio{
    padding:20px 10% 150px;
    background:#0d0d0d;
}

/* PORTFÓLIÓ ÉPÍTÉSE ALATT — ideiglenes felhívás kép-rács helyett */
.portfolio-building{
    max-width:640px;
    margin:0 auto;
    text-align:center;
    padding:70px 50px;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(200,169,106,.04);
}
.portfolio-building-icon{
    width:48px;
    height:48px;
    margin-bottom:28px;
}
.portfolio-building h3{
    font-family:"Cormorant Garamond",serif;
    font-weight:600;
    font-size:clamp(1.6rem,3vw,2.1rem);
    margin-bottom:20px;
    color:#fff;
}
.portfolio-building p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:34px;
    font-size:1rem;
}
.portfolio-building p strong{
    color:#C8A96A;
    font-weight:600;
}
@media(max-width:600px){
.portfolio-building{padding:50px 26px}
}
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:220px;
    gap:14px;
    max-width:1200px;
    margin:0 auto;
}
.portfolio-item{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    background:#1a1a1a;
}
.portfolio-item.tall{
    grid-row:span 2;
}
.portfolio-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}
.portfolio-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
    transition:.35s;
}
.portfolio-item:hover::after{
    background:rgba(200,169,106,.15);
}
.portfolio-item:hover img{
    transform:scale(1.06);
}
@media(max-width:900px){
.portfolio-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:180px;
}
}
@media(max-width:560px){
.portfolio-grid{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
}
.portfolio-item.tall{grid-row:span 1}
}

/* LIGHTBOX */
.lightbox{
    position:fixed;
    inset:0;
    background:rgba(8,8,8,.96);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:2000;
}
.lightbox.open{
    display:flex;
}
.lightbox-image{
    max-width:85vw;
    max-height:85vh;
    object-fit:contain;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next{
    position:absolute;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}
.lightbox-close{
    top:28px;
    right:38px;
    font-size:38px;
    line-height:1;
}
.lightbox-close:hover{
    color:#C8A96A;
}
.lightbox-prev,
.lightbox-next{
    top:50%;
    transform:translateY(-50%);
    font-size:48px;
    padding:10px 16px;
}
.lightbox-prev{left:20px}
.lightbox-next{right:20px}
.lightbox-prev:hover,
.lightbox-next:hover{
    color:#C8A96A;
}
@media(max-width:600px){
.lightbox-close{top:16px;right:20px;font-size:32px}
.lightbox-prev,.lightbox-next{font-size:36px}
}

/* ABOUT */
.about{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:80px;
    align-items:center;
    padding:130px 10%;
    background:#111;
}
.about-image{
    aspect-ratio:4/5;
    overflow:hidden;
}
.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.about-content .script{
    font-family:"Cormorant Garamond",serif;
    font-style:italic;
    font-weight:500;
    font-size:clamp(2rem,4vw,3rem);
    display:block;
    margin:14px 0 28px;
    line-height:1.15;
}
.about-content p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:20px;
    max-width:520px;
}
.about-stats{
    display:flex;
    gap:50px;
    margin-top:40px;
}
.stat{
    display:flex;
    flex-direction:column;
}
.stat-number{
    font-family:"Cormorant Garamond",serif;
    font-size:2.4rem;
    color:#C8A96A;
    line-height:1;
}
.stat-label{
    margin-top:8px;
    font-size:.8rem;
    color:#999;
    letter-spacing:.5px;
}
@media(max-width:900px){
.about{
    grid-template-columns:1fr;
    padding:100px 6%;
    gap:40px;
}
.about-stats{flex-wrap:wrap;gap:32px}
}

/* CONTACT */
.contact{
    padding:130px 10% 150px;
    background:#0d0d0d;
}
.contact-wrapper{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:70px;
    max-width:1100px;
    margin:0 auto;
}
.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}
.contact-form input,
.contact-form textarea{
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:12px 4px;
    font-family:"Inter",sans-serif;
    font-size:.95rem;
    transition:.3s;
    resize:vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#888;
}
.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-bottom-color:#C8A96A;
}
.contact-form .btn-primary{
    margin-top:10px;
    align-self:flex-start;
    min-width:200px;
    border:1px solid #C8A96A;
    cursor:pointer;
    font-family:"Inter",sans-serif;
}
.form-status{
    font-size:.85rem;
    color:#C8A96A;
    min-height:20px;
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:32px;
    padding-left:20px;
    border-left:1px solid rgba(255,255,255,.08);
}
.info-item{
    display:flex;
    flex-direction:column;
    gap:6px;
}
.info-label{
    font-size:.75rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#999;
}
.info-item a{
    color:#fff;
    transition:.3s;
    font-size:1.05rem;
}
.info-item a:hover{
    color:#C8A96A;
}
@media(max-width:900px){
.contact{padding:100px 6% 110px}
.contact-wrapper{
    grid-template-columns:1fr;
    gap:50px;
}
.contact-info{
    border-left:none;
    border-top:1px solid rgba(255,255,255,.08);
    padding-left:0;
    padding-top:30px;
    flex-direction:row;
    flex-wrap:wrap;
}
}
@media(max-width:560px){
.form-row{grid-template-columns:1fr}
}

/* SCROLL REVEAL — csak akkor rejt el bármit, ha a JS ténylegesen fut és
   sikeresen jelezte, hogy kész animálni (html.js-ready osztály). Így ha a
   JS bármi okból nem fut le, a tartalom simán, animáció nélkül látszik,
   nem tűnik el. */
html.js-ready .reveal{
    opacity:0;
    transform:translateY(36px);
    transition:opacity .8s ease, transform .8s ease;
}
html.js-ready .reveal-left{
    transform:translateX(-40px);
}
html.js-ready .reveal-right{
    transform:translateX(40px);
}
.reveal.in-view{
    opacity:1 !important;
    transform:translateY(0) translateX(0) !important;
}

/* apró egymás utáni késleltetés a kártyáknál/rácsos elemeknél */
.services-grid .reveal:nth-child(2){transition-delay:.12s}
.services-grid .reveal:nth-child(3){transition-delay:.24s}
.portfolio-grid .reveal:nth-child(2){transition-delay:.06s}
.portfolio-grid .reveal:nth-child(3){transition-delay:.12s}
.portfolio-grid .reveal:nth-child(4){transition-delay:.18s}
.portfolio-grid .reveal:nth-child(5){transition-delay:.24s}
.portfolio-grid .reveal:nth-child(6){transition-delay:.3s}
.portfolio-grid .reveal:nth-child(7){transition-delay:.36s}
.portfolio-grid .reveal:nth-child(8){transition-delay:.42s}
.portfolio-grid .reveal:nth-child(9){transition-delay:.48s}

/* akinek "reduced motion" van beállítva a rendszerén, annak ne animáljunk */
@media (prefers-reduced-motion: reduce){
.reveal{
    opacity:1;
    transform:none;
    transition:none;
}
}