/* General Styling */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  background-color: #0f0f0f;
  color: #fff;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Replace with your image URL */
  background-size: cover; /* Ensure the image covers the full page */
  background-position: center; /* Center the image */
  background-attachment: fixed; /* Optional: Keeps the image fixed while scrolling */
  width: 100%; /* Make sure the page takes the full width */
  padding-bottom: 30px;
  z-index: 500;
}

body {
  background-image: url("/assets/images/bg.png");
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Remove background image */
body.no-bg {
  background-image: none;
}

.main_container_main {
  display: none;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  background: transparent;
  color: #fff;
  width: 100%; /* Ensure header stretches across the full page */
}

.logo {
  flex-shrink: 0; /* Prevent the logo from shrinking */
  position: fixed;
  z-index: 2000;
}

.logo img {
  height: 90px; /* Set the height of the logo image */
  position: absolute;
}

.nav-container {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  position: fixed; /* Fixed positioning */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Ensure it's on top of other content */
  padding: 10px 0; /* Add padding for the nav container */
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for background and shadow */
}

/* Initially, no background */
.nav-container.initial {
  background-color: transparent;
  box-shadow: none;
}

/* When the page is scrolled, apply background */
.nav-container.scrolled {
  background-color: #000000; /* Semi-transparent white */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for floating effect */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 8px 25px;
  border-radius: 50px;
  background-color: #333;
  backdrop-filter: blur(10px);
  font-family: "Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  border: 1px solid grey; /* Thin golden border */
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
}

.nav-links li a:hover {
  color: #d4af37;
}

/* Active Menu Item */
.nav-links li a.active {
  color: #d4af37; /* Highlight color for active menu item */
  font-weight: 600; /* Optional: Make the active menu item bold */
}

.burger {
  display: none;
  cursor: pointer;
  margin-right: 20px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Center Content Styling */
.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 150px); /* Adjust height to center the content */
  gap: 20px; /* Add space between the button and the floating box */
  flex-direction: column;
}

.learn-more {
  background-color: #333;
  color: #fff;
  border: 1px solid rgba(255, 215, 0, 0.7); /* Golden border */
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  opacity: 0.8; /* Slightly transparent */
}

.learn-more:hover {
  background-color: #d4af37;
  color: #333;
  opacity: 1;
}

/* Floating Box Styling */
.floating-box {
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.8); /* Golden background */
  border: 2px solid #333; /* Border color */
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

/* Footer Styling */
footer {
  padding: 0px;
  color: #333;
  text-align: center;
  width: 100%; /* Make sure the footer stretches across the full page */
}

/* Main Content Styling */
main {
  width: 100%; /* Ensure main stretches across the full page */
  padding: 0; /* Remove any default padding */
  margin: 0; /* Remove any default margin */
}

.learnmorebutton_container {
  width: 100%;
  height: auto;
  position: absolute;
  text-align: center;
}

.content_area_container {
  width: 100%;
  height: 200px;
  bottom: 0;
  position: absolute;
  margin-bottom: 200px;
}

.responsive_containerleft {
  float: left;
  margin-left: 150px;
  width: 300px;
}

.responsive_containerleft p {
  font-family: "Poppins", sans-serif; /* Font */
  font-size: 12px; /* Font size */
  color: #fff; /* Text color */
  line-height: 1.6; /* Line spacing */
  letter-spacing: 1px; /* Letter spacing */
  margin: 10px 0; /* Spacing around the paragraph */
  text-align: justify; /* Justify text alignment */
  padding: 10px; /* Padding inside the paragraph */
  background-color: rgba(0, 0, 0, 0.5); /* Background color */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Box shadow */
}

.responsive_containerright {
  float: right;
  margin: 50px;
  width: 40%;
  height: 300px;
  display: flex;
}

.res_content_container {
  width: 200px;
  background-color: #333;
  margin-left: 40px;
  height: 300px;
  text-align: center;
  border-radius: 60px;
  opacity: 0.6;
}

.arrowcontainer {
  display: flex; /* Enable flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: auto; /* Set the width to auto or specify as needed */
  background-color: transparent; /* Remove the background color (optional) */
}

.slidable_container {
  width: 500px;
  display: flex;
  overflow-x: auto;
}

