/* accommodation-style.css */

/* 1. Main Section Background */
.accommodation-section {
    background-color: #0a1f44 !important; /* Navy Dark Blue */
    min-height: 100vh;
    padding-top: 160px !important; /* Large gap for Navbar */
    padding-bottom: 80px;
}

.section-title {
    color: #ffffff !important;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 10px;
}

/* 2. Card Design */
.hotel-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none !important;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

/* 3. Image Area (Different Background) */
.hotel-image-area {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 20px;
    min-height: 250px;
}

.hotel-image-area img {
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border: 3px solid #ffffff;
}

/* 4. Text Content */
.hotel-name {
    color: #0a1f44;
    font-size: 1.4rem;
}

.hotel-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.hotel-link:hover {
    text-decoration: underline;
    color: #2980b9;
}