/* Hotel Villa Ricaurte - Main Stylesheet */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    /* Colors */
    --primary: #2C3E50;
    --secondary: #E67E22;
    --accent: #D35400;
    --bg-light: #F9F9F9;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --section-padding: 5rem 0;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.2);
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(211, 84, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 6px 12px rgba(211, 84, 0, 0.3);
}

.room-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}


.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

/* Header */


.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
}




/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.carousel-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease 0.5s forwards;
}


.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Base Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Preview - Floating Masonry with Glassmorphism */
.gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 25px;
}

.gallery-card {
    position: relative;
    break-inside: avoid;
    margin-bottom: 25px;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Glassmorphism Label */
.glass-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .glass-label {
    opacity: 1;
    transform: translateY(0);
}

.glass-label span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* Rooms Section */
.rooms-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.room-info-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-info-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Location Section */
.location-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
    text-align: center;
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}

.location-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.location-info h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.location-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Preview */
.gallery-section {
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Rooms Section */
.rooms-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.room-info-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-info-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Location Section */
.location-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
    text-align: center;
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}

.location-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.location-info h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.location-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Booking Widget */
.booking-widget {
    padding: 3rem 0;
    background: #fff;
}

.booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.booking-card h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.booking-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--secondary);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.btn-whatsapp {
    background: #25D366;
    padding: 16px 40px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: var(--white);
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-icon {
    font-size: 2rem;
}

.service-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}




/* Featured Review Section - Booking Style (Orange Theme) */
.featured-review {
    padding: 2rem 0;
    background-color: #FFF3E0;
    /* Light Orange */
    border-bottom: 1px solid #FFE0B2;
    margin-top: 0;
}

.review-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

.review-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* Remove decorative quote */
.review-content::before {
    display: none;
}

.review-score {
    background-color: #E67E22;
    /* Primary Orange */
    color: #FFFFFF;
    /* High Contrast White */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.2);
    line-height: 1;
    padding-bottom: 5px;
    /* Visually correct vertical center */
}

.review-details {
    text-align: left;
    max-width: 700px;
}

.review-details h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #E67E22;
    /* Primary Orange */
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.review-details p {
    font-style: normal;
    margin: 0.3rem 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 400;
}

.review-author strong {
    color: #333;
    font-weight: 700;
}

.review-nav {
    background: #FFFFFF;
    border: 1px solid #FFE0B2;
    width: 40px;
    height: 40px;
    border-radius: 0;
    font-size: 0.9rem;
    color: #E67E22;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(230, 126, 34, 0.1);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav:hover {
    background-color: #E67E22;
    color: #FFFFFF;
    transform: none;
    border-color: #E67E22;
}

@media (max-width: 768px) {
    .review-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .review-details {
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        display: flex;
        /* Revert to flex for mobile */
        justify-content: space-between;
    }

    .header-btn {
        display: none;
        /* Hide header button on mobile if space is tight, or keep it */
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        transition: left 0.3s ease;
        padding: 2rem;
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Room Detail Redesign */
.room-detail-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    /* Align top */
    margin-bottom: 4rem;
}

.room-hero-image {
    flex: 1 1 500px;
}

.room-hero-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.room-hero-content {
    flex: 1 1 400px;
    padding-top: 1rem;
}

.room-type-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #E67E22;
    /* Accent color for the label */
}

.room-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #2c3e50;
    /* Darker, more elegant text */
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-hero-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
    text-align: justify;
}

/* Amenities Grid Section */
.amenities-section {
    padding-top: 3rem;
    border-top: 1px solid #eee;
    margin-top: 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
    font-size: 0.95rem;
}

.amenity-item i,
.amenity-item svg {
    font-size: 1.8rem;
    color: #333;
    /* Darker icon as per reference */
    width: 40px;
    text-align: center;
    stroke-width: 1px;
    height: 1.8rem;
    /* Ensure SVG has height */
    fill: currentColor;
    /* Use text color */
}

/* Button override for room page */
.btn-room {
    background-color: #E67E22;
    /* Brand Orange */
    color: white;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    /* Square corners */
}

.btn-room:hover {
    background-color: #333;
    /* Dark on hover */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .room-detail-hero {
        flex-direction: column;
        gap: 2rem;
    }

    .room-hero-content {
        padding-top: 0;
        text-align: left;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Booking Widget */
.booking-widget {
    background-color: #fff !important;
    /* Force white */
    padding: 60px 0;
    margin-top: 40px;
}

.booking-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Shadow will distinguish the card */
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #eee;
    /* Adding subtle border for better definition on white bg */
}

.booking-card h2 {
    color: #000;
    /* Black as requested */
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.booking-subtitle {
    color: #666;
    margin-bottom: 30px;
}