/* Burger Menu Toggle */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(34, 34, 34, 0.9);
    width: 100%;
    padding: 20px;
  }

  .burger {
    display: block;
  }

  .center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px); /* Adjust height to center the content */
    gap: 20px; /* Add space between the button and the floating box */
    flex-direction: column;
  }

  .content_area_container {
    width: 100%;
  }
  .responsive_containerleft {
    float: left;
    margin-left: 0px;
    width: 100%;
    margin-top: 10px;
  }
  .responsive_containerright {
    float: right;
    margin: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }

  .pages_content {
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding: 0px !important;
  }

  .content_row p {
    font-size: 12px !important; /* Font size */
  }
}

/* Burger Menu Active */
.nav-links.active {
  display: block;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: rgba(34, 34, 34, 0.9);
  width: 60%;
  padding: 20px;
  z-index: 10;
}

.burger.toggle div:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle div:nth-child(2) {
  opacity: 0;
}

.burger.toggle div:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.slider-container {
  position: relative;
  width: 300px;
  margin: auto;
  overflow: hidden;
  height: 300px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide-content {
  position: absolute;
  top: 20%;
  color: #fff;

  width: 300px;
  border-radius: 10px;
  text-align: center;
  height: auto;
}

.slide-content img {
  height: auto;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.container-fluid {
  margin-right: 0px;
  margin-left: 0px;
  margin-top: 30px;
  height: auto;
}

.spacer {
  width: 100%;
  height: 30px;
}
.pages_content {
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 100px;
  background-color: black;
  opacity: 1;
  text-align: center;
  margin-top: 30px;
  padding: 30px;
}
.row {
  margin-top: 20px;
}
.pages_content img {
  height: 30px;
}

.content_row img {
  width: 100%;
  height: auto;
}

.content_row p {
  font-family: "Poppins", sans-serif; /* Font */
  font-size: 18px; /* Font size */
  color: #fff; /* Text color */
  line-height: 1.6; /* Line spacing */
  letter-spacing: 1px; /* Letter spacing */
  margin: 10px 0; /* Spacing around the paragraph */
  text-align: justify; /* Justify text alignment */
  padding: 10px; /* Padding inside the paragraph */
  background-color: rgba(0, 0, 0, 0.5); /* Background color */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Box shadow */
}

.studdamn_header_container {
  width: 100%;
  height: auto;
  text-align: center;
}

.studdamn_header_container img {
  height: 40px;
  width: auto;
}

.variety_image_container {
}

.variety_image_container img {
  width: 200px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.variety_image_detail_container {
  height: 100%;
}
.variety_image_detail_container_name_container {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.variety_image_detail_container_detail_container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 100%; /* Ensure the container has a defined height */
  width: 100%; /* Optional: Ensure it spans the full width */
  text-align: center; /* Center any inline text content */
  padding: 10px;
}

.stud_preview_container {
  padding-top: 20px;
  border-right: 2px solid white; /* Adjust thickness and color */
}

.stud_damn_viewall_text {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
}

.stud_damn_viewall_text:hover {
  color: #d4af37;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: fixed;
  display: block;
}
img,
p {
  opacity: 1; /* Start invisible for fade-in effect */
  transition: opacity 1.5s ease-in-out; /* Smooth transition for opacity */
}
/* Define the fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0; /* Start invisible */
  }
  100% {
    opacity: 1; /* End fully visible */
  }
}

/* Class to trigger the fade-in animation */
.fade-in {
  animation: fadeIn 1.5s ease-out forwards; /* Fade-in over 1.5 seconds */
}

/* Container for the floating button and icons */
.floating-btn-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.5s ease;
  display: none;
}

/* Initial button styling */
.floating-btn {
  width: 50px;
  height: 50px;
  background-image: url("/assets/images/bg.png"); /* Your image URL */
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.5s ease;
  color: white;
}

