/* =========================
   AIREAL PROD.
   Luxury Cinematic Style
========================= */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background: #050505;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    overflow-x: hidden;

}



::selection {

    background: #c6a15b;

    color: #050505;

}


/* =========================
   NAVIGATION
========================= */


nav {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    padding: 25px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 100;

    background:

    linear-gradient(
        rgba(5,5,5,.7),
        transparent
    );

    backdrop-filter: blur(10px);

}



.logo-container {

    display: flex;

    align-items: center;

}



.logo-image {

    width: 75px;

    height: 75px;

    object-fit: contain;

    border-radius: 12px;

}



.links {

    display: flex;

    gap: 40px;

}



.links a {

    color: white;

    text-decoration: none;

    font-size: 15px;

    letter-spacing: 1px;

    transition: .3s;

}



.links a:hover {

    color: #c6a15b;

}



/* =========================
   HERO SECTION
========================= */


.hero {

    height: 100vh;

    min-height: 700px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    overflow: hidden;

}



.hero-image {

    position: absolute;

    width: 100%;

    height: 100%;

    object-fit: cover;

    animation: slowZoom 20s infinite alternate;

}



@keyframes slowZoom {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.08);

    }

}



.hero-overlay {

    position: absolute;

    inset: 0;

    background:

    linear-gradient(

        rgba(0,0,0,.35),

        rgba(5,5,5,1)

    );

}



.hero-text {

    position: relative;

    z-index: 2;

    max-width: 950px;

    padding: 20px;

}



.small {

    color: #c6a15b;

    font-size: 12px;

    letter-spacing: 6px;

    margin-bottom: 35px;

}



h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 8vw, 110px);

    line-height: .95;

    font-weight: 700;

    letter-spacing: -3px;

}



.hero-text p:not(.small) {

    margin: 40px auto;

    max-width: 700px;

    color: #d5d5d5;

    font-size: 22px;

    line-height: 1.6;

}



.hero-text a {

    display: inline-block;

    padding: 18px 45px;

    background: #c6a15b;

    color: #050505;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .4s;

}



.hero-text a:hover {

    transform: translateY(-5px);

    box-shadow:

    0 15px 40px rgba(198,161,91,.35);

}



/* =========================
   GENERAL SECTIONS
========================= */


.section {

    padding: 150px 8%;

    text-align: center;

}



h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 1;

    margin-bottom: 70px;

    letter-spacing: -2px;

}



/* =========================
   PORTFOLIO GALLERY
========================= */


.gallery {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;

}



.gallery img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 25px;

    transition: .6s;

}



.gallery img:hover {

    transform: translateY(-15px);

    filter: brightness(1.15);

}



/* =========================
   BEFORE AFTER
========================= */


.comparison {

    display: flex;

    justify-content: center;

    gap: 40px;

}



.comparison div {

    width: 45%;

}



.comparison img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 25px;

}



.comparison p {

    margin-top: 20px;

    color:#c6a15b;

    letter-spacing: 3px;

    text-transform: uppercase;

}



/* =========================
   GLASS CARDS
========================= */


.steps {

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

}



.glass {

    width:320px;

    padding:45px 35px;

    background:

    rgba(255,255,255,.05);

    border:

    1px solid rgba(255,255,255,.12);

    border-radius:25px;

    backdrop-filter:blur(20px);

    transition:.4s;

}



.glass:hover {

    transform:translateY(-10px);

    border-color:#c6a15b;

}



.glass h3:first-child {

    color:#c6a15b;

    font-size:40px;

}



.glass h3 {

    margin-bottom:20px;

}



.glass p {

    color:#aaa;

    line-height:1.6;

}



/* =========================
   PRICING
========================= */


.featured {

    transform:scale(1.05);

    border:

    1px solid #c6a15b;

}



.featured:hover {

    transform:

    scale(1.05)

    translateY(-10px);

}



/* =========================
   CONTACT FORM
========================= */


.contact-section {

    position:relative;

    padding:170px 8%;

    background:

    linear-gradient(

        rgba(0,0,0,.8),

        rgba(0,0,0,.9)

    ),

    url("assets/form.jpg");

    background-size:cover;

    background-position:center;

}



.contact-content {

    position:relative;

    z-index:2;

}



form {

    max-width:550px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:18px;

}



input,
textarea {

    background:

    rgba(255,255,255,.08);

    border:

    1px solid rgba(255,255,255,.2);

    color:white;

    padding:20px;

    border-radius:15px;

    font-size:16px;

    backdrop-filter:blur(10px);

}



input::placeholder,
textarea::placeholder {

    color:#aaa;

}



textarea {

    height:160px;

    resize:none;

}



button {

    padding:20px;

    border:none;

    border-radius:50px;

    background:#c6a15b;

    color:#050505;

    font-weight:700;

    font-size:16px;

    cursor:pointer;

    transition:.4s;

}



button:hover {

    transform:translateY(-5px);

    box-shadow:

    0 15px 40px rgba(198,161,91,.4);

}



/* =========================
   FOOTER
========================= */


footer {

    padding:50px;

    text-align:center;

    color:#777;

    letter-spacing:3px;

    font-size:12px;

}



/* =========================
   MOBILE
========================= */


@media(max-width:900px){


.links {

    display:none;

}


.gallery {

    grid-template-columns:1fr;

}


.gallery img {

    height:400px;

}


.comparison {

    display:block;

}


.comparison div {

    width:100%;

    margin-bottom:40px;

}


.comparison img {

    height:400px;

}


.section {

    padding:100px 6%;

}


h2 {

    margin-bottom:40px;

}


.hero-text p:not(.small){

    font-size:18px;

}


}