/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#0f0f0f;
    color:white;
}

.hero{
    position:relative;
    height:100vh;
    background:url('hero.jpg') center/cover no-repeat;
    display:flex;
    flex-direction:column;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

nav{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
}

.logo img{
    height:70px;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

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

nav a:hover{
    color:#c7c7c7;
}

.hero-content{
    position:relative;
    z-index:2;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
    color:#d4d4d4;
}

.btn{
    padding:15px 35px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

.section{
    padding:100px 20px;
}

.dark{
    background:#161616;
}

.container{
    max-width:1200px;
    margin:auto;
}

h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}

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

.card{
    height:250px;
    background:#2a2a2a;
    border-radius:20px;
    transition:0.3s;
}

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

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

.service-box{
    background:#1d1d1d;
    padding:40px;
    border-radius:20px;
    text-align:center;
}

.service-box h3{
    margin-bottom:15px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    background:#222;
    color:white;
}

.contact-form textarea{
    min-height:150px;
}

.contact-form button{
    padding:15px;
    border:none;
    border-radius:10px;
    background:white;
    color:black;
    font-weight:bold;
    cursor:pointer;
}

.success{
    margin-top:20px;
    background:#1d5129;
    padding:15px;
    border-radius:10px;
    text-align:center;
}

footer{
    text-align:center;
    padding:30px;
    background:black;
    color:#888;
}

/* HERO */
.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)),
        url('hero.jpg') center/cover no-repeat;

    display:flex;
    flex-direction:column;
}

/* LOGO BANNER */
.logo-banner{
    width:100%;
    background:black;
    padding:30px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-bottom:1px solid #222;
}

.logo-banner img{
    max-width:500px;
    width:100%;
    height:auto;
}

/* NAVBAR */
.navbar{
    width:100%;
    background:#111;
    border-bottom:1px solid #222;
    position:sticky;
    top:0;
    z-index:1000;
    justify-content: center;
}

.navbar ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    list-style:none;
    padding:20px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:0.3s;
}

.navbar a:hover{
    color:#999;
}

/* HERO CONTENT */
.hero-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
}

.hero-content h1{
    font-size:65px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-content p{
    font-size:20px;
    color:#cfcfcf;
    margin-bottom:35px;
}

.btn{
    padding:16px 40px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

/* MOBILE */
@media(max-width:768px){

    .logo-banner img{
        max-width:300px;
    }

    .navbar ul{
        flex-wrap:wrap;
        gap:20px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }
}

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        gap:15px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:18px;
    }
}