/* Hotel-specific Styles */
:root {
    --hotel-primary: #C5A47E;
    --hotel-secondary: #1A1A1A;
    --hotel-accent: #D4AF37;
    --hotel-text: #333333;
    --hotel-light: #F5F5F5;
    --hotel-dark: #0A0A0A;
    --hotel-gradient: linear-gradient(135deg, var(--hotel-primary) 0%, var(--hotel-accent) 100%);
    --hotel-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hotel-radius: 12px;
    --hotel-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Room Showcase Section */
.hotel-rooms {
    padding: 8rem 0;
    background: var(--hotel-light);
    position: relative;
    overflow: hidden;
}

/* Search Bar */
.room-search-bar {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: var(--hotel-shadow);
    transition: var(--hotel-transition);
}

.room-search-bar:focus-within {
    transform: translateY(-2px);
    box-shadow: var(--hotel-shadow-lg);
}

.room-search-input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.room-search-bar i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hotel-primary);
    font-size: 1.2rem;
}

/* Room Filter */
.hotel-room-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--hotel-primary);
    border-radius: 30px;
    color: var(--hotel-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--hotel-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: var(--hotel-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--hotel-shadow-md);
}

.filter-btn input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 4px;
    margin: 0;
    position: relative;
    cursor: pointer;
    transition: var(--hotel-transition);
}

.filter-btn input[type="checkbox"]:checked {
    background: currentColor;
}

.filter-btn input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Room Grid */
.hotel-room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Room Card */
.hotel-room-card {
    background: white;
    border-radius: var(--hotel-radius);
    overflow: hidden;
    box-shadow: var(--hotel-shadow);
    transition: var(--hotel-transition);
    position: relative;
}

.hotel-room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hotel-shadow-lg);
}

/* Room Image */
.hotel-room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hotel-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-room-card:hover .hotel-room-image img {
    transform: scale(1.1);
}

/* Room Overlay */
.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--hotel-transition);
}

.hotel-room-card:hover .room-overlay {
    opacity: 1;
}

.view-gallery-btn,
.virtual-tour-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--hotel-primary);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: var(--hotel-transition);
}

.hotel-room-card:hover .view-gallery-btn,
.hotel-room-card:hover .virtual-tour-btn {
    transform: translateY(0);
}

.view-gallery-btn:hover,
.virtual-tour-btn:hover {
    background: var(--hotel-gradient);
    color: white;
}

/* Room Badge */
.hotel-room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--hotel-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.hotel-room-badge.premium {
    background: var(--hotel-gradient);
}

/* Room Content */
.hotel-room-content {
    padding: 2rem;
}

/* Room Header */
.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hotel-room-title {
    font-size: 1.5rem;
    color: var(--hotel-secondary);
    margin: 0;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hotel-accent);
    font-weight: 600;
}

.room-rating i {
    color: var(--hotel-accent);
}

/* Room Description */
.hotel-room-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Room Features */
.hotel-room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hotel-room-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
    position: relative;
}

.hotel-room-feature i {
    color: var(--hotel-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hotel-room-feature:hover i {
    transform: scale(1.2);
}

/* Feature Tooltip */
.hotel-room-feature[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: var(--hotel-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--hotel-transition);
}

.hotel-room-feature[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    border: 5px solid transparent;
    border-top-color: var(--hotel-dark);
    opacity: 0;
    visibility: hidden;
    transition: var(--hotel-transition);
}

.hotel-room-feature:hover[data-tooltip]::before,
.hotel-room-feature:hover[data-tooltip]::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Room Footer */
.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hotel-border);
}

.hotel-room-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.hotel-room-amount {
    font-size: 2rem;
    color: var(--hotel-primary);
    font-weight: 600;
}

.hotel-room-period {
    color: #666;
    font-size: 0.9rem;
}

.hotel-room-button {
    padding: 1rem 2rem;
    background: var(--hotel-gradient);
    color: white;
    border: none;
    border-radius: var(--hotel-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--hotel-transition);
}

.hotel-room-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.3);
}

/* Featured and Premium Cards */
.hotel-room-card.featured {
    border: 2px solid var(--hotel-accent);
}

.hotel-room-card.premium {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--hotel-gradient) border-box;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hotel-room-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hotel-rooms {
        padding: 4rem 0;
    }

    .hotel-room-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        justify-content: center;
    }

    .hotel-room-features {
        grid-template-columns: 1fr;
    }

    .room-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hotel-room-price {
        justify-content: center;
    }

    .hotel-room-button {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hotel-room-card {
    animation: fadeIn 0.6s ease backwards;
}

.hotel-room-card:nth-child(2) {
    animation-delay: 0.2s;
}

.hotel-room-card:nth-child(3) {
    animation-delay: 0.4s;
}

.hotel-room-card:nth-child(4) {
    animation-delay: 0.6s;
}

.hotel-room-card:nth-child(5) {
    animation-delay: 0.8s;
}

.hotel-room-card:nth-child(6) {
    animation-delay: 1s;
}

/* Amenities Section */
.hotel-amenities {
    padding: 8rem 0;
    background: white;
}

.hotel-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hotel-amenity-card {
    text-align: center;
    padding: 2rem;
    background: var(--hotel-light);
    border-radius: var(--hotel-radius);
    transition: var(--hotel-transition);
}

.hotel-amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hotel-shadow);
}

.hotel-amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--hotel-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-amenity-icon i {
    font-size: 2rem;
    color: white;
}

.hotel-amenity-title {
    font-size: 1.2rem;
    color: var(--hotel-secondary);
    margin-bottom: 1rem;
}

.hotel-amenity-description {
    color: #666;
    line-height: 1.6;
}

/* Dining Section */
.hotel-dining {
    padding: 8rem 0;
    background: var(--hotel-secondary);
    color: white;
}

.hotel-dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hotel-restaurant-card {
    position: relative;
    border-radius: var(--hotel-radius);
    overflow: hidden;
    height: 400px;
}

.hotel-restaurant-image {
    position: absolute;
    inset: 0;
}

.hotel-restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-restaurant-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(120px);
    transition: var(--hotel-transition);
}

.hotel-restaurant-card:hover .hotel-restaurant-content {
    transform: translateY(0);
}

.hotel-restaurant-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hotel-restaurant-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hotel-restaurant-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.hotel-restaurant-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-restaurant-detail i {
    color: var(--hotel-accent);
}

/* Special Offers Section */
.hotel-offers {
    padding: 8rem 0;
    background: var(--hotel-light);
}

.hotel-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hotel-offer-card {
    background: white;
    border-radius: var(--hotel-radius);
    overflow: hidden;
    box-shadow: var(--hotel-shadow);
    transition: var(--hotel-transition);
}

.hotel-offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hotel-offer-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.hotel-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-offer-card:hover .hotel-offer-image img {
    transform: scale(1.1);
}

.hotel-offer-content {
    padding: 2rem;
}

.hotel-offer-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--hotel-accent);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hotel-offer-title {
    font-size: 1.5rem;
    color: var(--hotel-secondary);
    margin-bottom: 1rem;
}

.hotel-offer-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hotel-offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hotel-offer-original {
    color: #999;
    text-decoration: line-through;
}

.hotel-offer-current {
    font-size: 1.8rem;
    color: var(--hotel-primary);
    font-weight: 600;
}

.hotel-offer-button {
    width: 100%;
    padding: 1rem;
    background: var(--hotel-gradient);
    color: white;
    border: none;
    border-radius: var(--hotel-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--hotel-transition);
}

.hotel-offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.3);
} 