/* Custom CSS for Luxury Hotel Website */
:root {
    --primary-color: #ab8a62;
    --secondary-color: #2c3e50;
    --hover-color: #8b6d4a;
    --primary-menu-color: #ff4757;
    --secondary-menu-color: #2f3542;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.nav-link.active{
    color: var(--primary-color) !important;
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        background-attachment: scroll;
        padding: 4rem 1rem;
        text-align: center;
    }

    .hero-content {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.hero-heading {
    font-size: 3rem;
}

.hero-subheading {
    font-size: 1.25rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 3rem 1rem;
        background-attachment: scroll;
        text-align: center;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-heading {
        font-size: 1.5rem !important;
    }

    .hero-subheading {
        font-size: 1rem !important;
    }
}

/*  Room Page Start */
.room-types {
    padding: 4rem 5%;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 400px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-details h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.room-details p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
 
.amenities i {
    color: var(--primary-color);
}

.price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.room-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .room-card {
        grid-template-columns: 1fr;
    }

    .room-image {
        height: 300px;
    }

    .amenities {
        grid-template-columns: 1fr;
    }

}


/*  Room Page End */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.8s ease, transform 0.3s ease; /* Ensure transform is part of the transition */
}

.feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Slightly enhance the shadow for hover effect */
    transform: translateY(-10px); /* Moves the card up on hover */
}


.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}



footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
}

/* Image Zoom Effect */
.image-box {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

/* Restaurant Page Styles */
.menu-item {
    border-bottom: 1px dashed #ddd;
    padding: 1rem 0;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
}
.contact_address{
    font-family: 'Poppins', sans-serif;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
}

.email_paragraph{
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
}
.about_paragraph{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
    font-size:20px;
}

.contact-form-section {
    padding: 4rem 5%;
}

.form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.contact-form textarea {
    resize: none;
}
.contact-form button {
    grid-column: 1 / -1;
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
 

.restaurant-menu-category {
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .restaurant-menu-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: white;
        }

        .restaurant-menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .restaurant-menu-item-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .restaurant-menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .restaurant-menu-item:hover .restaurant-menu-item-image img {
            transform: scale(1.1);
        }

        .restaurant-menu-item-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-menu-color);
            color: white;
            padding: 5px 15px;
            border-radius: 25px;
            font-weight: 600;
        }

        .restaurant-menu-item-content {
            padding: 20px;
        }

        .restaurant-menu-item-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary-menu-color);
        }

        .restaurant-menu-item-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .restaurant-menu-item-price {
            color: var(--primary-menu-color);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .restaurant-menu-category-title {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
            color: var(--secondary-menu-color);
        }

        .restaurant-menu-category-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background: var(--primary-menu-color);
        }

        .dietary-icon {
            color: #28a745;
            margin-right: 5px;
        }

        .spicy-level {
            color: #dc3545;
            font-size: 0.8rem;
        }

/* Media Query for Mobile Screens */
@media (max-width: 1048px) {
    .form-map-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 400px; /* Adjusted for smaller screens */
    }
}
