/* =====================================================
   PROJECT 9 | MUSTARD SUNSET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Helvetica,Arial,sans-serif;
    color:#111;
    background:#fff;
    line-height:1.5;
    overflow-x:hidden;

}

/* ===========================================
HEADER
=========================================== */

.project-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:30px 60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    z-index:999;

    border-bottom:1px solid #eee;

}

.logo{

    text-decoration:none;

    color:#111;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

nav{

    display:flex;

    gap:40px;

}

nav a{

    text-decoration:none;

    color:#111;

    font-size:14px;

    transition:.3s;

}

nav a:hover{

    color:#ff8c66;

}


/* ===========================================
HERO
=========================================== */

.hero{

    width:90%;

    max-width:1400px;

    margin:auto;

    padding-top:220px;

    padding-bottom:170px;

}

.hero span{

    display:block;

    margin-bottom:30px;

    font-size:13px;

    letter-spacing:3px;

    color:#999;

    text-transform:uppercase;

}

.hero h1{

    font-size:clamp(50px,7vw,95px);

    line-height:1.05;

    font-weight:500;

    max-width:1000px;

}


/* ===========================================
SERVICIOS
=========================================== */

.service{

    width:90%;

    max-width:1400px;

    margin:auto;

    padding:150px 0;

    border-top:1px solid #ececec;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:120px;

    align-items:center;

}

.service-info{

    position:sticky;

    top:150px;

}

.number{

    display:block;

    margin-bottom:20px;

    color:#999;

    letter-spacing:2px;

    font-size:14px;

}

.service-info h2{

    font-size:clamp(40px,4vw,70px);

    line-height:1.1;

    margin-bottom:40px;

    font-weight:500;

}

.service-info p{

    max-width:520px;

    font-size:19px;

    color:#555;

    margin-bottom:50px;

}


/* ===========================================
BOTÓN
=========================================== */

.button{

    display:inline-block;

    text-decoration:none;

    color:#111;

    font-size:16px;

    font-weight:600;

    padding-bottom:8px;

    border-bottom:2px solid #111;

    transition:.35s;

}

.button:hover{

    color:#ff8c66;

    border-color:#ff8c66;

    padding-left:12px;

}


/* ===========================================
IMÁGENES
=========================================== */

.service-images{

    display:flex;

    flex-direction:column;

    gap:80px;

}

.service-images img{

    width:100%;

    display:block;

    border-radius:12px;

    transition:.45s;

}

.service-images img:first-child{

    width:90%;

}

.service-images img:last-child{

    width:82%;

    margin-left:auto;

}

.service-images img:hover{

    transform:scale(1.02);

}


/* ===========================================
CONTACTO
=========================================== */

.contact{

    width:90%;

    max-width:1000px;

    margin:180px auto;

    padding-top:120px;

    border-top:1px solid #eee;

}

.contact h2{

    font-size:55px;

    margin-bottom:20px;

    font-weight:500;

}

.contact p{

    color:#666;

    margin-bottom:70px;

    font-size:20px;

}

.grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}

input{

    padding:18px;

    border:none;

    border-bottom:1px solid #ddd;

    font-size:16px;

    background:none;

}

textarea{

    width:100%;

    padding:20px;

    border:1px solid #ddd;

    font-size:16px;

    min-height:180px;

    resize:vertical;

    margin-bottom:50px;

}

.contact h3{

    margin-bottom:25px;

    font-size:20px;

    font-weight:500;

}

label{

    display:block;

    margin-bottom:18px;

    font-size:17px;

    cursor:pointer;

}

button{

    margin-top:50px;

    padding:18px 45px;

    background:#111;

    color:#fff;

    border:none;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

button:hover{

    background:#ff8c66;

}


/* ===========================================
FOOTER
=========================================== */

footer{

    padding:80px;

    text-align:center;

    color:#888;

    font-size:14px;

}


/* ===========================================
RESPONSIVE
=========================================== */

@media(max-width:1000px){

.service{

    grid-template-columns:1fr;

    gap:70px;

}

.service-info{

    position:relative;

    top:auto;

}

.hero{

    padding-top:170px;

}

.hero h1{

    font-size:60px;

}

.contact h2{

    font-size:42px;

}

.grid{

    grid-template-columns:1fr;

}

}


@media(max-width:700px){

.project-header{

    padding:25px;

}

nav{

    display:none;

}

.hero{

    width:92%;

}

.hero h1{

    font-size:42px;

}

.service{

    width:92%;

    padding:90px 0;

}

.service-info h2{

    font-size:38px;

}

.service-info p{

    font-size:17px;

}

.service-images{

    gap:30px;

}

.service-images img:first-child{

    width:100%;

}

.service-images img:last-child{

    width:100%;

    margin:0;

}

.contact{

    width:92%;

}

.contact h2{

    font-size:34px;

}

}