.reservation-section {
    padding: 6rem 0;
    background: #ffffff;
}

.reservation-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 4rem;
}

.reservation-header {
    margin-bottom: 5rem;

padding-bottom: 1rem;
border-bottom: 1px solid #f0f0f0;
}

.reservation-title {
 font-family: 'Lustria', 'Lustria Placeholder', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.reservation-subtitle {
     font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 600px;
}


.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.room-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e5e5;
}

.room-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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


.room-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-gallery-item.active {
    opacity: 1;
}

.room-gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.gallery-prev,
.gallery-next {
   width: 40px;
    height: 40px;
    border: 2px solid #2c2c2c;
    background: #ffffff;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s 
ease;
    color: #2c2c2c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
	font-size: 1.5rem;
}



.gallery-dots {
    display: flex;
    gap: 8px;
	display: none !important;
}

.gallery-dot {
    width: 8px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dot.active {
    background-color: white;
}

.gallery-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.room-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.room-info {
    flex: 1;
}

.room-name {
 font-family: 'Lustria', 'Lustria Placeholder', serif;
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 500;
    color: #1a1a1a;

    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.room-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1.5rem;
    padding-top: 10px;
}

.room-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;

    padding: 1rem 1.3rem;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
}

.room-spec svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.room-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.room-amenities-preview {
    margin-top: 1.5rem;
}

.amenities-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.amenities-list li i {
    color: #333;
    font-size: 0.75rem;
    flex-shrink: 0;
}


.room-booking {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    min-width: 180px;
}

.room-price {
    text-align: right;
	display: none;
}

.price-amount {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.price-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-book-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.room-book-button:hover {
    background-color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.no-rooms {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    padding: 3rem 0;
}


@media (max-width: 1024px) {
    .reservation-container {
        padding: 0 2rem;
    }

    .room-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-content {
        flex-direction: column;
    }

    .room-booking {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .room-price {
        text-align: left;
    }
}


@media (max-width: 768px) {
    .reservation-section {
        padding: 4rem 0;
    }

    .reservation-container {
        padding: 0 1.5rem;
    }

    .reservation-header {
        margin-bottom: 3rem;
    }

    .rooms-list {
        gap: 3rem;
    }

    .room-card {
        gap: 1.5rem;
        padding-bottom: 3rem;
    }

    .room-image-wrapper {
        min-height: 300px;
    }

    .room-specs {
        gap: 1rem;
		display: grid !important;
    }

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

    .room-booking {
        gap: 1rem;
    }

    .price-amount {
        font-size: 1.25rem;
    }

    .room-book-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .reservation-section {
        padding: 3rem 0;
    }

    .reservation-container {
        padding: 0 1rem;
    }

    .reservation-header {
        margin-bottom: 2rem;
    }

    .rooms-list {
        gap: 2rem;
    }       
}