.floating-btn img {
  height: 50px;
  width: auto;
  display: none;
}
/* Social media icons container */
.social-icons {
  display: flex;
  position: absolute;
  right: 10px;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.social-icons img {
  width: 40px;
  height: auto;
}

/* Social media icon styling */
.social-icons a {
  margin-left: 10px;
  text-decoration: none;
  font-size: 30px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff; /* Change color on hover */
}

/* When the button is clicked, expand and show the icons */
.floating-btn.open {
  width: 150px; /* Expand button */
}

.floating-btn.open + .social-icons {
  opacity: 1;
  visibility: visible;
}

.waitlist_details {
  font-size: 12px;
}

.content_row .waitlist_form_container {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}

/* Background image layer with opacity */
.waitlist_form_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://media.istockphoto.com/id/1300658241/photo/young-man-is-playing-with-a-dog-and-do-selfie.jpg?s=612x612&w=0&k=20&c=3GuywLL9CeC7VRRcbH35ZRYLRtvmObrvmFjQqTgNjCE="); /* Replace with your image */
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

/* Ensure content stays on top of the background */
.waitlist_form_container * {
  position: relative;
  z-index: 1;
}

/* Container styling */
.waitlist-form-container {
  width: 300px;
  padding: 20px;
  background-color: #f0f0f0;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "Arial", sans-serif;
  color: #333;
  margin: auto;
  margin-top: 50px;
}

/* Title styling */
.waitlist-form-container h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #555;
}

/* Input field styling */
.waitlist-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
}

/* Button styling */
.waitlist-button {
  width: 100%;
  padding: 10px;
  background-color: #555;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Button hover effect */
.waitlist-button:hover {
  background-color: #333;
}

/* Optional: Adjust input focus styling */
.waitlist-input:focus {
  border-color: #555;
  outline: none;
}

.contact_form_label_container {
  width: 100%;
  height: auto;
  text-align: left;
  margin-bottom: 10px;
}

.transparent_input {
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2); /* Light transparent background */
  color: #ffffff;
  border: none;
  border-radius: 4px;
  outline: none;
  font-size: 16px;
  transition: background 0.3s ease;
  float: left;
  margin-bottom: 30px;
}

/* Placeholder styling */
.transparent_input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* Focus effect */
.transparent_input:focus {
  background-color: rgba(255, 255, 255, 0.4);
}

.contactus_form_right {
  width: 100%;
  height: auto;
}

.contactustextarea {
  width: 90%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.2); /* Light transparent background */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  resize: vertical; /* Allows resizing vertically */
  transition: background 0.3s ease;
  min-height: 250px; /* Sets a minimum height */
}

/* Placeholder styling */
.contactustextarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* Focus effect */
.contactustextarea:focus {
  background-color: rgba(
    255,
    255,
    255,
    0.5
  ); /* Change background color on focus */
}

.contactus_check_input {
  margin-right: 20px;
}

.contact_us_row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.contactusbutton {
  width: auto;
  padding: 10px;
  background-color: #555;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Button hover effect */
.contactusbutton:hover {
  background-color: #333; /* Darker grey on hover */
  transform: translateY(-2px); /* Subtle lift effect */
}

/* Button active effect (when clicked) */
.contactusbutton:active {
  background-color: #444; /* Even darker grey when active */
  transform: translateY(0); /* Remove lift effect when clicked */
}

.index_social_details_container {
  width: 100%;
  height: auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.index_social_details_container img {
  height: 30px !important;
  width: 30px !important;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.index_social_details_container img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.burger_container {
  width: 100%;
  z-index: 2100;
  position: fixed;
}
.burger {
  z-index: 2100;
  cursor: pointer;
}

.learn-more a {
  color: #ffffff;
}

.learn-more a:hover {
  text-decoration: none;
}

.aboutus_contact_details {
  width: 100%;
  text-align: center;
}

.aboutus_contact_details p {
  width: 100%;
  text-align: center;
  margin: 0px;
  padding: 0px;
  color: grey;
}

.contactus_contact_details {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.contactus_contact_details p {
  width: 100%;
  text-align: center;
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.index_variety_row {
  border-radius: 10px;
  padding: 5px;
  box-sizing: border-box;

  /* Transparent border with gold gradient overlay */
  border: 1px solid transparent;
  background: linear-gradient(#0f0f0f, #0f0f0f) padding-box;
  background-clip: padding-box, border-box;
  margin-left: 5px;
  margin-right: 5px;
}

#bully_name_text {
  font-family: "Cinzel Decorative", serif;
}

.contactus_form_error_container {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 20px;
  color: white;
  font-size: 16px;
}

/* Spinner animation */
.spinner {
  width: 30px;
  height: 30px;
  border: 5px solid #ddd;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.sending_message_container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
