/* public/css/style.css */

body {
    font-family: 'Maiandra GD', 'Segoe UI', sans-serif;
    background-color: #cac9c946;
    color: #333;
}

.hero {
    background: url('/images/hotel-bg.jpg') no-repeat center center/cover;
    color: white;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.btn-success {
    background-color: #85490a;
    border: none;
}

.section-title {
    font-weight: 600;
    color: #2d6a4f;
}


/* topbar icons hover effect */
.bg-dark a:hover {
    opacity: 0.7;
}


/* =====================
   Hero Section
   ===================== */
.hero-section {
    background: linear-gradient(to bottom, #1f3b2c, #2d4739, #3f5f4a);
    color: #fff;
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    z-index: 5;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-section h1 {
    font-size: 3.2rem;
}

.hero-section p {
    font-size: 1.25rem;
}



/* ============================
   Forest Header Background
   ============================ */

.main-header {
    background: url('../images/forest-tile.png') repeat-x bottom;
    background-color: #cacbca; /* fallback base */    
    background-size: auto 100px;
    height: 90px;
    position: relative;
    color: #fff;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure nav text shows above forest */
.main-header .navbar {
    position: relative;
    z-index: 2;
}

/* Optional overlay fade (if trees too strong) */
.main-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,59,42,0.9), rgba(27,59,42,0.4) 50%, transparent);
    z-index: 1;
}

/* Navbar text color */
.main-header .navbar-brand,
.main-header .nav-link {
    color: #fff !important;
}

.main-header .nav-link:hover {
    text-decoration: underline;
}




/* =======================
   Sun Rays & Mist
========================= */

.sun-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.15), transparent 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
}

.mist-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
    z-index: 3;
    pointer-events: none;
}

/* =======================
   Animated Birds
========================= */

.birds-container {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.bird {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><path fill='white' d='M2 12c4-2 6-2 10 0s6 2 10 0l-2 3c-4 1-6 1-8 0s-4-1-8 0z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    animation: fly 12s linear infinite;
}

.bird-1 {
    top: 10px;
    left: -60px;
    animation-delay: 0s;
}

.bird-2 {
    top: 30px;
    left: -80px;
    animation-delay: 4s;
    animation-duration: 16s;
}

.bird-3 {
    top: 20px;
    left: -100px;
    animation-delay: 8s;
    animation-duration: 18s;
}

@keyframes fly {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(110vw) scale(1.1);
        opacity: 0;
    }
}


/* =====================
   Realistic Rain Drops
===================== */

.rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.raindrop {
    position: absolute;
    top: -10px;
    width: 2px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: dropFall 1.8s linear infinite;
    opacity: 0.7;
    filter: blur(0.2px);
}

@keyframes dropFall {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(240px);
        opacity: 0;
    }
}


/* Top Headerr */
.bg-custom-brown {
    background-color: #85490a;
    
}


#heroCarousel {
    margin-top: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
}



.hero-slide {
    height: 50vh;
    width: 100%;
    background-size: cover;             /* Desktop: cover the whole area */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
    .hero-slide {
        background-size: contain;       /* On smaller screens, show entire image */
        background-color: #000;         /* Optional: fill behind image */
    }
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
    color: white;                      /* Ensures text is visible */
    background-color: rgba(0, 0, 0, 0.3); /* Optional: slight dark overlay for readability */
}




/* Individual slides with hotel background images */
.slide-1,
.slide-2,
.slide-3
.slide-4 {
    background-size: cover;       /* Makes image fill the area without distortion */
    background-position: center;  /* Keeps focus in the center */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 100vh;                /* Full viewport height */
    width: 100%;                  /* Full width */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slideShow 15s infinite;
}
.slide-1 {
    background-image: url('/images/slides/front.png');
    animation-delay: 0s;
}
.slide-2 {
    background-image: url('/images/slides/back.png');
    animation-delay: 5s;
}
.slide-3 {
    background-image: url('/images/slides/rooms.png');
    animation-delay: 5s;
}
.slide-4 {
    background-image: url('/images/sledes/bandas.jpg');
    animation-delay: 5s;
}


@keyframes slideShow {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    30%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}



.service-box {
    height: 320px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 12px #f39f46;
    width: 100%;
}

.service-box:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 12px #85490a;
}

/* 🌄 Background images */
.bg-room {
    background-image: url('/images/conv/room.jpg');
}

.bg-dining {
    background-image: url('/images/conv/dining.jpg');
}

.bg-events {
    background-image: url('/images/conv/events.jpg');
}

.bg-swimming {
    background-image: url('/images/conv/swimming.jpg');
}

/* 🌫 Overlay with slight blur or tint */
.service-box .overlay {
    background: #85490a; /* black tint */
    height: 25%;
    width: 100%;
    position: absolute;
    font-size: 12;
   /* backdrop-filter: blur(4px); /* frosted glass feel */
    color: #fff;
    transition: background 0.3s ease;
}


/* Testimonials  */
.testimonial-section {
    background: radial-gradient(circle at top left, #ffffff 0%, #f3f3f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/sparkles.gif'); /* Transparent sparkle GIF or CSS animation */
    background-size: cover;
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.testimonial {
    max-width: 600px;
    margin: auto;
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: scale(1.02);
}

.testimonial img {
    border: 3px solid #198754;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-item {
    transition: opacity 1s ease-in-out;
}


/* Back to Top */
.back-to-top {
    position: fixed;
    display: flex;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    color: #125a17;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0.9;
}

.back-to-top:hover {
    background-color: #85490a;
    color: #ffffff;
    transform: translateY(-3px);
}


#userwayAccessibilityIcon {
  top: 10px !important;
  right: 10px !important;
  z-index: 99999 !important;
}



.accessibility-widget {
    z-index: 1055;
}
@media (max-width: 768px) {
    .accessibility-widget {
        top: auto;
        bottom: 70px;
    }
}


.awards-gallery img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.awards-gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


.brand-text {
    color: #ffffff;
}




.navbar-brand img {
  max-height: 60px;
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 45px;
  }

  .navbar-brand span {
    font-size: 0.95rem;
  }
}


.text-golf {
  color: #ffffff;
}
