/* General Reset */
/* Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove default margin and padding*/
* {
  margin: 0;
  padding: 0;
}
/* Accessible line height*/

body {
  line-height: 1.5;
  background-size: cover; /* Ensure the SVG covers the entire background */
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  position: relative;
  background: none; /* Remove any background color */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Full viewport height */
  margin: 0; /* Remove default margin */

}
/* Improve media defaults*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for form controls*/
input, button, textarea, select {
  font: inherit;
}


/* Avoid text overflows*/
h1, h2, h3, h4, h5, h6, ul, li, p {
  overflow-wrap: break-word;
}

/* Shared font styles for all headings except h1 (reserved for hero) */
h1, h2, h3, h4, h5, h6, ul, li, p ,span, label, button{
  font-family: "Nunito", sans-serif; /* Use the desired font */
  font-weight: 400; /* Default font weight */
  font-style: normal; /* Default font style */
  margin: 0; /* Reset default margins */
  line-height: 1.5; /* Improve readability */
}


/* Specific styles for spans */
span {
  display: inline-block; /* Ensure consistent inline-block behavior */
}

/* Specific styles for buttons */
button {
  cursor: pointer; /* Add pointer cursor for buttons */
}

/* Specific styles for individual heading levels */
h1 {
  font-size: 4rem; /* 4rem = 64px */
}

h2 {
  font-size: 1.5rem; /* 1.5rem = 24px */
  font-weight: 900;

}

h3 {
  font-size: 1.375rem; /* 1.375rem = 22px */
  font-weight: 800;

}

h4 {
  font-size: 1.25rem; /* 1.25rem = 20px */
  font-weight: 700;

}

h5 {
  font-size: 1rem; /* 1rem = 16px */
  font-weight: 600;

}

h6 {
  font-size: 0.75rem; /* 0.75rem = 12px */
}


.wave {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 0; /* Reset height */
  padding-bottom: 10%; /* Adjust this value to match the SVG's aspect ratio */
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the SVG covers the entire width */
  background-position: top; /* Center the SVG horizontally */
  z-index: -1; /* Place the wave behind the content */
}

/* Top wave */
.wave-top {
  top: 0;
  background-image: url('../img/wave-top.svg'); /* Ensure the path is correct */
}

/* Shared button styles */
.btn {
  background-color: #005d8d;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  display: inline-block; /* Ensure buttons behave consistently */
  cursor: pointer; /* Add pointer cursor for buttons */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.btn:hover {
  background-color: #b30700;
  color: #fff;
}

button:focus, a:focus {
  outline: 2px solid #005d8d; /* Add a visible focus outline */
  outline-offset: 2px;
}

header {
  background-color: rgba(255, 255, 255, 0); /* Transparent white background */
  padding: 10px 0;
}

/*Navigatiion Bar */
/* Ensure the navbar is a flex container */
.navbar {
  display: flex;
  justify-content: space-between; /* Space between logo and menu */
  align-items: center; /* Vertically align items */
  padding: 10px 20px; /* Add some padding */
  background-color: rgba(255, 255, 255, 0); /* Transparent white background */
}

/* Logo Section */
.nav-logo {
  display: flex;
  align-items: center; /* Vertically align logo and text */
  gap: 10px; /* Add space between logo and text */
}
/* Logo Section */
.nav-logo a {
  text-decoration: none; /* Remove underline */
  font-size: 1.5rem; /* Logo font size */
  font-weight: bold; /* Logo font weight */
  color: #000000;

}

.nav-logo a:hover {
  color: #005d8d;
}
.nav-logo a:focus {
  outline: 0;

}

/* Hamburger Menu */
.hamburger-menu {
  display: none; /* Hidden by default */
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Navigation Menu */
.nav-top-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Navbar */
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 5px 5px;
  text-align: center;
  align-items: center;
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically align logo and text */
  margin: 5px;
  gap: 5px;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem; /* 4rem = 64px */

}

.nav-top-menu {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically align logo and text */
  margin: 5px;
  gap: 20px;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: bold;
  font-size: 1.5rem; /* 4rem = 64px */
}

nav ul li a {
  color: #000000;
  text-decoration: none;
  font-weight: bolder;
}

nav ul li a:hover {
  color: #005d8d;
}
/*Waiting List Form*/
.btn-waitlist {
  background-color: #005d8d;
  color: #fff;
  text-decoration: none;
  border: none;

}

.btn-waitlist:hover {
  background-color: #b30700;
  color: #fff;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dim background */
  display: none; /* Hidden by default */
  z-index: 999; /* Ensure it appears above other elements */
}

.form-container {
  position: fixed; /* Fixed position to center in viewport */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the form */
  z-index: 1000; /* Ensure it appears above the overlay */
  display: none; /* Hidden by default */
  background: linear-gradient(135deg, #fffbeb, #f5d5cb); /* Gradient background */
  padding: 20px;
  width: 90%;
  max-width: 400px;
  max-height: 90%; /* Limit the height to 90% of the viewport */
  overflow-y: auto; /* Add vertical scrolling if content exceeds max-height */
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Raised shadow effect */
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-container::-webkit-scrollbar {
  width: 8px; /* Customize scrollbar width */
}

.form-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2); /* Customize scrollbar thumb color */
  border-radius: 4px;
}

.form-container::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05); /* Customize scrollbar track color */
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.checkbox-group {
  text-align: left;
  margin: 10px 0;
}
.checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}


