/*---------------------------------------------
  Font
---------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/*---------------------------------------------
  Utility
---------------------------------------------*/

:root {
  --primary-color: #0b0f18;
  --secondary-color: #131417;
  --brand-color: #327DC2;
}

html {
  scroll-behavior: smooth;
  
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--primary-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

p, ul, ol {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  color: #ffffff;
}

b, strong {
  font-weight: 600;
  color: var(--brand-color);
}

a.button, button {
  position: relative;
  display: inline-block;
  background-color: #3273c3;
  box-shadow: none;
  border-radius: 8px;
  padding: 10px 20px;
  margin-top: 10px;
  top: 0;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
  transition: 0.3s;
}

a.button {
  text-shadow: 0 4px 5px rgb(28 31 50 / 20%);
  text-decoration: none;
}

a.button:hover, button:focus {
  top: 2px;
  box-shadow: 1px 0 0 rgba(65, 133, 215, 0.4), 0 1px 5px 0px rgba(12, 9, 4, 0.35);
}

img {
  max-width: 100%;
}

svg {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  margin-top: 100px;
  z-index: 1;
}

.section-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: var(--brand-color);
  display: block;
  margin: 10px auto 0;
}

.section-title strong {
  display: block;
  color: var(--brand-color);
  font-weight: 700;
  font-size: 36px;
}

.package {
  background: var(--secondary-color);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
}

#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* Ensure it is above all other content */
  pointer-events: none; /* Prevent interaction with other elements */
  background: transparent;
}

@keyframes fall {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

/*---------------------------------------------
  Preloader
---------------------------------------------*/

#loader {
  position: relative;
  z-index: 40;
}

#loader .loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 24, 0.8); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Blurry background effect */
  color: #ededed;
}

#loader .logo-wrapper {
  position: relative;
  margin-bottom: 20px; /* Space between spinner and text */
}

#loader .logo-spinner {
  height: 128px;
  width: 128px;
  animation: spin 1s linear infinite;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.05);
  border-left-color: #2158b3;
}

#loader .logo-image {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 85%;
  width: 85%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  padding: 1.3rem;
  text-align: center;
}

#loader .logo-image img {
  height: 100%;
  width: 100%;
  object-fit: contain; /* Ensure the image scales correctly */
}

#loader .loader-status {
  padding: 0 10px;
  text-align: center;
}

#loader .loader-status h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px; /* Added margin to separate from other text */
}

#loader .loader-status p, #loader .loader-status noscript {
  margin: 5px 0; /* Consistent spacing between paragraphs */
}

#loader .loader-status noscript {
  display: inline-block;
  background: #ef4444;
  padding: 2px 5px;
  border-radius: 5px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*---------------------------------------------
  Cookies
---------------------------------------------*/

#cookie-popup {
  position: fixed;
  bottom: 20px;
  width: 350px;
  margin: 0 20px;
  border-radius: 5px;
  background-color: var(--secondary-color);
  padding: 15px;
  z-index: 100; /* Ensure it is above other content */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
  display: none; /* Hidden by default */
}

#cookie-popup.show {
  display: block; /* Show when needed */
}

#cookie-popup #cookie-header img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 10px; /* Center image and add margin */
}

#cookie-popup #cookie-body p,
#cookie-popup #cookie-body a {
  font-size: 14px; /* Adjust font size for readability */
  margin: 0;
  color: #ffffff; /* Ensure text color is white */
}

#cookie-popup #cookie-body a {
  color: var(--brand-color); /* Use brand color for links */
  text-decoration: underline; /* Underline links */
}

#cookie-popup #btn-cookie {
  display: block;
  width: 100%;
  margin-top: 10px;
  background-color: var(--brand-color);
  color: #ffffff;
  border: none;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#cookie-popup #btn-cookie:hover {
  background-color: #2158b3; /* Darken on hover */
}

@media screen and (max-width: 400px) {
  #cookie-popup {
    width: auto;
    margin: 0 10px; /* Adjust margin for smaller screens */
  }
}

/*---------------------------------------------
  Header
---------------------------------------------*/

#hero {
    min-height: 80vh; /* Maintain overall height reduction */
    padding-top: 300px; /* Keep the top padding as is */
    padding-bottom: 30px; /* Further reduced bottom padding */
    margin: 0;
    position: relative;
    overflow: hidden;
    text-align: center; /* Center text for mobile and tablet views */
  }
  
  #hero:before {
    content: "";
    position: absolute;
    background-color: var(--brand-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.719); /* Add this line for dark overlay */
    mix-blend-mode: multiply; /* Optional: Enhances the overlay effect */
  }
  
  #hero:after {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, var(--primary-color) 1%, transparent 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  
  #hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
  }
  
  #hero p {
    font-size: 1.25rem; /* Adjust font size as needed */
    line-height: 1.5; /* Improve line height for readability */
    color: #ffffff;
  
    margin: 0 auto; /* Center the paragraph */
    max-width: 80%; /* Limit width for better text alignment */
    text-align: center; /* Center the text */
  }
  
  #hero .hero-image {
    width: 250px; /* Adjusted size for better visibility */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 20px auto 10px auto; /* Reduced top margin, small bottom margin */
  }
  
  .text-center {
    text-align: center;
  }
  
  .scroll-down {
    text-decoration: none; /* Remove the underline */
    display: inline-block; /* Ensure it's treated as an inline block */
  }
  
  .scroll-down i {
    font-size: 3rem; /* Adjust the size as needed */
    color: #ffffff; /* Set the color to white */
    margin: 0 auto; /* Center the icon */
    display: block; /* Make the icon a block element */
  }
  

  @media screen and (max-width: 1199px) {
    #hero {
      padding-top: 150px; /* Adjust top padding for medium screens */
      padding-bottom: 20px; /* Further reduced bottom padding for medium screens */
    }
  
    #hero .hero-image {
      width: 200px; /* Adjust for smaller screens */
    }
  }
  
  @media screen and (max-width: 767px) {
    #hero {
      padding-top: 100px; /* Further reduced top padding for smaller screens */
      padding-bottom: 10px; /* Further reduced bottom padding for smaller screens */
    }
  
    #hero .hero-image {
      width: 150px; /* Further adjustment for smaller screens */
    }
  }
  

