/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}
.container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}
header {
    background-color: #1a1a5e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(26, 26, 94, 0.8); /* Slightly transparent */
    backdrop-filter: blur(10px); /* Blur background */
    z-index: 1000;
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-right: 80px;

}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

.hero {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff3300;
}

.hotels {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.hotel {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hotel-img {
    float: left;
    margin-right: 20px;
    width: 40%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.hotel-info {
    overflow: hidden; /* Ensure text wraps around the image */
}

.hotel-info h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #1a1a5e;
}

.hotel-info p, .hotel-info ul {
    font-size: 1em;
    margin-bottom: 20px;
}

.hotel-info ul {
    list-style: none;
    padding: 0;
    width: fit-content;
}

.hotel-info ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    width: fit-content;
}

.hotel-info ul li::before {
    content: '\1F4CD'; /* Pin emoji or any other appropriate icon */
    position: absolute;
    left: 0;
    font-size: 1.2em;
    color: #1a1a5e;
}

.btn-secondary {
    background-color: #1a1a5e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #00005e;
}
footer {
    background-color: #1a1a5e;
    color: white;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer a{
    text-decoration: none;
    color: white;
}
footer p{
    padding: 15px 0 0 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ffffff1a;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3em;
    }

    .hotel {
        width: 45%;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hotel {
        width: 90%;
        margin: 20px auto;
        flex-direction: column;
    }

    .hotel img {
        width: 100%;
        height: auto;
    }

    .hotel-info {
        width: 100%;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    nav {
        flex-direction: column;
    }
    

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .hotel {
        width: 100%;
        margin: 10px 0;
        flex-direction: column;
    }

    /* .hotel img {
        width: 100%;
        height: auto;
    } */

    .hotel-info {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 25px;
        font-size: 1.2em;
    }
    .hotel-img {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
        border-radius: 10px;
    }
}