.btn-submit {
  background-color: #005d8d;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border: none;
  border-radius: 20px;

  /* Center the button */
  display: block;
  margin: 10px auto;
}
.btn-submit:hover {
  background-color: #b30700;
  color: #fff;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.close-btn:hover {
  color: #b30700;
}


.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

/* Hide the actual checkboxes */
.tag input[type="checkbox"] {
  display: none;
}

/* Style the tags */
.tag {
  display: inline-block;
  padding: 8px 12px;
  margin: 5px;
  background-color: #cccccc;
  color: #000000;
  border: 1px solid #ddd;
  border-radius: 20px;

  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Style for selected (checked) tags */
.tag input[type="checkbox"]:checked + label,
.tag.checked {
  background-color: #005d8d;
  color: #fff;
  border-color: #005d8d;
}

.mandatory {
  color: red;
  font-size: 0.8em;
  vertical-align: super;
}

section {
  background-color: rgba(255, 255, 255, 0); /* Transparent white background */
  padding: 10px 20vw;
  border-radius: 10px; /* Optional: Add rounded corners */
  position: relative; /* Ensure content is above the waves */
  z-index: 1; /* Place the content above the waves */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center elements vertically */
  margin: 5px auto; /* Center the section itself horizontally */
  gap: 5px;
  height: 100%; /* Make the section take the full viewport height */
}
/*Hero Section*/
.hero {
  background-color: rgba(255, 255, 255, 0);
  padding: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  text-align: center; /* Center-align the text */
  padding: 20px; /* Add padding for spacing */
  margin: 0 auto; /* Center the text block */
  max-width: 800px; /* Limit the width for better readability */
}

.hero-text h1 {
  font-size: 4rem; /* Large font size for the main heading */
  font-family: "Bangers", system-ui;
  font-style: normal;
  font-weight: 400; /* Bold font for emphasis */
  margin-bottom: 10px; /* Add spacing below the heading */
}

.hero-text h3 {
  font-family: "Nunito", sans-serif;
  color:#3D3D3D ;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem; /* Slightly smaller font for the subheading */
  font-weight: 400; /* Regular font weight for contrast */
  margin-bottom: 20px; /* Add spacing below the subheading */
  line-height: 1.6; /* Improve readability */
}

/*Countdown Section*/

.countdown {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9375rem; /* 0.9375rem = 15px */
  text-align: center;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #ffffff;
}

#timer {
  font-size: 1.5rem; /* 1.5rem = 24px */
  font-weight: bold;
  color: #393E46;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

#timer span {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 1.5rem; /* 1.5rem = 24px */
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffca14, #ffffff); /* Gradient background */
  width: 80px;
}

.time-box span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #393E46;
}

.time-box p {
  margin: 0;
  font-size: 0.9rem; /* 0.9rem = 14.4px */
  color: #555555;
}

