/* 
* SnowHills - Winter Theme Park
* Main Stylesheet
*/

/* ===== Base Styles ===== */
:root {
    --primary: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #bbdefb;
    --secondary: #78909c;
    --dark: #263238;
    --light: #f5f9ff;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --info: #00bcd4;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  /* ===== Navbar ===== */
  .navbar {
    transition: background-color 0.3s ease;
    padding: 40px 0;
  }
  
  /* .navbar.scrolled {
    background-color: rgba(38, 50, 56, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  } */
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 70%;
  }

  @media (max-width: 767.98px) {
    .nav-link::after {
      display: none !important;
    }
  }
  
  /* ===== Hero Section ===== */
  .hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../admin/public/m.jpg') /* Adjusted the URL to be relative to the CSS file location */
    no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}


/* Snowfall Styles */


.snowflake {
  position: absolute;
  color: white;
  font-size: 10px;
  opacity: 0.8;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(100vh);
  }
}


.snowflake {
  position: absolute;
  top: -30px;
  color: white;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}


  .snow {
    display: none;
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  }
  
  .snow::before,
  .snow::after {
    content: "";
    position: absolute;
    top: -600px;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(white, transparent);
    border-radius: 50%;
  }
  
  .snow::before {
    animation: snowfall 10s linear infinite;
    opacity: 0.7;
  }
  
  .snow::after {
    animation: snowfall 15s linear infinite 2s;
    opacity: 0.3;
  }
  
  @keyframes snowfall {
    0% {
      transform: translateY(0) translateX(0);
    }
    25% {
      transform: translateY(150vh) translateX(100px);
    }
    50% {
      transform: translateY(300vh) translateX(-100px);
    }
    75% {
      transform: translateY(450vh) translateX(50px);
    }
    100% {
      transform: translateY(600vh) translateX(-50px);
    }
  }
  
  /* ===== Page Header ===== */
  .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url('../admin/public/Igloo.jpg') /* Adjust the URL to be relative to your project */
      no-repeat center center / cover;
    padding: 150px 0 80px;
    margin-bottom: 0;
}
  
  .breadcrumb {
    background: transparent;
    margin-bottom: 0;
  }
  
  .breadcrumb-item a {
    color: var(--primary-light);
  }
  
  .breadcrumb-item.active {
    color: white;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    color: white;
  }
  
  /* ===== Feature Icons ===== */
  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
  }
  
  /* ===== Attraction Cards ===== */
  .attraction-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }
  
  .attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }
  
  .attraction-card img {
    transition: transform 0.5s ease;
    height: 200px;
    object-fit: cover;
  }
  
  .attraction-card:hover img {
    transform: scale(1.1);
  }
  
  /* ===== Testimonials ===== */
  .testimonial-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
  }
  
  .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-text {
    font-style: italic;
    color: #555;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
  
  .carousel-control-prev {
    left: -20px;
  }
  
  .carousel-control-next {
    right: -20px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
  
  /* ===== Team Cards ===== */
  .team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }
  
  .team-card img {
    height: 250px;
    object-fit: cover;
  }
  
  .team-card .social-links a {
    color: var(--secondary);
    transition: color 0.3s ease;
  }
  
  .team-card .social-links a:hover {
    color: var(--primary);
  }
  
  /* ===== Timeline ===== */
  .timeline {
    position: relative;
    padding: 20px 0;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--primary-light);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
  }
  
  .timeline-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  /* ===== Attraction Filters ===== */
  .attraction-filter {
    margin-bottom: 30px;
  }
  
  .attraction-filter .btn {
    border-radius: 30px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
  }
  
  .attraction-filter .btn:not(.active) {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
  }
  
  .attraction-filter .btn:hover:not(.active) {
    background-color: var(--primary-light);
    color: var(--primary-dark);
  }

  .attractions-container .card-img-top {
    height: 250px; /* Adjust height as needed */
    object-fit: cover;
  }
  @media (max-width: 768px) {
    .attractions-container .card-img-top {
      height: 180px;
    }
  }

  
  /* ===== Contact Page ===== */
  .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--primary);
    color: white;
  }
  
  /* ===== Booking Page ===== */
  .booking-step {
    display: none;
  }
  
  .booking-step.active {
    display: block;
  }
  
  .ticket-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ticket-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  }
  
  .ticket-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .ticket-quantity {
    display: flex;
    align-items: center;
  }
  
  .quantity-input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
  }
  
  .confirmation-icon {
    font-size: 5rem;
    color: var(--success);
  }
  
  /* ===== Footer ===== */
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #adb5bd;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  .contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
  }
  
  .contact-info i {
    color: var(--primary);
    margin-top: 4px;
  }
  
  /* ===== Responsive Styles ===== */
  @media (max-width: 991.98px) {
    .timeline::before {
      left: 30px;
    }
  
    .timeline-dot {
      left: 30px;
    }
  
    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px !important;
    }
  
    .carousel-control-prev,
    .carousel-control-next {
      display: none;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero {
      min-height: 500px;
    }
  
    .page-header {
      padding: 120px 0 60px;
    }
  
    .attraction-filter .btn {
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 575.98px) {
    .ticket-item .row {
      flex-direction: column;
    }
  
    .ticket-item .col-md-3,
    .ticket-item .col-md-6 {
      text-align: center;
      margin-bottom: 10px;
    }
  
    .ticket-quantity {
      justify-content: center;
    }
  }

  #logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.image-container {
    position: relative;
    width: 100%;
    height: auto;
}

.background-image {
    width: 100%;
    height: auto;
    display: block;
}

.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none; /* Ensures snowflakes don't interfere with user interactions */
  z-index: 9999; /* Keeps the snowflakes on top */
}

.snowflake {
    position: absolute;
    color: white;
    opacity: 0.8;
}
  