@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background:
            linear-gradient(to bottom, #f8f5f0, #f3eee7);
    color: #2c1a0f;
}

main {
    min-height: 100vh;
}

.page-container {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Navbar */

.navbar {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
    padding: 16px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: #111827 !important;
}

.nav-link {
    font-weight: 600;
    color: #374151 !important;
    transition: 0.25s;
}

.nav-link:hover {
    color: #f59e0b !important;
}

/* Hero */

.hero {
    min-height: 100vh;
    background:
            linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
            url('/img/about.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Buttons */

.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
    border: none !important;
    color: #111827 !important;
}

.card {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition:
            transform .3s ease,
            box-shadow .3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-body {
    padding: 28px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
}

.card-text {
    color: #6b7280;
}

/* Room cards */

.room-card img {
    height: 260px;
    object-fit: cover;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}

.room-status {
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.room-free {
    background: #dcfce7;
    color: #166534;
}

.room-busy {
    background: #fee2e2;
}

.table {
    overflow: hidden;
    border-radius: 24px;
    background: white;
}

.table thead {
    background: #111827;
    color: white;
}

.table th,
.table td {
    padding: 18px !important;
    vertical-align: middle;
}

/* Badges */

.badge {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
}

/* Footer */

footer {
    background: #111827;
    color: white;
    padding: 50px 0;
    margin-top: 80px;
}

footer a {
    color: #fbbf24;
    text-decoration: none;
}

@media(max-width: 992px) {

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 20px;
    }
}

@media(max-width: 768px) {

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .card-body {
        padding: 22px;
    }
}

.section-padding {
    padding: 72px 0;
}