/*Statistic Section*/

.stat-card {
  background: #fff; /* Fallback color */
  background-repeat: no-repeat; /* Prevent the background from repeating */
  background-size: contain; /* Ensure the background covers the entire card */
  background-position: center; /* Center the background image */
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically */
  }

.stat-card h2 {
  font-size: 6rem;
  font-weight: bold;
}
.stat-card p {
  font-size: 2rem;
  font-weight: normal;
  color:#3D3D3D;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/*Features Section -styling also used for Our Promise section*/

.features {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
}

.features-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-box {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center text */
  background: #fff; /* Optional: Add a background color */
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  border-radius: 10px; /* Optional: Add rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  max-width: 300px; /* Optional: Limit the width of each feature box */
}



.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;}

.feature-box h3 {
  font-size: 1.5rem; /* 1.5rem = 24px */
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem; /* 1rem = 16px */
  color: #555;
}

/*FAQ Section*/
.faq {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

.faq-container {
  margin: 0 auto; /* Center the container horizontally */
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 100%; /* Ensure the FAQ item has a consistent width */
}

.faq-question {
  width: 100%; /* Ensure the question takes up the full width of the container */
  padding: 15px;
  background-color: #005d8d;
  color: #fff;
  text-align: left;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box; /* Include padding and borders in the width */
}

.faq-answer {
  width: 100%; /* Match the width of the question */
  display: none;
  padding: 15px;
  background-color: #fff;
  color: #555;
  font-size: 0.9rem;
  box-sizing: border-box; /* Include padding and borders in the width */
}

.faq-answer.show {
  display: block; /* Show the answer when expanded */
}





/*Our Story Section*/
main {
  flex: 1; /* Allow the main content to grow and take up available space */
}

.about-section {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center content horizontally */
  justify-content: space-evenly; /* Center content vertically */

  background-color: rgba(255, 255, 255, 0); /* Transparent white background */
}

.about-container {
  position: relative; /* Set the container as a positioning context */

  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  max-width: 1200px;
  gap: 20px;
  justify-content: center; /* Center the content horizontally */
  align-items: flex-start; /* Align items to the top */

}

.about-image {
  flex: 1; /* Allow the image to take up available space */
  text-align: center; /* Center the image horizontally */
}

.about-image img {
  max-width: 100%; /* Ensure the image scales properly */
  height: auto;
  border-radius: 8px;
  transform: rotate(-2deg);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
  border: 2px solid #eee;
  padding: 5px;
  background: #fff;
}

.about-text {
  flex: 2; /* Allow the text to take up more space */
  text-align: left; /* Align the text to the left */
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3); /* Bigger shadow */

}

.about-text h2 {
  font-size: 2rem; /* 2rem = 32px */
  font-family: 'Patrick Hand', cursive;

}

.about-text p {
  font-size: 1.5rem; /* 1rem = 16px */
  font-family: 'Patrick Hand', cursive;

  line-height: 1.6; /* Improve readability */
  color: #555;
  margin-bottom: 15px;
}


.notepad {
  width: 100%;
  max-width: 600px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3); /* Bigger shadow */
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #eee; /* Add a subtle border */
  padding: 5px; /* Add padding for spacing */


}

.top {
  width: 100%;
  height: 50px;
  background: #333;
  border-radius: 5px 5px 0 0;
}

.paper {
  width: 100%;

  min-height: 60vh;
  padding: 35px 20px;
  background: repeating-linear-gradient(#F1EDE9, #F1EDE9, #ebeef3 , #ebeef3 );
  font-family: 'Patrick Hand', cursive;
  outline: 0;

}
/*Privacy Policy*/

.privacy-policy-section {
  margin:0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  max-width: 1200px;
}

.privacy-policy-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  max-width: 1200px;
  gap: 20px;
  justify-content: left; /* Center the content horizontally */
}


.privacy-text h1 {
  font-size: 2rem; /* 2rem = 32px */
  margin-bottom: 20px;
}

.privacy-text p, ul {
  font-size: 1rem; /* 1rem = 16px */
  line-height: 1.6; /* Improve readability */
  color: #555;
  margin-bottom: 15px;
}

