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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#0f0f0f;
    color:white;

    padding-top:90px;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;

    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;

    padding:20px 8%;

    background:rgba(0,0,0,.7);
    backdrop-filter:blur(10px);
}

nav{
    justify-self:center;
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
}

.logo img{
    height: 50px;
    transform:scale(2.0);
    width:auto;
    display:block;
}

.logo{
    justify-self:start;
}

.btn-nav{
    text-decoration:none;
    color:black;
    background:#c9a55c;
    padding:12px 20px;
    border-radius:8px;
}

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    background:url("../img/hero.webp");
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    max-width:900px;
    padding:20px;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary{
    background:#c9a55c;
    color:black;

    padding:16px 32px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    border:1px solid white;
    color:white;
    padding:15px 25px;
    text-decoration:none;
    border-radius:8px;
}

section{
    padding:120px 8%;
}

h2{
    text-align:center;
    margin-bottom:60px;
    font-size:2.5rem;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#1c1c1c;
    border-radius:16px;
    overflow:hidden;
}

.service-img{
    height:250px;

    background-size:cover;
    background-position:center;

    transition:.4s;
}

.bodas{
    background-image:url("../img/bodas.webp");
}

.galas{
    background-image:url("../img/galas.webp");
}

.corporativos{
    background-image:url("../img/corporativos.webp");
}

.conciertos{
    background-image:url("../img/conciertos.webp");
}

.card h3{
    padding:25px;

    text-align:center;

    font-size:1.3rem;

    font-weight:600;
}

.card{
    background:#1c1c1c;
    border-radius:16px;
    overflow:hidden;

    transition:.4s;
}

.card:hover{
    transform:translateY(-8px);
}

.card:hover .service-img{
    transform:scale(1.08);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.gallery-item{
    background:#333;
    height:300px;
    border-radius:16px;
}

.cta{
    text-align:center;
    background:#171717;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.cta h2{
    margin-bottom:20px;
}

.cta p{
    margin-bottom:40px;
    max-width:700px;
    line-height:1.7;
    color:#d0d0d0;
}

.contact form{
    max-width:700px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;
    border:none;
    border-radius:10px;
}

button{
    padding:15px;
    border:none;
    border-radius:10px;
    background:#c9a55c;
    cursor:pointer;
}

footer{

    text-align:center;

    padding:40px 20px;

    background:#0a0a0a;

    border-top:1px solid rgba(255,255,255,.08);
}

footer p{

    color:#8a8a8a;

    font-size:.95rem;

    letter-spacing:.5px;
}

.social-bar{
    position:fixed;
    right: 15px;
    top:50%;
    transform:translateY(-50%);

    display:flex;
    flex-direction:column;
    gap:8px;

    z-index:1001;
}

.social-bar a{
    width:50px;
    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#c9a55c;

    color:black;

    text-decoration:none;

    transition:.3s;
}

.social-bar a:hover{
    transform:translateY(-3px) scale(1.05);
}

.social-bar i{
    font-size:1.3rem;
}

.gallery{
    text-align:center;
}

.gallery-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.gallery-stage{

    position:relative;

    width:min(1600px,95vw);
    height:650px;

    overflow:hidden;
}

.gallery-card{

    position:absolute;

    width:900px;
    height:550px;

    top:50%;
    left:50%;

    transform-origin:center;

    transition:
        transform .6s ease,
        opacity .6s ease;

    border-radius:16px;

    overflow:hidden;
}

.gallery-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* EXTREMA IZQUIERDA */

.far-left{

    transform:
        translate(-150%,-50%)
        scale(.65);

    opacity:0;

    z-index:0;
}

.left-card{

    transform:
        translate(-105%,-50%)
        scale(.8);

    opacity:.4;

    z-index:1;
}

.center-card{

    transform:
        translate(-50%,-50%)
        scale(1);

    opacity:1;

    z-index:3;
}

.right-card{

    transform:
        translate(5%,-50%)
        scale(.8);

    opacity:.4;

    z-index:1;
}

.far-right{

    transform:
        translate(50%,-50%)
        scale(.65);

    opacity:0;

    z-index:0;
}

.arrow{

    background:none;
    border:none;

    color:white;

    font-size:3rem;

    cursor:pointer;

    z-index:10;
}

.gallery-dots{

    display:flex;
    justify-content:center;

    gap:8px;

    margin-top:25px;
    margin-bottom:15px;
}

.dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#555;
}

.dot.active{
    background:#c9a55c;
}

.gallery-counter{
    color:#aaa;
}

.service-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.8);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:5000;

    opacity:0;
    pointer-events:none;

    transition:opacity .35s ease;
}

.service-modal.active{

    pointer-events:auto;
}

.service-modal.show{

    opacity:1;
}

