/* ==========================================================================
   Royal Hotel - Main Style Sheet
   Premium Dark Glassmorphism Design System
   ========================================================================== */

/* --- Custom Theme Variables --- */
:root {
    --primary-gold: #dca523;
    --primary-gold-hover: #f2c85b;
    --primary-gold-dark: #b88314;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #666666;
    --glass-bg: rgba(22, 22, 22, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(14px);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.4);
    --font-inter: 'Inter', sans-serif;
}

/* --- Global Reset & Defaults --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: var(--font-inter);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* --- Selection styling --- */
::selection {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold-dark), var(--primary-gold-hover));
    width: 0%;
    z-index: 1100;
    transition: width 0.1s ease-out;
}

/* --- Navigation Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.main-header.scrolled .logo-image {
    max-height: 52px;
}

.header-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    max-height: 96px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    color: var(--text-gray);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Specialized highlighted style for Special Offers */
.nav-link.highlight {
    color: var(--primary-gold);
    background: rgba(220, 165, 35, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(220, 165, 35, 0.3);
}

.nav-link.highlight:hover {
    background: rgba(220, 165, 35, 0.2);
    color: var(--primary-gold-hover);
    border-color: rgba(220, 165, 35, 0.5);
}

.nav-link.highlight::after {
    display: none;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.mobile-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(18, 18, 18, 0.35) 0%,
        rgba(18, 18, 18, 0.55) 60%,
        rgba(18, 18, 18, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    margin-top: -60px;
    animation: fadeInDown 1.2s ease-out;
}

/* Glassmorphic Content Card for Ultramodern Contrast */
.hero-content-card {
    background: rgba(18, 18, 18, 0.42);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 55px 60px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: scaleCardIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleCardIn {
    from { opacity: 0; transform: scale(0.95) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Ambient glow spot behind card */
.hero-light-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(220, 165, 35, 0.18) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
    animation: breathingGlow 8s ease-in-out infinite alternate;
}

@keyframes breathingGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(220,165,35,0.7) 0%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.floating-particle.p1 { top: 20%; left: 15%; animation: floatY1 8s ease-in-out infinite; }
.floating-particle.p2 { top: 60%; right: 12%; width: 9px; height: 9px; animation: floatY2 12s ease-in-out infinite; }
.floating-particle.p3 { bottom: 15%; left: 25%; width: 5px; height: 5px; animation: floatY1 10s ease-in-out infinite; }

@keyframes floatY1 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(20px); opacity: 0.8; }
}

@keyframes floatY2 {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
    50% { transform: translateY(50px) translateX(-30px); opacity: 0.9; }
}

/* Welcome Badge with Glassmorphism & Floating Effect */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 165, 35, 0.08);
    border: 1px solid rgba(220, 165, 35, 0.35);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 5px 15px rgba(220, 165, 35, 0.08);
    animation: floatBadge 4s ease-in-out infinite, fadeInDown 1s ease-out;
}

