@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


/* =========================
   GLOBAL RESET
========================= */


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


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Montserrat',sans-serif;

    color:white;

    min-height:100vh;

    background:
    linear-gradient(
        120deg,
        #050505,
        #1b1b1b,
        #777,
        #111,
        #050505
    );

    background-size:400% 400%;

    animation:chromeBackground 18s ease infinite;

}


/* =========================
   CHROME BACKGROUND ANIMATION
========================= */


@keyframes chromeBackground{

    0%{
        background-position:0% 50%;
    }


    50%{
        background-position:100% 50%;
    }


    100%{
        background-position:0% 50%;
    }

}



/* =========================
   NAVIGATION
========================= */


nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 60px;

    background:rgba(0,0,0,0.85);

    backdrop-filter:blur(12px);

    position:sticky;

    top:0;

    z-index:999;

    border-bottom:1px solid rgba(255,255,255,0.2);

}



/* =========================
   LOGO
========================= */


.logo{

    font-size:34px;

    font-weight:800;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #777777,
        #ffffff
    );

    background-size:200%;

    background-clip:text;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:logoChrome 5s linear infinite;

}



@keyframes logoChrome{

    from{
        background-position:200%;
    }


    to{
        background-position:-200%;
    }

}



/* =========================
   NAV LINKS
========================= */


nav a{

    color:white;

    text-decoration:none;

    margin-left:25px;

    font-weight:600;

    transition:0.3s;

}



nav a:hover{

    color:#bbbbbb;

    text-shadow:0 0 15px white;

}
/* =========================
   HERO SECTION
========================= */


.hero{

    max-width:1200px;

    margin:70px auto;

    padding:70px 40px;

    text-align:center;

    background:rgba(10,10,10,0.85);

    border-radius:25px;

    border:1px solid rgba(255,255,255,0.25);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.7);

    animation:fadeUp 0.8s ease;

}



/* =========================
   PREMIUM HERO BANNER
========================= */


.hero-banner{

    height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

}



.hero-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        120deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45),
        rgba(0,0,0,.85)
    );

    z-index:1;

}



.hero-banner::after{

    content:"";

    position:absolute;

    inset:-50%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    animation:chromeShine 8s infinite;

}



.hero-overlay{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:40px;

}



/* =========================
   HEADINGS
========================= */


h1{

    font-size:65px;

    font-weight:800;

    text-align:center;

    margin-bottom:20px;

    background:
    linear-gradient(
        90deg,
        #ffffff,
        #888888,
        #ffffff
    );

    background-size:200%;

    background-clip:text;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:shine 4s infinite linear;

}



h2{

    font-size:32px;

    color:#dddddd;

    text-align:center;

    margin:25px 0;

}



h3{

    font-size:24px;

    text-align:center;

}



p{

    font-size:18px;

    line-height:1.8;

    color:#e5e5e5;

    text-align:center;

}



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


.hero-banner h1{

    font-size:78px;

    color:white;

    -webkit-text-fill-color:white;

    text-shadow:
    0 8px 25px rgba(0,0,0,.8);

}



.hero-banner p{

    font-size:24px;

    margin-bottom:20px;

}



.location{

    color:#ddd;

    font-size:19px;

    margin-bottom:35px;

}



/* =========================
   BUTTONS
========================= */


button,
.hero-button{

    display:inline-block;

    margin-top:20px;

    padding:18px 45px;

    border:none;

    border-radius:50px;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #999999
    );

    color:#111;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}



button:hover,
.hero-button:hover{

    transform:translateY(-5px);

    box-shadow:
    0 10px 35px rgba(255,255,255,.35);

}



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


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



@keyframes shine{

    from{

        background-position:200%;

    }


    to{

        background-position:-200%;

    }

}



@keyframes chromeShine{

    0%{

        transform:translateX(-100%);

    }


    50%{

        transform:translateX(100%);

    }


    100%{

        transform:translateX(100%);

    }

}
/* =========================
   GALLERY
========================= */


.gallery{

    max-width:1200px;

    margin:60px auto;

    padding:20px;

    display:grid;

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

    gap:35px;

}



.gallery img{

    width:100%;

    height:350px;

    object-fit:cover;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.25);

    box-shadow:
    0 15px 40px rgba(0,0,0,.7);

    transition:.4s;

}



.gallery img:hover{

    transform:scale(1.03);

    border-color:white;

    box-shadow:
    0 20px 50px rgba(255,255,255,.15);

}





