* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body { background-color: #1a1a1a; color: white; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 5%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.logo span { color: #ffffff; }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: white; transition: 0.3s; }
.nav-links a:hover { color: #ffffff; }
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto; 
    display: block;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 5%; 
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.btn-book {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    color: black !important;
    font-weight: bold;
}

.main-carousel { width: 100%; height: 500px; }
.carousel-cell {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    text-align: center;
}

.services { padding: 50px 5%; text-align: center; }
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid #d4af37;
}
.gallery {
    padding: 80px 5%;
    background-color: #99969642;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.gallery p {
    margin-bottom: 40px;
    color: #ccc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 213, 210, 0.425);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: bottom 0.4s ease;
}
@media screen and (max-width: 768px) {
    
    .service-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
        padding: 0 10px;
        margin-top: 20px;
    }

    .service-card {
        width: 100% !important; /
        padding: 20px 10px;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .service-card img {
        width: 40px;
        height: auto;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .service-card p {
        font-size: 0.75rem;
    }

    .navbar {
        padding: 10px 3% !important;
        justify-content: space-between;
    }

    .logo-img {
        height: 35px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a, .btn-book {
        font-size: 10px;
        white-space: nowrap;
    }
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.service-card img { filter: invert(1); margin-bottom: 15px; }