.welcome-badge i {
    font-size: 0.85rem;
    color: var(--primary-gold-hover);
    animation: rotateCrown 5s ease-in-out infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 12px;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: titleReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-divider {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto 30px auto;
    animation: expandDivider 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUpOnly 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUpOnly 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

/* Button Icon Styling */
.btn-icon {
    font-size: 0.8rem;
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Scroll Down Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUpOnly 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    background: rgba(18, 18, 18, 0.2);
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-down {
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: arrowPulse 1.8s infinite;
}

/* --- Hero & Landing Animations --- */
@keyframes cinematicZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes rotateCrown {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        letter-spacing: 4px;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        letter-spacing: 12px;
        transform: translateY(0);
    }
}

@keyframes expandDivider {
    from { width: 0; }
    to { width: 160px; }
}

@keyframes fadeInUpOnly {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(8px); opacity: 0; }
}

@keyframes arrowPulse {
    0% { opacity: 0; transform: rotate(45deg) translate(-2px, -2px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(2px, 2px); }
}

/* Buttons System */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn-primary:hover {
    background-color: var(--text-white);
    color: var(--dark-bg);
    border-color: var(--text-white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border: 1px solid var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
    box-shadow: 0 10px 25px rgba(220, 165, 35, 0.35);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Social Media Floater --- */
.social-floater {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    animation: fadeInRight 1.5s ease-out;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.social-link:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateX(-5px);
    box-shadow: -5px 5px 15px rgba(220, 165, 35, 0.3);
}

/* --- Booking Widget Panel --- */
.booking-widget-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 5;
    animation: fadeInUp 1.2s ease-out;
}

.booking-form {
    background: rgba(20, 20, 20, 0.72);
    border: 1px solid rgba(220, 165, 35, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 240px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.booking-form:hover, .booking-form:focus-within {
    border-color: rgba(220, 165, 35, 0.45);
    box-shadow: 0 25px 55px rgba(220, 165, 35, 0.08), 0 0 0 1px rgba(220, 165, 35, 0.15);
}

.field-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.field-icon {
    font-size: 0.75rem;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.booking-field:hover .field-icon {
    transform: scale(1.2);
    color: var(--primary-gold-hover);
}

.booking-field {
    padding: 20px 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    transition: var(--transition-smooth);
}

.booking-field:hover {
    background: rgba(255, 255, 255, 0.02);
}

.booking-field label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.booking-field input, .booking-field select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 0;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.booking-field input:focus, .booking-field select:focus {
    border-color: var(--primary-gold);
}

/* Select wrapper for chevron styling */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    padding-right: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    pointer-events: none;
    color: var(--text-gray);
}

/* Booking button specific styling */
.btn-book-now {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: pulseGoldButton 3s infinite;
}

.book-btn-icon {
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-book-now:hover {
    background-color: var(--primary-gold-hover);
}

.btn-book-now:hover .book-btn-icon {
    transform: translateX(4px) translateY(-2px) rotate(-10deg);
}

@keyframes pulseGoldButton {
    0% { box-shadow: 0 0 0 0 rgba(220, 165, 35, 0.45); }
    70% { box-shadow: 0 0 0 10px rgba(220, 165, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 165, 35, 0); }
}

.btn-book-now:hover {
    background-color: var(--primary-gold-hover);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* --- Section Formatting System --- */
section {
    padding: 100px 0;
}

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}

/* --- Rooms Section --- */
.rooms-section {
    background-color: #161616;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(220, 165, 35, 0.25);
}

/* Highlight the popular room style */
.room-card.featured {
    border: 1px solid rgba(220, 165, 35, 0.4);
    position: relative;
}

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.room-image-wrapper {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Background image settings for room classes */
.room-card#room-card-classic .room-image-wrapper {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('room_classic.png');
}

.room-card#room-card-deluxe .room-image-wrapper {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('room_deluxe.png');
}

.room-card#room-card-presidential .room-image-wrapper {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), url('room_presidential.png');
}

.room-price {
    position: absolute;
    bottom: 15px;
    left: 20px;
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-gold-hover);
    z-index: 3;
}

.room-price span {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Hover details sliding on image */
.room-overlay-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(8px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2;
}

.room-card:hover .room-overlay-info {
    bottom: 0;
}

.room-overlay-info h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.room-overlay-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.room-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.room-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.room-features li i {
    color: var(--primary-gold);
    margin-right: 8px;
    width: 14px;
    text-align: center;
}

.btn-card-book {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    width: 100%;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-card-book:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
}

/* --- Special Offers Section --- */
.offers-section {
    background-color: var(--dark-bg);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition-smooth);
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 165, 35, 0.2);
}

.offer-card.featured-offer {
    border: 1px solid rgba(220, 165, 35, 0.4);
    box-shadow: 0 10px 30px rgba(220, 165, 35, 0.05);
}

.offer-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.offer-valid {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Journal Section --- */
.blog-section {
    background-color: #161616;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-post {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-image-placeholder {
    width: 40%;
    min-height: 200px;
    background: linear-gradient(135deg, #2b2b2b, #121212);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.5rem;
}

.blog-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-readmore {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-readmore i {
    transition: var(--transition-smooth);
}

.blog-readmore:hover {
    color: var(--primary-gold);
}

.blog-readmore:hover i {
    transform: translateX(5px);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--dark-bg);
}

.contact-box {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-gold-dark), #735308);
    padding: 60px 50px;
    color: var(--dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-details-list li i {
    font-size: 1.1rem;
    width: 20px;
}

.contact-form-wrapper {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px 18px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--text-white);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-success-msg {
    display: none;
    background-color: rgba(220, 165, 35, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    color: var(--primary-gold-hover);
    padding: 15px;
    margin-top: 20px;
    font-weight: 600;
    align-items: center;
    gap: 10px;
}

/* --- Footer --- */
.site-footer {
    background-color: #0c0c0c;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a:hover {
    color: var(--primary-gold-hover);
}

/* --- Modal Overlays --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--card-bg);
    width: 90%;
    max-width: 550px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 55px rgba(0,0,0,0.5);
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-card.info-card {
    max-width: 650px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary-gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-bell {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.modal-header p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.modal-body.text-content {
    line-height: 1.8;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.modal-body.text-content p {
    margin-bottom: 15px;
}

.modal-body.text-content ul {
    margin: 15px 0 20px 20px;
}

.modal-body.text-content ul li {
    margin-bottom: 8px;
}

/* Summary Details Layout */
.summary-details {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.summary-label {
    color: var(--text-gray);
}

.summary-value {
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 15px 0;
}

.total-row {
    font-size: 1.1rem;
    font-weight: 700;
}

.highlight-price {
    color: var(--primary-gold-hover);
    font-size: 1.25rem;
}

/* Modal confirm form styles */
.modal-confirm-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.modal-confirm-form input {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    color: var(--text-white);
}

.modal-confirm-form input:focus {
    border-color: var(--primary-gold);
}

/* --- Toast notification style --- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--card-bg);
    border: 1px solid var(--primary-gold);
    box-shadow: var(--shadow-premium);
    border-radius: 8px;
    padding: 18px 24px;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(150%);
    transition: var(--transition-smooth);
}

.toast.show {
    transform: translateY(0);
}

.toast i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.toast strong {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.toast p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* --- Animations Definitions --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(30px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* --- Responsive Media Queries --- */

/* Laptops & Small Desktops (max-width: 1200px) */
@media screen and (max-width: 1200px) {
    .booking-form {
        grid-template-columns: repeat(4, 1fr) 180px;
    }
    .booking-field {
        padding: 15px 20px;
    }
    .rooms-grid, .offers-grid {
        gap: 20px;
    }
}

/* Tablets (max-width: 992px) */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 24px;
    }
    .booking-field {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 20px;
    }
    .booking-field:nth-child(even) {
        border-left: 1px solid var(--glass-border);
    }
    .btn-book-now {
        grid-column: span 2;
        padding: 20px;
    }
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .contact-box {
        grid-template-columns: 1fr;
    }
    .contact-info {
        padding: 40px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .mobile-toggle {
        display: flex;
    }
    
    /* Responsive Navigation drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #121212;
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        z-index: 999;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .social-floater {
        display: none; /* Hide vertical social links on small screens */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    
    .booking-widget-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .booking-field {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .booking-field:nth-child(even) {
        border-left: none;
    }
    
    .btn-book-now {
        grid-column: span 1;
    }
    
    .hero-section {
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-image-placeholder {
        width: 100%;
        height: 150px;
    }
    
    .blog-content {
        width: 100%;
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 40px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