/* =========================
   GENERAL CARDS
========================= */


.cards{

    max-width:1100px;

    margin:50px auto;

    padding:20px;

    display:grid;

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

    gap:30px;

}



.card{

    background:
    rgba(15,15,15,.9);

    padding:35px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.2);

    text-align:center;

    transition:.3s;

}



.card:hover{

    transform:translateY(-10px);

    border-color:white;

    box-shadow:
    0 15px 40px rgba(255,255,255,.12);

}





/* =========================
   SERVICES
========================= */


.service-grid{

    max-width:1200px;

    margin:60px auto;

    padding:20px;

    display:grid;

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

    gap:35px;

}



.service-card{

    background:
    rgba(10,10,10,.9);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.25);

    overflow:hidden;

    text-align:center;

    transition:.3s;

}



.service-card:hover{

    transform:translateY(-8px);

    border-color:white;

}



.service-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}



.service-card h2{

    padding:20px;

}



.service-card p{

    padding:0 25px 30px;

}





/* =========================
   PROCESS PAGE
========================= */


.process-grid{

    max-width:1200px;

    margin:60px auto;

    padding:20px;

    display:grid;

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

    gap:35px;

}



.process-card{

    background:
    rgba(10,10,10,.9);

    border-radius:25px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.25);

    text-align:center;

    transition:.3s;

}



.process-card:hover{

    transform:translateY(-8px);

    border-color:white;

}



.process-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}



.process-card h2{

    padding:25px 20px 10px;

}



.process-card p{

    padding:0 25px 30px;

}





/* =========================
   PRICING / PREPARATION
========================= */


.prep-cards{

    max-width:750px;

}



.prep-list{

    max-width:600px;

    margin:35px auto;

    background:
    rgba(20,20,20,.9);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.25);

    overflow:hidden;

}



.prep-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 25px;

    font-size:18px;

    border-bottom:1px solid #333;

}



.prep-item:last-child{

    border-bottom:none;

}



.prep-item span{

    font-weight:700;

    color:white;

}





/* =========================
   IMAGES INSIDE HERO
========================= */


.hero img{

    width:85%;

    max-width:850px;

    margin:40px auto;

    display:block;

    border-radius:25px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.8);

}
/* =========================
   CONTACT FORM
========================= */


form{

    max-width:650px;

    margin:50px auto;

    display:flex;

    flex-direction:column;

    gap:20px;

    padding:35px;

    background:
    rgba(10,10,10,.85);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.25);

    box-shadow:
    0 20px 50px rgba(0,0,0,.6);

}



input,
textarea{

    width:100%;

    padding:18px;

    border-radius:15px;

    background:#111;

    color:white;

    border:1px solid #555;

    font-size:16px;

    font-family:'Montserrat',sans-serif;

}



input:focus,
textarea:focus{

    outline:none;

    border-color:white;

    box-shadow:
    0 0 15px rgba(255,255,255,.25);

}



textarea{

    height:160px;

    resize:none;

}





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


footer{

    margin-top:100px;

    padding:45px;

    background:
    rgba(10,10,10,.9);

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

    text-align:center;

}



footer p{

    color:#ccc;

    font-size:16px;

}





/* =========================
   GLOBAL CONTAINERS
========================= */


section{

    padding-left:20px;

    padding-right:20px;

}



a{

    transition:.3s;

}





/* =========================
   MOBILE DESIGN
========================= */


@media(max-width:768px){


nav{

    flex-direction:column;

    gap:20px;

    padding:20px;

}



.logo{

    font-size:28px;

}



nav a{

    margin:8px;

    font-size:14px;

}



.hero{

    margin:30px 15px;

    padding:40px 20px;

}



.hero-banner{

    height:75vh;

}



.hero-banner h1{

    font-size:42px;

}



.hero-banner p{

    font-size:18px;

}



h1{

    font-size:42px;

}



h2{

    font-size:26px;

}



h3{

    font-size:22px;

}



p{

    font-size:16px;

}



.cards,
.gallery,
.service-grid,
.process-grid{

    grid-template-columns:1fr;

}



.service-card img,
.process-card img{

    height:250px;

}



.gallery img{

    height:280px;

}



button,
.hero-button{

    width:100%;

    max-width:320px;

}



form{

    padding:25px;

}



}



/* =========================
   SMALL SCREEN FIXES
========================= */


@media(max-width:450px){


.hero-banner h1{

    font-size:34px;

}



.logo{

    font-size:24px;

}



nav{

    padding:15px;

}



}