/* Modern Hotel Website Styles */
:root {
    --primary: #8f1402;
    --primary-dark: #6B4C2F;
    --secondary: #c66b05;
    --light: #F8F9FA;
    --dark: #343A40;
    --accent: #C19A6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    color: white;
    padding: 3px 0;
    font-size: 14px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent);
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

/* Navigation */
.navbar {
    padding: 2px 0;
    transition: all 0.3s;
}

.logo {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-book {
    background: var(--primary);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/bg-img/Reception.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: white;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 0;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

/* Features */
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    color: white;
    padding: 60px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #281909;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
}

.copyright {
    background: rgba(0,0,0,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
}

/* Image Gallery */
.gallery-container {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
    background-size: cover;
    background-position: center;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.gallery-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Statistics */
.statistics-section {
    background: linear-gradient(rgba(44,62,80,0.9), rgba(44,62,80,0.9)), url('../img/bg-img/rumtek_monastery.jpg');
    background-size: cover;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .btn-book {
        width: 100%;
        margin-top: 10px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Modal Styling */
.modal-content {
    border-radius: 10px;
    border: none;
}

.form-floating label {
    color: #666;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(139, 107, 71, 0.25);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider .carousel {
    height: 100%;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video Background Styles */
.hero-slider .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slider .video-foreground,
.hero-slider .video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-slider .video-background .slide-img {
    display: none;
}

.hero-slider .video-background.no-video .slide-img {
    display: block;
}

/* Carousel Caption */
.hero-slider .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-slider .hero-content {
    max-width: 100% !important;
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero-slider .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-slider .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-slider .hero-content .line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-slider .btn-hero {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary);
}

.hero-slider .btn-hero:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.hero-slider .btn-hero.btn-outline-light {
    background: transparent;
    border-color: white;
    color: white;
}

.hero-slider .btn-hero.btn-outline-light:hover {
    background: white;
    color: var(--dark);
}

/* Carousel Controls */
.hero-slider .carousel-indicators {
    bottom: 30px;
    margin: 0;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    border: 2px solid white;
    background: transparent;
    opacity: 0.7;
    transition: all 0.3s;
}

.hero-slider .carousel-indicators button.active {
    background: white;
    opacity: 1;
    transform: scale(1.2);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    transition: all 0.3s;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev {
    left: 30px;
}

.hero-slider .carousel-control-next {
    right: 30px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slider .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .hero-slider .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .hero-slider .carousel-control-prev {
        left: 15px;
    }
    
    .hero-slider .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-slider .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-slider .hero-content p {
        font-size: 1rem;
    }
    
    .hero-slider .btn-hero {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-slider .carousel-indicators {
        bottom: 20px;
    }
    
    .hero-slider .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-slider .hero-content {
        padding: 0.5rem;
    }
    
    .hero-slider .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-slider .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-slider .btn-hero {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-slider .carousel-caption {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    }
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.6s;
    opacity: 0;
}

/* Ensure content is visible after animation */
.fade-in-up,
.delay-1,
.delay-2 {
    animation-fill-mode: forwards;
}