.privacy-text  li {
  font-size: 1rem; /* 1rem = 16px */
  line-height: 1.6; /* Improve readability */
  color: #555;
  margin-bottom: 15px;
  margin-left: 150px;
}
/*Footer Section*/
footer {
  background: linear-gradient(0deg, #ffc600,  #ffffff);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 1; /* Ensure it appears above lower z-index elements */
  padding-bottom: 50px; /* Add padding to account for the wave */
  text-align: center;


}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 20px;
}

.footer-column {
  text-align: left;
}

.footer-column h5 {
  font-size: 1rem; /* 1rem = 16px */
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #007BFF;
  font-size: 0.9375rem; /* 0.9375rem = 15px */
}

.footer-column ul li a:hover {
  text-decoration: underline;
}


/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 20px; /* Adjust for smaller screens */
  left: 10px; /* Add some padding from the left */
  right: 10px; /* Ensure it doesn't overflow on smaller screens */
  max-width: 400px;
  width: 90%; /* Responsive shrink on smaller viewports */ 
  background: linear-gradient(135deg, #fffbeb, #f5d5cb); /* Gradient background */
  color: #000000;
  padding: 15px;
  display: flex;
  flex-direction: column; /* Stack content vertically */
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem; /* 0.9rem = 14.4px */
  flex: 1; /* Allow the text to take up available space */

}

.cookie-banner a {
  color: #000000;
  text-decoration: underline;
  font-size: 0.9rem; /* Adjust font size */
  white-space: nowrap; /* Prevent the link from wrapping */

}

.cookie-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap; /* Prevent wrapping for all buttons */
}

.cookie-buttons .btn {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9375rem; /* 0.9375rem = 15px */
}

.cookie-buttons .btn:hover {
  background-color: #005d8d; /* Blue color for hover */
  color: #fff; /* Ensure text remains white */
  transition: background-color 0.3s ease; /* Smooth transition */
}

.btn-accept {
  background-color: #28a745;
  color: #fff;
  white-space: nowrap; /* Prevent the link from wrapping */

}


.btn-reject {
  background-color: #dc3545;
  color: #fff;
  white-space: nowrap; /* Prevent the link from wrapping */

}



/* Media Query for Smaller Screens -Mobiles */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    flex-direction: column; /* Stack text and image vertically */
    text-align: center;
    gap: 15px;
  }

  .hero-text {
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .hero-image {
    max-width: 100%; /* Ensure the image scales properly */
  }

  /* Navigation Menu */
  .nav-top-menu {
    display: none; /* Hide the navigation menu by default */
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    background: linear-gradient(135deg, #DEF4FF, #FFFFFF); /* Gradient background */
    width: 90vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 10px;
    z-index: 1000;
  }

  .nav-top-menu.show {
    display: flex; /* Show the menu when toggled */
  }

  .hamburger-menu {
    display: block; /* Show the hamburger menu button */
    float: right;
  }

  /* Footer Section */
  .footer-container {
    flex-direction: column; /* Stack footer columns vertically */
    gap: 20px; /* Reduce gap for smaller screens */
    text-align: center; /* Center-align text */
  }

  /* FAQ Section */
  .faq {
    max-width: 80vw; /* Adjust FAQ width for smaller screens */
  }

  /* About Section */
  .about-container {
    flex-direction: column; /* Stack the image and text vertically */
    text-align: center; /* Center-align text for smaller screens */
  }

  .about-text {
    padding: 0; /* Remove padding for smaller screens */
  }

  /* Cookie Banner */
  .cookie-banner {
    bottom: 10px; /* Adjust position for smaller screens */
    left: 5px;
    right: 5px;
    max-width: 90%; /* Ensure it fits within the viewport */
  }

  /* Navigation Menu Items */
  .nav-top-menu {
    flex-direction: column;
    gap: 10px;
  }

  .faq{

    max-width:90vw;

  }
}

/* Media Query for Extra Small Screens */
@media (max-width: 480px) {
  .hero {
    flex-direction: column;
    padding: 1rem;
  }

  .faq {
    max-width: 90vw;
  }
}
