/* General Styling */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  background-color: #000000;
  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 {
}

.main_container_main {
  display: block;
}

/* 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;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* 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: 0px;
  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;
}

#breeding_header_text {
  height: 20px;
}

.galler_image img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.galler_image img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* 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;
  }

  body,
  html {
    background-image: url("/assets/images/bg-phone.png"); /* Replace with your image URL */
    background-repeat: no-repeat;
    background-size: cover; /* Optional: makes the image cover the entire viewport */
    background-position: center center;
  }

  .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%;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .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;
  }

  .learnmorebutton_container {
    width: 100%;
    height: 100px;
    text-align: center;
    display: block;
    margin-top: 100px;
  }

  main {
    height: 1000px;
  }

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

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

  .main_page_header_text {
    height: 20px;
  }

  #gallery_preview_image {
    height: 300px;
  }
}

/* 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;
  background-color: #333;
  width: 300px;
  border-radius: 10px;
  text-align: center;
  height: 300px;
}

.slide-content img {
  height: 100%;
  width: auto;
}

.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;
}

.content_row img {
  height: 100%;
  width: auto;
  margin-top: 20px;
  border-radius: 40px;
}

.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;
}

.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;
}

/* Initial button styling */
.floating-btn {
  width: 50px;
  height: 50px;
  background-image: url("https://via.placeholder.com/50"); /* 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;
}
/* 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;
}

.row {
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* White background with 10% opacity */
  border-radius: 40px;
  cursor: pointer;
}

.row:hover {
  background-color: rgba(
    255,
    255,
    40,
    0.1
  ); /* White background with 10% opacity */
  border-radius: 40px;
}

.content_row {
  height: 300px;
  margin-bottom: 30px;
}
.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: #333;
  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 {
  background-color: #555; /* Medium grey background */
  color: white; /* White text color */
  padding: 12px 24px; /* Padding for the button */
  font-size: 16px; /* Font size */
  border: none; /* Remove default border */
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition for hover effects */
  font-family: Arial, sans-serif; /* Modern font */
}

/* 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 */
}

.main_page_header_text {
  height: 50px;
}

.studdams_detail_container {
  height: 100%;
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}

.studdams_detail_container p {
  width: 60%;
  text-align: center;
  font-size: 19px;
  padding: 10px;
}

.studdams_detail_container_name_container {
  width: 100%;
  height: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.studdams_detail_container_name_container p {
  width: 80%;
  height: auto;
  font-size: 30px;
  background-color: #000000;
  margin: 20px;
  margin-bottom: 0px;
}

.studdams_detail_container_intro_container {
  width: 100%;
  height: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
}
.studdams_detail_container_intro_container p {
  width: auto;
  height: auto;
  font-size: 14px;
  background-color: #ffffff;
  margin: 10px;
  margin-top: 0px;
  color: black;
  padding: 5px;
}

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

.studdamndetailsviewer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  max-width: 75%;
  padding: 20px;
  background-color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  text-align: center;
  z-index: 1000;
  height: auto;
  display: none;
  max-height: 75%;
  overflow-y: auto;
}

/* Position the image container (needed to position the left and right arrows) */
.images_container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides img {
  height: 400px;
  width: auto;
}

.previousnectbuttoncontainer {
  width: 100%;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

.close_button_container {
  width: 100%;
  height: 40px;
  text-align: right;
  cursor: pointer;
}

.close_button_container p {
  font-size: 30px;
  color: grey;
}

.close_button_container p:hover {
  font-size: 30px;
  color: #ffffff;
}

.image_slider_row {
  border-radius: 0px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 0px;
  display: flex;
  max-width: 100%;
  height: auto;
  overflow-y: auto;
}

/* Thin scrollbar styling */
.image_slider_row::-webkit-scrollbar {
  height: 4px; /* Thinner bar */
}

.image_slider_row::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.image_slider_row::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* For Firefox (thinner scrollbar) */
.image_slider_row {
  scrollbar-width: thin;
  scrollbar-color: #888 #e0e0e0;
}

.image_slider_row:hover {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.1);
}

.image_slider_column {
  margin-left: 10px;
  margin-right: 10px;
}

.image_slider_column img {
  width: 150px;
  aspect-ratio: 3/2;
  object-fit: contain;
}

.studdams_row_container {
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    background-color 0.4s ease;
}

.studdams_row_container:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  background-color: #333;
}

.studdams_row_container:active {
  transform: translateY(-5px) scale(1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
}

/* Make it responsive */
@media (max-width: 500px) {
  .studdamndetailsviewer {
    width: 80%;
    padding: 15px;
  }
  .main_page_header_text {
    height: 20px;
  }
}

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

#studdmanviewerlogoimage {
  height: 200px;
  width: auto;
}

.studdams_detail_container p img {
  height: 14px;
  width: auto;
}

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