@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400&family=Montserrat:wght@500;700&display=swap');

* {
  margin: 0%;
  padding: 0%;
}
body{
  background-color: #000;
}


/* Background Video */
.background-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 17%;
  margin: 0%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  );
  transition: 0.5s; 
}

.content:hover{
  height: 10%;
}

.content p {
  font-family: fraunces_120pt-light, serif;
  font-weight:lighter;
  font-size: 24px;
  font-style: italic;
  color: #ffffff;
  padding-bottom: 8px;
}
.content h1 {
    font-family: "Gruppo", sans-serif;
    font-weight:bold;
    font-style:normal;
    font-size: 45px;
    color: #ffffff;
    padding-bottom: 8px;
}
#ContentHeader{
  padding: 80px 0;
}
.intro{
  background-color: #000;
  color: white;
  text-align: center;
  padding: 50px;
  padding-left: 300px;
  padding-right: 300px;
  padding-bottom: 100px;
  border-bottom:3px solid #ccc;
}
#intro_content{
  
  font-family: Arial, sans-serif;
    font-size: 16px;
    color: #cccccc;
    padding-bottom: 8px;
    text-align: center;
}
#intro_content00{
  font-size: 24px;
}
.footer-section {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo h2 {
  font-weight: bold;
  font-size: 1.5em;
  letter-spacing: 2px;
}

.footer-logo p {
  margin: 5px 0;
  font-size: 0.9em;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-column a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  text-transform: uppercase;
}

.link-column a:hover {
  color: #ddd;
}

.footer-social p {
  font-size: 0.9em;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ddd;
}

.footer-address {
  font-size: 0.8em;
  color: #888;
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
  .background-video-container {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevent overflow issues */
  }

  .background-video {
    object-fit: cover; /* Ensure the video covers the area */
    width: 100%; /* Full width for mobile */
    height: auto; /* Adjust height proportionally */
  }

  .content {
    padding: 100px; /* Reduce padding for smaller screens */
    text-align: center; /* Center-align text for better appearance */
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background for better contrast */
  }

  .content p {
    font-size: 24px; /* Smaller font size for paragraph */
    padding-bottom: 0px; /* Adjust padding for balance */
    padding-top: 63px;
  }

  .content h1 {
    font-size: 30px; /* Reduce font size for headings */
    line-height: 1.2; /* Improve spacing between lines */
  }

  /* Section Styling */
  .section {
    padding: 2rem 1rem; /* Reduce padding for smaller screens */
    text-align: center; /* Keep text centered */
  }
  .section h1 {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    margin-top: 0.5rem;
  }
  .section h2 {
    font-size: 1.2rem; /* Scale down subtitle font size */
    margin-bottom: 1rem;
  }
  .intro{
    text-align: center;
    padding: 10px;
    margin: 0%;
  }
  #intro_content{
    font-family: Arial, sans-serif;
      font-size: 12px;
      color: #cccccc;
      padding-bottom: 8px;
      padding:0px 10px;
  }
  #intro_content00{
    font-size: 16px;
    color: white;
  }
}

/* Mobile-specific styles for 430px and 564px max-width */
@media screen and (max-width: 564px) {
  /* Content Sections */
  .content {
    padding: 60px; /* Reduced padding */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .content p {
    font-size: 18px;
    padding-bottom: 0;
    padding-top: 30px;
  }

  .content h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  .intro{
    text-align: center;
    padding: 10px;
    margin: 0%;
  }
  #intro_content{
    font-family: Arial, sans-serif;
      font-size: 12px;
      color: #cccccc;
      padding-bottom: 8px;
  }
  #intro_content00{
    font-size: 16px;
    color: white;
  }
}

/* Additional specific adjustments for 430px max-width */
@media screen and (max-width: 480px) {
  .content {
    padding: 40px;
  }

  .content h1 {
    font-size: 20px;
  }

  .content p {
    font-size: 16px;
    padding-top: 20px;
  }

  .section h1 {
    font-size: 1.2rem;
  }

  .section h2 {
    font-size: 0.9rem;
  }

  .carousel-description h3 {
    font-size: 18px;
  }

  .carousel-description p {
    font-size: 12px;
  }

  .overlay h3 {
    font-size: 0.9rem;
  }

  .overlay p {
    font-size: 0.7rem;
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  .intro{
    text-align: center;
    padding: 10px;
    margin: 0%;
  }
  #intro_content{
    font-family: Arial, sans-serif;
      font-size: 12px;
      color: #cccccc;
      padding-bottom: 8px;
  }
  #intro_content00{
    font-size: 16px;
    color: white;
  }
}