/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#1f2333;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:#222638;

    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
}
.logo-img{
    width:60px;
    height:60px;
}
.logo span{
    color:#ff5a5f;
}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

nav ul li a{
    color:white;
    text-decoration:none;

    padding:10px 18px;

    border-radius:6px;

    transition:0.3s;
}

nav ul li a:hover,
nav ul li a.active{
    background:#ff5a5f;
}

/* ================= HERO ================= */

/* Hero Section */
.hero {
    position: relative;
    height: 300px;
    background: linear-gradient(to right, #0a2a43, #2d3e2f);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Optional Overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

/* Content Center */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
}

/* Heading */
.hero-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Paragraph */
.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Button */
.btn-book {
    display: inline-block;
    padding: 12px 30px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.3s;
}

/* Hover Effect */
.btn-book:hover {
    background: #e68900;
    transform: scale(1.05);
}


/* ================= SERVICES ================= */

.services-container{
    width:100%;

    padding:60px 5%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

/* CARD */

.service-card{
    position:relative;

    height:500px;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    transition:0.4s ease;
}

/* IMAGE */

.service-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;
}

/* OVERLAY */

.overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.2)
    );
}

/* CONTENT */

.service-content{
    position:absolute;

    bottom:40px;
    left:30px;
    right:30px;

    z-index:2;

    color:white;
}

.service-content h2{
    font-size:38px;

    line-height:1.2;

    margin-bottom:12px;
}

.service-content p{
    font-size:17px;

    line-height:1.7;

    margin-bottom:20px;
}

/* BUTTON */

.service-content a{
    width:55px;
    height:55px;

    background:#ff5a5f;

    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:20px;

    transition:0.3s;
}

.service-content a:hover{
    background:white;
    color:#ff5a5f;
}

/* HOVER */

.service-card:hover img{
    transform:scale(1.1);
}

.service-card:hover{
    transform:translateY(-8px);
}

/* ================= FOOTER ================= */

footer{
    background:#111;

    color:white;

    text-align:center;

    padding:20px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    header{
        flex-direction:column;

        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:16px;
    }

    .service-card{
        height:380px;
    }

    .service-content h2{
        font-size:28px;
    }

    .service-content p{
        font-size:15px;
    }

}