/* Reset and Base Styles */
body { 
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    padding-top: 80px; /* Account for fixed navbar */
    background-color: #FEFEFE;
}

/* Modern Header Styles */
.modern-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    text-align: left;
}

.brand-name {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
    color: #C41E3A;
    font-family: 'Georgia', serif;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: #2C2C2C;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Navigation Links */
.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    color: #2C2C2C !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #C41E3A !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #C41E3A;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Right Side Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #2C2C2C;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #C41E3A;
    transform: translateY(-2px);
}

/* Buttons */
.btn-book {
    background: linear-gradient(135deg, #C41E3A 0%, #A01729 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.btn-logout {
    background: transparent;
    color: #2C2C2C;
    border: 1px solid #2C2C2C;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: #2C2C2C;
    color: white;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        padding: 1.5rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .social-icons {
        justify-content: center;
        width: 100%;
    }
}
    font-family: 'Georgia', serif;
}

.btn-book-room:hover {
    background: linear-gradient(135deg, #A01729 0%, #8B1538 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer Styles */
.footer-section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-logo .logo-container {
    margin-bottom: 1rem;
}

/* Content Sections */
#rooms, .py-5 {
    padding: 4rem 0;
    min-height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Fix for rooms section */
#rooms {
    background: #fff;
    margin-top: 0;
}

/* Ensure content sections have proper background */
section {
    position: relative;
    z-index: 1;
}

/* Room Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Buttons */
.btn-accent {
    background: linear-gradient(135deg, #C41E3A 0%, #A01729 100%);
    border-color: #C41E3A;
    color: white;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #A01729 0%, #8B1538 100%);
    border-color: #A01729;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

/* Section Titles */
.brand {
    color: #C41E3A;
    font-weight: 700;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Background Sections */
.bg-light {
    background-color: #F5F5DC !important;
}

.bg-white {
    background-color: #FEFEFE !important;
}

.bg-cream {
    background-color: #F5F5DC !important;
}

/* Mountain Lodge Theme Colors */
.text-primary-lodge {
    color: #C41E3A !important;
}

.text-accent-lodge {
    color: #FFD700 !important;
}

.bg-primary-lodge {
    background-color: #C41E3A !important;
}

.bg-accent-lodge {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%) !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        margin: 0;
    }
    
    .social-icons {
        margin: 1rem 0;
    }
    
    .btn-book-room {
        width: 100%;
        margin-top: 1rem;
    }
    
    #rooms, .py-5 {
        padding: 2rem 0;
    }
}
