html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f7fb;
    color: #111827;
}

/* Navbar / header */

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.top-nav-link {
    font-size: 0.9rem;
    color: #4b5563;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.top-nav-link:hover {
    background: rgba(148, 163, 184, 0.15);
    color: #111827;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, var(--rn-primary), var(--rn-accent));
    color: #fff;
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(15, 23, 42, 0.3), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    font-size: 0.8rem;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 34rem;
    opacity: 0.93;
}

.hero-cta {
    margin-top: 1.75rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero booking form */

.hero-booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100%;
}

.hero-booking-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .hero-booking-row {
        flex-wrap: nowrap;
    }
}

.hero-booking-input {
    padding: 0.55rem 0.9rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    min-width: 140px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.18);
    flex: 0 0 auto;
}

.hero-booking-input-small {
    width: 80px;
    min-width: 80px;
    text-align: center;
}

.hero-booking-input::placeholder {
    color: #9ca3af;
}

.hero-booking-btn {
    border-radius: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1.6rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
    white-space: nowrap;
    flex: 0 0 auto;
}

.hero-booking-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-booking-form .flatpickr-input.hero-booking-input[readonly] {
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
}

/* Sections / cards */

.section-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    padding: 2rem 2.2rem;
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}

.section-card + .section-card {
    margin-top: 1.5rem;
}

.section-title {
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.divider {
    height: 3px;
    width: 60px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rn-primary), var(--rn-accent));
    margin-bottom: 1rem;
}

/* Contact & footer */

.contact-item {
    margin-bottom: 0.4rem;
}

.footer {
    padding: 2rem 0 2.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Amenities */

.amenity-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid rgba(34, 197, 94, 0.8);
    font-size: 0.8rem;
    color: #16a34a;
}

/* Room cards */

.room-card {
    border-radius: 1.25rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-card-body {
    padding: 1.1rem 1.25rem 1.25rem;
}

.room-card-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
}

.room-meta {
    color: #6b7280;
}
