/* ===================================
   Ethereal Escapes Hotel - Premium Theme
   Designed by PureCrest Themes
   Premium Luxury Hotel WordPress Theme
   =================================== */

/* CSS Variables - Beige + Charcoal + Soft Gold Palette */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8982f;
    --primary-light: #e5c95b;
    --secondary-color: #36454f;
    --accent-color: #e8d5b7;
    
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --text-white: #ffffff;
    
    --bg-light: #f5f0e8;
    --bg-white: #ffffff;
    --bg-dark: #2b2b2b;
    --bg-beige: #e8d5b7;
    
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo:hover {
    color: var(--primary-color);
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

/* Ensure navbar text is visible on all backgrounds */
.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar .nav-menu a {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li.dropdown {
    position: relative;
}

.nav-menu > li.has-dropdown {
    position: relative;
}

/* Create invisible bridge between nav item and dropdown */
.nav-menu > li.dropdown::after,
.nav-menu > li.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-menu a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a i.fa-chevron-down {
    font-size: 11px;
    transition: transform 0.3s;
}

.nav-menu li:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

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

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

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 40px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    z-index: 1000;
}

.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 30px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 12px;
}

.mega-menu-column ul li a {
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mega-menu-column ul li a i {
    color: var(--secondary-color);
    font-size: 14px;
}

.mega-menu-column ul li a::after {
    display: none;
}

/* Dropdown Menu Styles */
.dropdown-menu,
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 15px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, margin-top 0.2s ease;
    margin-top: 10px;
    list-style: none;
    z-index: 10000;
}

.has-dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-menu > li.dropdown:hover .dropdown-menu,
.nav-menu > li.has-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 15px;
    transform: translateY(0) !important;
}

.dropdown-menu li a,
.dropdown-menu > a {
    color: var(--text-dark);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.dropdown-menu li a:hover,
.dropdown-menu > a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-menu li a i,
.dropdown-menu > a i {
    color: var(--primary-color);
    font-size: 14px;
    width: 20px;
    flex-shrink: 0;
}

.dropdown-menu li a::after,
.dropdown-menu > a::after {
    display: none;
}

.dropdown-header,
.dropdown-subtitle {
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 25px 8px;
    margin-top: 10px;
    display: block;
}

.dropdown-header:first-child,
.dropdown-subtitle:first-child {
    margin-top: 0;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 10px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions .btn {
    padding: 10px 24px;
    font-size: 13px;
}

.btn-login-icon {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.btn-login-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.navbar.scrolled .btn-login-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .btn-login-icon:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: rgba(0, 0, 0, 0.45);

}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-title {
    color: var(--text-white);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

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

/* Quick Booking Widget */
.quick-booking {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.quick-booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: var(--bg-white);
    height: 48px;
}

.form-group textarea {
    height: auto;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome {
    background-color: var(--bg-white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-text {
    padding-right: 40px;
}

.welcome-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.welcome-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 20px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.welcome-badge i {
    font-size: 32px;
    margin-bottom: 10px;
}

.welcome-badge span {
    display: block;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Rooms */
.featured-rooms {
    background-color: var(--bg-light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.room-card {
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.room-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.room-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 18px;
}

.room-price-badge span {
    font-size: 12px;
    font-weight: 500;
}

.room-card-content {
    padding: 30px;
}

.room-card-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.room-card-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.room-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.room-feature i {
    color: var(--primary-color);
}

.room-card-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    height: 500px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Amenities */
.amenities {
    background-color: var(--bg-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.amenity-card {
    text-align: center;
    padding: 40px 30px;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-5px);
}

.amenity-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.amenity-card p {
    color: var(--text-light);
}

/* Loyalty Program */
.loyalty-program {
    background-color: var(--bg-light);
}

.loyalty-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 32px;
    color: var(--text-white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Cancellation Policy */
.cancellation-policy {
    background-color: var(--bg-white);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.policy-card {
    text-align: center;
    padding: 30px 20px;
}

.policy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.policy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.policy-details {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-left: 4px solid var(--primary-color);
}

.policy-details h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.policy-details ul {
    list-style: none;
}

.policy-details ul li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-details ul li i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 14px;
}

/* Blog Section on Homepage */
.blog-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.blog-card-home {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.blog-card-home:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.blog-card-home:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 30px;
}

.blog-meta-home {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-meta-home i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.section-cta {
    text-align: center;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--primary-color);
    border: none;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    z-index: 10000;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 18px;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Loyalty Modal */
.loyalty-modal-content {
    padding: 40px;
}

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

.loyalty-modal-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.loyalty-modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.loyalty-modal-header p {
    color: var(--text-light);
}

.loyalty-form .form-row-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.loyalty-benefits-preview {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.loyalty-benefits-preview h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.loyalty-benefits-preview ul {
    list-style: none;
}

.loyalty-benefits-preview li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.loyalty-benefits-preview li i {
    color: var(--primary-color);
}

/* Auth Modal (Combined Login & Register) */
.auth-modal-content {
    padding: 0;
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 3px solid transparent;
}

.auth-tab:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-dark);
}

.auth-tab.active {
    background: white;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.auth-tab i {
    font-size: 18px;
}

.auth-tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.auth-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.auth-header p {
    color: var(--text-light);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 12px 15px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.remember-me input[type="checkbox"] {
    width: auto;
    height: auto;
    margin: 0;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    height: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.auth-form .form-row-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .welcome-content { grid-template-columns: 1fr; gap: 40px; }
    .welcome-text { padding-right: 0; }
    .rooms-grid { grid-template-columns: 1fr; }
    .quick-booking-form { grid-template-columns: 1fr; }
    .loyalty-form .form-row-modal,
    .auth-form .form-row-modal { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .hero-buttons .btn { width: 100%; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    
    /* Enhanced Mobile Styles */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .logo-img { height: 50px !important; }
    .stats-grid,
    .amenities-grid { grid-template-columns: 1fr; gap: 20px; }
    .form-grid,
    .guest-form-grid { grid-template-columns: 1fr !important; }
    .booking-summary { position: static; width: 100%; margin-top: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .btn { padding: 12px 20px; width: 100%; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn-group .btn { width: 100%; margin: 5px 0; }
    .modal-container { width: 95%; padding: 20px; }
    table { font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .nav-actions .btn-login-icon,
  .nav-actions .btn.btn-primary {
      display: none !important;
  }
}
/* Hide quick booking widget on mobile */
@media (max-width: 768px) {
  .quick-booking {
    display: none !important;
  }
}
/* FORCE hide booking widget on mobile (strong + specific) */
@media (max-width: 768px) {
  section.hero .quick-booking,
  .hero .quick-booking {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  section.hero .quick-booking * ,
  .hero .quick-booking * {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 0 !important;
  }
  .welcome {
    margin-top: 0 !important;
  }
}



