/* General Body & Fonts */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6; /* A slightly warmer, more modern light gray */
    color: #333;
    line-height: 1.6;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

/* Contact Section */
.contact-section {
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 16px;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    position: relative;
    height: 0;
    border-radius: 12px;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}

/* Header - More prominent */
.main-header {
    position: relative; /* Contain absolutely positioned children */
    text-align: center;
    margin-bottom: 4rem;
    padding: 2.5rem 1.5rem;
    /* background is now set dynamically */
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-header .brand-logo {
    max-height: 75px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.main-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.main-header .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.user-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.user-actions .btn {
    margin-left: 5px;
}

/* Room Card Styling - More depth */
.room-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.room-card .card-img-top {
    height: 240px;
    object-fit: cover;
}

.room-card .card-body {
    padding: 1.5rem 1.75rem;
}

.room-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.room-card .price {
    font-size: 1.4rem; /* Larger price */
    font-weight: 700; /* Bolder price */
    color: #3498db; /* A vibrant blue */
}

/* Status Badge - More distinct */
.status-badge {
    font-size: 0.85rem;
    padding: 0.5em 1em;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.status-green { background: linear-gradient(45deg, #2ecc71, #28a745); } /* Fresh green */
.status-yellow { background: linear-gradient(45deg, #f1c40f, #f39c12); } /* Vibrant yellow */
.status-red { background: linear-gradient(45deg, #e74c3c, #c0392b); } /* Strong red */

/* Buttons - More impactful */
.btn-main-action {
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-main-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.2);
}

/* Specific button colors */
.btn.btn-success { background-image: linear-gradient(45deg, #2ecc71, #28a745); }
.btn.btn-warning { background-image: linear-gradient(45deg, #f1c40f, #f39c12); }
.btn.btn-secondary { background-image: linear-gradient(45deg, #95a5a6, #7f8c8d); }

.btn-secondary-action {
    font-size: 0.85rem;
    font-weight: 500;
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-secondary-action:hover {
    color: #2980b9;
}

.btn-secondary-action .bi {
    vertical-align: -0.1em;
    margin-right: 3px;
}

/* Admin Login Button */
.admin-login-btn {
    background-color: transparent;
    color: #7f8c8d;
    border: 2px solid #bdc3c7;
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-login-btn:hover {
    background-color: #fff;
    color: #34495e;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
