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

html{
    scroll-behavior:smooth;
}

body{
    background:#111;
    color:white;
    font-family:Arial,sans-serif;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    height:60px;
    object-fit:contain;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

nav a:hover{
    opacity:0.7;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    background:url('/img/facade.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 80px;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1000px;
}

.hero h1{
    font-size:72px;
    margin-bottom:20px;
    line-height:1.1;
    letter-spacing:2px;
}

.hero p{
    font-size:24px;
    color:#ddd;
    margin-bottom:40px;
    line-height:1.5;
}

.btn{
    display:inline-block;
    background:white;
    color:black;
    padding:16px 34px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

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

/* SECTIONS */

.services,
.gallery,
.contacts{
    padding:100px 20px;
}

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

/* SERVICES */

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

.card{
    background:#1c1c1c;
    border:1px solid rgba(255,255,255,0.06);
    padding:40px 25px;
    border-radius:24px;
    text-align:center;
    font-size:22px;
    transition:0.3s;
}

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

/* GALLERY */

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

.gallery-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:24px;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.02);
}

/* CONTACTS */

.contacts{
    text-align:center;
    background:#181818;
}

.contacts p{
    margin-bottom:18px;
    font-size:20px;
    color:#ddd;
}

.socials{
    margin-top:30px;
}

.socials a{
    display:inline-block;
    margin:10px;
    padding:14px 24px;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:12px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.socials a:hover{
    background:white;
    color:black;
}

/* MOBILE */

@media(max-width:992px){

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:20px;
    }

}

@media(max-width:768px){

    .header .container{
        flex-direction:column;
        gap:15px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo{
        height:52px;
    }

    .hero{
        padding-top:160px;
    }

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

    .hero p{
        font-size:18px;
        line-height:1.6;
    }

    .btn{
        width:100%;
        max-width:320px;
        font-size:18px;
    }

    h2{
        font-size:32px;
    }

    .services,
    .gallery,
    .contacts{
        padding:70px 20px;
    }

    .card{
        font-size:20px;
        padding:30px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid img{
        height:240px;
    }

    .contacts p{
        font-size:18px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:30px;
    }

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

    nav a{
        font-size:14px;
    }

    .card{
        font-size:18px;
    }

    .gallery-grid img{
        height:220px;
    }

}
/* BOOKING */

.booking{
    padding:100px 20px;
    background:#101010;
}

.booking-container{
    max-width:800px;
    margin:auto;
    background:#181818;
    padding:50px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.08);
}

.booking h2{
    margin-bottom:40px;
}

.form-group{
    margin-bottom:20px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.booking input,
.booking select,
.booking textarea{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:#242424;
    color:white;
    font-size:16px;
    outline:none;
}

.booking textarea{
    min-height:140px;
    resize:vertical;
}

.booking-btn{
    width:100%;
    padding:20px;
    border:none;
    border-radius:14px;
    background:white;
    color:black;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

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

#successMessage{
    display:none;
    margin-top:25px;
    text-align:center;
    color:#4ade80;
    font-size:18px;
}

@media(max-width:768px){

    .booking-container{
        padding:30px 20px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

}
.contacts a {
    color: inherit;
    text-decoration: none;
}

.contacts a:hover {
    text-decoration: underline;
}
.route-btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    background:#ffb000;
    color:#000;
    transition:0.2s;
}

.route-btn:hover{
    transform:translateY(-2px);
}
.advantages{
    padding:60px 20px;
    text-align:center;
}

.advantages h2{
    margin-bottom:30px;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    max-width:1200px;
    margin:0 auto;
}

.adv-card{
    background:#1a1a1a;
    padding:25px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    transition:0.2s;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    min-height:120px;
}

.adv-card:hover{
    transform:translateY(-3px);
}
input[type="date"]{
    -webkit-appearance:none;
    appearance:none;
    min-height:60px;
    width:100%;
}

input[type="date"]::-webkit-calendar-picker-indicator{
    filter:invert(1);
    cursor:pointer;
}

.socials{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

.socials a{
    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    background:#242424;
    border-radius:12px;

    text-decoration:none;
    color:white;

    transition:0.2s;
}

.socials a:hover{
    transform:translateY(-2px);
}

.socials img{
    width:24px;
    height:24px;
    object-fit:contain;
}