.service-modal-content{

    width:min(1200px,90vw);
    height:min(650px,85vh);

    background:#171717;

    border-radius:20px;

    position:relative;

    overflow:hidden;

    opacity:0;

    transform:
        scale(.92)
        translateY(30px);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.service-modal.show
.service-modal-content{

    opacity:1;

    transform:
        scale(1)
        translateY(0);
}

.modal-layout{

    display:grid;
    grid-template-columns:1fr 1fr;

    height:100%;
}

.modal-image{

    overflow:hidden;
}

.modal-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.modal-text{

    padding:60px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.modal-text h3{

    font-size:2.5rem;

    margin-bottom:25px;
}

.modal-text p{

    line-height:1.8;

    color:#d0d0d0;
}

/* ANIMACIONES LATERALES */

.modal-image,
.modal-text{

    opacity:0;

    transition:
        opacity .45s ease,
        transform .45s ease;
}

.modal-left .modal-image{
    transform:translateX(-40px);
}

.modal-left .modal-text{
    transform:translateX(40px);
}

.modal-right .modal-image{
    transform:translateX(40px);
}

.modal-right .modal-text{
    transform:translateX(-40px);
}

.service-modal.show .modal-image,
.service-modal.show .modal-text{

    opacity:1;
    transform:translateX(0);
}

/* BOTÓN CERRAR */

.close-modal{

    position:absolute;

    top:20px;
    right:20px;

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:#c9a55c;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:0;

    cursor:pointer;

    z-index:10;
}

.close-modal i{

    font-size:1rem;
    color:black;

    line-height:1;

    display:block;
}

/* RESPONSIVE */

@media (max-width:900px){

    .service-modal-content{

        width:95vw;
        height:auto;

        max-height:90vh;

        overflow-y:auto;
    }

    .modal-layout{

        grid-template-columns:1fr;
    }

    .modal-image{

        height:300px;
    }

    .modal-text{

        padding:30px;
    }

    .modal-text h3{

        font-size:2rem;
    }
}

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

.experience{

    background:#141414;

    text-align:center;
}

.experience-header{

    max-width:900px;

    margin:0 auto 70px auto;
}

.experience-header h2{

    margin-bottom:25px;
}

.experience-header p{

    color:#cfcfcf;

    line-height:1.8;

    font-size:1.05rem;
}

.experience-grid{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(240px,1fr)
        );

    gap:30px;
}

.experience-card{

    background:#1c1c1c;

    border-radius:18px;

    padding:40px 30px;

    transition:
        transform .35s ease,
        border-color .35s ease;

    border:1px solid
        rgba(201,165,92,.15);
}

.experience-card:hover{

    transform:translateY(-8px);

    border-color:
        rgba(201,165,92,.5);
}

.experience-card i{

    font-size:2rem;

    color:#c9a55c;

    margin-bottom:25px;
}

.experience-card h3{

    margin-bottom:18px;

    font-size:1.25rem;
}

.experience-card p{

    color:#cfcfcf;

    line-height:1.7;
}

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

@media (max-width: 768px){

    /* HEADER */

    header{

        grid-template-columns:1fr;

        gap:20px;

        padding:20px;
    }

    .logo{

        justify-self:center;
    }

    .logo img{

        transform:scale(1.5);
    }

    nav{

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;
    }

    nav a{

        font-size:.95rem;
    }

    /* HERO */

    .hero h1{

        font-size:2.5rem;
    }

    .hero p{

        font-size:1rem;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;
    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        max-width:320px;

        text-align:center;
    }

    /* SECCIONES */

    section{

        padding:90px 20px;
    }

    h2{

        font-size:2rem;
    }

    /* EXPERIENCE */

    .experience-grid{

        grid-template-columns:
            repeat(2,1fr);

        gap:15px;
    }

    .experience-card{

        padding:18px 12px;
    }

    .experience-card i{

        font-size:2rem;
        margin-bottom:15px;
    }

    .experience-card h3{

        font-size:1.1rem;
        margin-bottom:10px;
    }

    .experience-card p{

        font-size:.9rem;
        line-height:1.5;
    }

    /* SERVICIOS */

    .cards{

        grid-template-columns:
            repeat(2,1fr);

        gap:15px;
    }

    .service-img{

        height:140px;
    }

    .card h3{

        padding:15px;

        font-size:1rem;
    }


    /* GALERÍA */

    .gallery-wrapper{

        gap:10px;
    }

    .gallery-stage{

        width:100%;

        height:300px;
    }

    .gallery-card{

        width:85vw;

        height:55vw;

        max-height:300px;
    }

    .center-card{

        transform:
            translate(-50%,-50%)
            scale(1);
    }

    .left-card{

        transform:
            translate(-95%,-50%)
            scale(.75);
    }

    .right-card{

        transform:
            translate(-5%,-50%)
            scale(.75);
    }

    .far-left{

        transform:
            translate(-140%,-50%)
            scale(.6);
    }

    .far-right{

        transform:
            translate(40%,-50%)
            scale(.6);
    }

    .arrow{

        display:none;
    }

    /* MODAL */

    .service-modal-content{

        width:95vw;

        height:auto;

        max-height:90vh;

        overflow-y:auto;
    }

    .modal-layout{

        grid-template-columns:1fr;
    }

    .modal-image{

        height:250px;
    }

    .modal-text{

        padding:30px;
    }

    .modal-text h3{

        font-size:2rem;
    }

    /* CONTACTO */

    .contact form{

        width:100%;
    }

    /* REDES */

    .social-bar{

        bottom:20px;

        top:auto;

        right:50%;

        transform:translateX(50%);

        flex-direction:row;
    }

    .social-bar a{

        width:45px;
        height:45px;
    }
}

/* =========================
   SCROLL ANIMATIONS
========================= */

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.show{

    opacity:1;

    transform:translateY(0);
}

/* Retrasos */

.delay-1{
    transition-delay:.1s;
}

.delay-2{
    transition-delay:.2s;
}

.delay-3{
    transition-delay:.3s;
}

.delay-4{
    transition-delay:.4s;
}

.delay-5{
    transition-delay:.5s;
}

.delay-6{
    transition-delay:.6s;
}

.contact-subtitle{

    max-width:700px;

    margin:0 auto 40px;

    text-align:center;

    color:#d0d0d0;

    line-height:1.7;
}

input,
textarea{

    padding:15px;

    border:1px solid transparent;

    border-radius:10px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

input:focus,
textarea:focus{

    outline:none;

    border-color:#c9a55c;

    box-shadow:
        0 0 15px
        rgba(201,165,92,.25);
}

textarea{

    min-height:140px;

    resize:vertical;
}

.contact-note{

    margin-top:15px;

    text-align:center;

    color:#999;

    font-size:.9rem;
}