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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#ffffff;
    background:#000;
    overflow-x:hidden;
}

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

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

/* =====================================================
   BACKGROUND SLIDESHOW
===================================================== */

.slideshow{
    position:fixed;
    inset:0;
    z-index:-2;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.60);
    z-index:-1;
}

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

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
    z-index:1000;
}

.nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-logo img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.nav-logo span{
    font-size:22px;
    font-weight:bold;
    color:#fff;
}

.navbar ul{
    display:flex;
    gap:30px;
}

.navbar ul li a{
    color:#fff;
    font-weight:bold;
    transition:.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#ff8800;
}

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

.content{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 40px;
}

.logo{
    width:220px;
    margin-bottom:25px;
    border-radius:12px;
    box-shadow:0 0 20px rgba(255,255,255,.2);
}

h1{
    font-size:60px;
    text-shadow:0 5px 15px rgba(0,0,0,.6);
    margin-bottom:15px;
}

.tagline{
    font-size:26px;
    max-width:800px;
    margin-bottom:40px;
    color:#eee;
}

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

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.call{
    background:#ff8800;
    color:#fff;
}

.call:hover{
    background:#ff6a00;
}

.email{
    background:#fff;
    color:#222;
}

.email:hover{
    background:#e5e5e5;
}

.whatsapp{
    background:#25D366;
    color:#fff;
}

.whatsapp:hover{
    background:#1EBE5D;
}

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

.services{
    padding:130px 8% 60px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{
    background:rgba(255,255,255,.12);
    padding:30px;
    border-radius:15px;
    backdrop-filter:blur(10px);
}

/* =====================================================
   BOOKING PAGE
===================================================== */

.booking{
    padding:130px 8% 60px;
}

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

.booking input,
.booking select,
.booking textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact{
    padding:130px 8% 60px;
}

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

.contact-card{
    background:rgba(255,255,255,.12);
    padding:30px;
    border-radius:15px;
}

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

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

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

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

footer{
    text-align:center;
    padding:30px 20px;
    color:#ddd;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        padding:15px;
    }

    .nav-logo{
        flex-direction:column;
        text-align:center;
    }

    .navbar ul{
        flex-direction:column;
        gap:12px;
        margin-top:15px;
    }

    h1{
        font-size:36px;
    }

    .tagline{
        font-size:20px;
    }

    .logo{
        width:170px;
    }

    .buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
    }

    .btn{
        width:90%;
        max-width:320px;
        text-align:center;
    }

    .service-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }
}
/* ===========================
   HAMBURGER MENU
=========================== */

.menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
}

/* Mobile */

@media (max-width:768px){

    .navbar{
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    .navbar ul{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        margin-top:20px;
        background:rgba(0,0,0,.9);
        padding:20px 0;
        border-radius:10px;
    }

    .navbar ul.active{
        display:flex;
    }

    .navbar ul li{
        margin:12px 0;
    }
}