:root {
    --primary-gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941F;
    --accent-gold: #E8C468;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-light: #F8F8F8;
    
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #494949;
    --text-light: #4b4b4b;
    
    --border-light: #E8E8E8;
    --border-medium: #D0D0D0;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.1);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    /* border-bottom: 1px solid var(--border-light); */
    padding: 1.2rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

/* Logo Styles - Updated for image */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary) !important;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Fallback for missing logo - creates a styled text placeholder */
.navbar-logo[src=""], 
.navbar-logo:not([src]) {
    display: none;
}

.navbar-brand:hover {
    color: var(--primary-gold) !important;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Icon fallback - if no logo image */
.navbar-brand i {
    color: var(--primary-gold);
    margin-right: 8px;
    font-size: 1.8rem;
    display: none; /* Hidden by default, shows only if logo fails */
}

.navbar-brand .brand-text {
    transition: var(--transition-smooth);
}

.navbar-brand:hover .brand-text {
    color: var(--primary-gold);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-link:hover::after {
    width: 60%;
}

/* Scrolled navbar effect */
.navbar-custom.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled .navbar-logo {
    height: 38px;
}

.navbar-custom.scrolled .brand-text {
    font-size: 1.3rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navbar-custom {
        padding: 0.8rem 0;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
    
    .navbar-custom.scrolled .navbar-logo {
        height: 30px;
    }
    
    .navbar-custom.scrolled .brand-text {
        font-size: 1rem;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .navbar-brand {
        gap: 8px;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}
/* ===== HERO SECTION ===== */
.hero-landing {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay for better text readability */
.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-landing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 6px;
    color: var(--accent-gold, #D4AF37);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--font-body, 'Poppins', sans-serif);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--accent-gold, #D4AF37);
}

.hero-subtitle::before {
    left: -50px;
}

.hero-subtitle::after {
    right: -50px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--accent-gold, #D4AF37);
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-body, 'Poppins', sans-serif);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Booking Widget - Enhanced */
.booking-widget {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.booking-widget .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 0.25rem;
}

.booking-widget .form-control,
.booking-widget .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
    border-color: var(--accent-gold, #D4AF37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    color: white;
    font-size: 0.8rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--accent-gold, #D4AF37);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@media (max-width: 768px) {
    .booking-widget {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 20px;
    }
    
    .hero-subtitle::before {
        left: -30px;
    }
    
    .hero-subtitle::after {
        right: -30px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}
/* ===== BOOKING WIDGET ===== */
.booking-widget {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-end;
    box-shadow: var(--shadow-xl);
    max-width: 1200px;
    width: 95%;
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 16px 16px 0 0;
}

.booking-widget .form-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-widget .form-control, 
.booking-widget .form-select {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-light);
    border-radius: 0;
    color: var(--text-primary);
    padding: 0.75rem 0.25rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.booking-widget .form-control:focus, 
.booking-widget .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-gold);
    outline: none;
}

/* ===== BUTTONS ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-gold:active {
    transform: translateY(0);
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 6rem 0;
}

.section-title-sm {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ===== ROOM CARDS ===== */
.room-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.room-img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img {
    transform: scale(1.08);
}

.room-details {
    padding: 2rem;
    background: var(--bg-primary);
}

.room-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.room-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.text-gold {
    color: var(--primary-gold) !important;
}

/* ===== ROYAL PACKAGE BOX ===== */
.royal-package-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 3rem;
    text-align: center;
    border-radius: 16px;
    border: 2px solid var(--primary-gold);
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.royal-package-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.royal-package-box > * {
    position: relative;
    z-index: 1;
}

/* ===== SPINNER ===== */
.spinner-border.text-gold {
    color: var(--primary-gold) !important;
    border-width: 3px;
}


/* ===== FOOTER ===== */
.footer-dark {
    background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
    color: #FFFFFF;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.footer-brand:hover {
    transform: translateY(-2px);
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.footer-brand:hover .footer-logo {
    transform: scale(1.05);
}

.footer-brand i {
    color: var(--primary-gold);
    margin-right: 8px;
    font-size: 2rem;
    display: none; /* Hidden by default, shows if logo fails */
}

.footer-brand span {
    transition: var(--transition-smooth);
}

.footer-brand:hover span {
    color: var(--primary-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

/* Newsletter input styling */
.footer-dark .input-group .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.footer-dark .input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-gold);
    box-shadow: none;
}

.footer-dark .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-gold {
    background: var(--primary-gold);
    color: #1A1A1A;
    border: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    background: var(--primary-gold-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-dark {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-brand {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-brand i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 35px;
    }
    
    .footer-brand span {
        font-size: 1rem;
    }
}

/* ===== FORM ELEMENTS ===== */
.form-control, .form-select {
    border: 1px solid var(--border-medium);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background-color: var(--bg-primary);
    outline: none;
}

.form-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* ===== UTILITIES ===== */
.text-muted {
    color: var(--text-muted) !important;
}

.bg-white {
    background-color: var(--bg-secondary) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .booking-widget {
        padding: 1.5rem;
        gap: 1rem;
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-widget {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.75rem;
    }
    
    .booking-widget > div {
        width: 100% !important;
    }
    
    .hero-landing {
        padding-top: 100px;
        min-height: 80vh;
        justify-content: flex-start;
    }
    
    .royal-package-box {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .btn-gold {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}
