/* ============================================================================
   GRAND HORIZON RESORT & SPA - LUXURY DESIGN SYSTEM
   Color Tokens:
   Forest Green: #173B32
   Gold Accent:  #B8975A
   Cream:        #F5F0E7
   Warm White:   #FCFAF6
   Charcoal:     #252525
============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --forest-green: #173B32;
    --forest-green-dark: #0f2822;
    --gold-accent: #B8975A;
    --gold-hover: #a18146;
    --cream: #F5F0E7;
    --warm-white: #FCFAF6;
    --charcoal: #252525;
    --muted-gray: #6c757d;
    --glass-bg: rgba(23, 59, 50, 0.85);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    color: var(--forest-green);
}

/* Navbar */
.navbar-custom {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-custom .navbar-brand span {
    color: var(--gold-accent);
}

.navbar-custom .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--gold-accent) !important;
}

.btn-gold {
    background-color: var(--gold-accent);
    color: #fff !important;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 151, 90, 0.4);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 151, 90, 0.5);
}

.btn-outline-gold {
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    background: transparent;
    border-radius: 30px;
    padding: 0.5rem 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold-accent);
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(15, 40, 34, 0.5), rgba(15, 40, 34, 0.7)), url('/Images/Banners/hero-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Availability Search Bar Widget */
.search-widget {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(184, 151, 90, 0.2);
}

.search-widget label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--forest-green);
    margin-bottom: 5px;
}

.search-widget .form-control, .search-widget .form-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.65rem 0.9rem;
    font-weight: 500;
}

.search-widget .form-control:focus, .search-widget .form-select:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 0.2rem rgba(184, 151, 90, 0.25);
}

/* Room Cards */
.room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-card-img {
    transform: scale(1.08);
}

.room-card-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--forest-green);
    color: var(--gold-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.room-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.room-specs {
    display: flex;
    gap: 15px;
    font-size: 0.88rem;
    color: var(--muted-gray);
    margin-bottom: 1rem;
}

.room-specs i {
    color: var(--gold-accent);
    margin-right: 4px;
}

/* Section Header */
.section-tag {
    color: var(--gold-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--forest-green-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 1.4rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #FFF;
    transform: scale(1.1);
}
