﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navigation Styles */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2b2e34e8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hotel-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d5d5d5;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

    .nav-links a {
        text-decoration: none;
        color: #d5d5d5;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: white;
        }

/* Hero Slider */
.hero-slider {
    margin-top: 70px;
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

    .slide.active {
        opacity: 1;
    }

/* Room Categories */
 

/* Amenities Section */
.amenities-section {
    padding: 4rem 2rem;
   /* background-color: white;*/
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.amenity-card {
    text-align: center;
    padding: 2rem;
   /* background: #f7f7f7;*/
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .amenity-card:hover {
        transform: translateY(-5px);
    }

.amenity-icon {
    font-size: 2.5rem;
    color: #C5C5C6;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2b2e34e8;
    color: #C5C5C6;
    padding: 2rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-links a {
        color: #C5C5C6;
        font-size: 1.5rem;
    }

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: black;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        padding: 5rem 2rem 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }
        .nav-links a {
            text-decoration: none;
            color: black;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links.active {
            display: flex;
        }

    .mobile-menu-btn {
        display: block;
    }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

    .hero-slider {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }
}
/*@media (max-width: 768px) {
    .nav-links {
        display: none;*/ /* Hide navigation links on small screens */
        /*flex-direction: column;
        background-color: #1a1a1a;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
    }

        .nav-links a {
            margin: 10px 0;
        }

        .nav-links .submenu {
            position: relative;
            top: 0;
            left: 0;
        }

    .mobile-menu-btn {
        display: flex;*/ /* Show mobile menu button on small screens */
    /*}
}*/

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .room-details {
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* Room Types Grid */
    .room-types > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Room Details Layout */
    .room-details {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    /* Features Grid */
    .features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Slider Height */
    .slider-container1 {
        height: 400px;
    }

    .slide1 {
        height: 400px;
    }

    /* Typography */
    .details-left h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    /* Room Types Grid */
    .room-types > div {
        grid-template-columns: 1fr !important;
    }

    /* Features Grid */
    .features {
        grid-template-columns: 1fr;
    }

    /* Slider Height */
    .slider-container1 {
        height: 300px;
    }

    .slide1 {
        height: 300px;
    }

    /* Typography */
    .details-left h1 {
        font-size: 1.75rem;
    }

    /* Booking Form */
    .form-row {
        flex-direction: column;
    }

        .form-row .form-group {
            width: 100%;
        }

    /* Popup Content */
    .popup-content {
        width: 95% !important;
        padding: 15px !important;
    }

    .room-preview {
        flex-direction: column;
    }

        .room-preview img {
            width: 100%;
            height: 200px;
        }
}

/* Popup Responsive Styles */
@media screen and (max-width: 768px) {
    .popup-content {
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .room-preview {
        padding: 10px;
    }

    .booking-form {
        padding: 15px;
    }
}
/* Room Details Responsive Styles */
.room-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 20px;
}

@media screen and (max-width: 1024px) {
    .room-details {
        grid-template-columns: 3fr 2fr;
        gap: 20px;
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .room-details {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .booking-card {
        position: static;
        margin-top: 20px;
    }

    .details-left h1 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .room-details {
        padding: 10px;
    }

    .details-left h1 {
        font-size: 1.75rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-item {
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .booking-card {
        padding: 15px;
    }

    .price {
        font-size: 1.75rem;
    }

    .policies {
        font-size: 0.85rem;
    }

    .book-btn {
        padding: 12px;
    }
}

/* Add smooth transitions */
.room-details, .features, .booking-card {
    transition: all 0.3s ease-in-out;
}

/* Improve touch targets on mobile */
.feature-item, .book-btn {
    min-height: 44px;
}
/* Booking Card Styles */
.booking-card {
    background: #ffffff12;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    transition: all 0.3s ease;
}

/* Media Queries for Booking Card */
@media screen and (max-width: 1024px) {
    .booking-card {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .booking-card {
        position: static; /* Remove sticky positioning on mobile */
        width: 100%;
        margin-top: 20px;
        padding: 20px;
    }

    .price {
        font-size: 1.8rem;
    }

    .per-night {
        font-size: 0.9rem;
    }

    .book-btn {
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    .booking-card {
        padding: 15px;
        margin: 10px 0;
    }

    .price {
        font-size: 1.6rem;
    }

    .per-night {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .book-btn {
        padding: 10px;
        font-size: 0.95rem;
    }

    .policies {
        font-size: 0.8rem;
    }

        .policies p {
            margin-bottom: 6px;
        }
}

/* Add smooth transitions */
.booking-card, .price, .book-btn {
    transition: all 0.3s ease-in-out;
}
