/* ================================
   HOTELS PAGE - PREMIUM DESIGN
   ================================ */

/* Hero Section */
.hotels-hero {
    background: linear-gradient(135deg, rgba(155, 0, 19, 0.95), rgba(44, 62, 80, 0.9)), 
                url('../images/Atlantic-City-Boardwalk.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hotels-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hotels-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Quick Stats */
.quick-stats {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    padding: 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: #9b0013;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hotels Section */
.hotels-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Simplified Hotel Cards */
.hotel-card-simple {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hotel-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(155, 0, 19, 0.12);
}

.hotel-img-wrapper {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.hotel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-card-simple:hover .hotel-img {
    transform: scale(1.05);
}

.hotel-card-body {
    padding: 2rem;
}

.hotel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hotel-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.amenities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity-badge {
    background: rgba(155, 0, 19, 0.05);
    border: 1px solid rgba(155, 0, 19, 0.1);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.amenity-badge:hover {
    background: rgba(155, 0, 19, 0.1);
    border-color: rgba(155, 0, 19, 0.2);
}

.amenity-badge i {
    color: #28a745;
    font-size: 0.75rem;
}

.booking-info-box {
    background: #f8f9fa;
    border-left: 4px solid #9b0013;
    padding: 1.25rem;
    border-radius: 8px;
}

.code-highlight {
    font-size: 1.25rem;
    font-weight: 800;
    color: #9b0013;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.btn-book-simple {
    display: inline-block;
    background: linear-gradient(135deg, #9b0013, #e74c3c);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 0, 19, 0.25);
    white-space: nowrap;
}

.btn-book-simple:hover {
    background: linear-gradient(135deg, #c41e3a, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 0, 19, 0.35);
    color: white;
}

.btn-book-simple i {
    transition: transform 0.3s ease;
}

.btn-book-simple:hover i {
    transform: translateX(5px);
}

/* Why Book Section */
.why-book-section {
    background: var(--background-gradient);
    position: relative;
    overflow: hidden;
}

.why-book-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(155, 0, 19, 0.1), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(231, 76, 60, 0.1), transparent 50%);
    z-index: 1;
}

.why-book-section .container {
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b0013, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(155, 0, 19, 0.4);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h5 {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(155, 0, 19, 0.15);
}

.location-item i {
    font-size: 2rem;
    color: #9b0013;
    min-width: 40px;
}

.location-item h6 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.location-item p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(155, 0, 19, 0.9), rgba(231, 76, 60, 0.9));
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hotel-img-wrapper {
        min-height: 300px;
    }
    
    .hotel-card-body {
        padding: 2rem;
    }
    
    .hotel-title {
        font-size: 1.5rem;
    }
    
    .hotel-desc {
        font-size: 0.95rem;
    }
    
    .amenities-row {
        gap: 0.375rem;
    }
    
    .amenity-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .booking-info-box {
        padding: 1rem;
    }
    
    .btn-book-simple {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .code-highlight {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hotel-img-wrapper {
        min-height: 200px;
    }
    
    .hotel-card-body {
        padding: 1.25rem;
    }
    
    .hotel-title {
        font-size: 1.35rem;
    }
    
    .amenity-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.65rem;
    }
    
    .booking-info-box .small {
        font-size: 0.8rem;
    }
}
