@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;
}
p{
  font-family:Arial, Helvetica, sans-serif;
  font-weight:normal;
  color:#cccccc;
}
li{
    color:#cccccc;
}

/* 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;
}

.heroContent {
  position: relative;
  z-index: 1;
  color: white;
  padding: 17%;
  margin: 0%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  );
  transition: 0.5s; 
}

.heroContent:hover{
  height: 10%;
}

.heroContent p {
  font-family: fraunces_120pt-light, serif;
  font-weight:lighter;
  font-size: 45px;
  font-style: italic;
  color: #ffffff;
  padding-bottom: 8px;
}
.heroContent h1 {
    font-family: "Gruppo", sans-serif;
    font-weight:bold;
    font-style:normal;
    font-size: 45px;
    color: #ffffff;
    padding-bottom: 8px;
}
#ContentHeader{
  padding: 80px;
}

.section {
  padding: 20px 300px;
  text-align: center;
  background-color: #000;
  color: #fff;
}
.section p{
  padding-bottom: 10px;
  padding-top: 10px;
}
.section02{
  background-color: #000;
  color: #fff;
  text-align: center;
  justify-content: center;
}

.section02 h3 {
  padding: 10px 0;
  padding-bottom: 15px;
}

.section02 ul li{
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 10px;
}



/* Footer */
.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;
  color: #fff;
}

.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 */
  }

  .heroContent {
    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 */
  }

  .heroContent p {
    font-size: 24px; /* Smaller font size for paragraph */
    padding-bottom: 0px; /* Adjust padding for balance */
    padding-top: 63px;
  }

  .heroContent h1{
    font-size: 30px; /* Reduce font size for headings */
    line-height: 1.2; /* Improve spacing between lines */
  }
  .video-container {
    width: 100px;
  }
  p{
    text-align: center;
  }
  .content-section .video-container1{
    border-radius: 12px;
  }
  .section{
    margin: 0%;
    padding: 10px;
  }
  .section p{
    font-size: 12px;
  }  
  .section h2{
    font-size: 16px;
  }
  .section02 h3{
    font-size: 14px;
  }
  .section02 ul li{
    font-size: 12px;
  }
  /* Footer */
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  .content-section {
    flex-direction: column;
  }

  .text,
  .video-container1 {
    flex: none;
    width: 100%;
    text-align: center; /* Center text on smaller screens */
    padding: 10px;
  }

  .video-container1 video {
    width: 100%; /* Ensure video fits within mobile view */
    max-width: 100%; /* Avoid exceeding container width */
    height: auto; /* Maintain aspect ratio */
  }
  
  
  
}


/* Mobile-specific styles for 430px and 564px max-width */
@media screen and (max-width: 564px) {
  

  /* Content Sections */
  .heroContent {
    padding: 47px; /* Reduced padding */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .heroContent p {
    font-size: 18px;
    padding-bottom: 0;
    padding-top: 40px;
  }

  .heroContent h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  /* Section Styling */
  .section{
    margin: 0%;
    padding: 10px;
  }
  .section p{
    font-size: 12px;
  }  
  .section h2{
    font-size: 16px;
  }
  .section02 h3{
    font-size: 14px;
  }
  .section02 ul li{
    font-size: 12px;
  }

  /* Image Sections */
  .image-section-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-section img {
    width: 100%;
    height: auto;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
  }

  .overlay h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .overlay p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .overlay ul.justified-list1 {
    padding-left: 0;
    list-style: none;
    font-size: 0.8rem;
  }

  .overlay ul.justified-list1 li {
    margin-bottom: 0.2rem;
  }

  .overlay .buttonSeeMore {
    margin-top: 0.3rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  /* Carousel */
  .carousel-container {
    width: 100vw;
    height: auto;
    overflow: hidden;
    background-color: #000;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }

  .carousel-slide img {
    max-width: 70%;
    max-height: 70%;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px 0;
  }

  .carousel-description {
    width: 90%;
    padding: 0.5rem;
    text-align: center;
    margin: 0 auto;
  }

  .carousel-description h3 {
    font-size: 20px;
    text-align: center;
  }

  .carousel-description p {
    font-size: 14px;
    text-align: center;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .expertise-section h4{
    font-size: 19px;
  }
  .expertise-section p{
    font-size: 13px;
  }
  .experience-title{
    font-size: 19px;
  }
  .experience-description{
    font-size: 13px;
  }
  .lifestyle-content h3{
    font-size: 19px;
  }
  .lifestyle-content{
    font-size: 11px;  
  }
}

@media screen and (max-width: 564px){
  .heroContent{
    padding: 47px;
  }
}

/* Additional specific adjustments for 430px max-width */
@media screen and (max-width: 480px) {

  .heroContent {
    padding: 30px;
  }

  .heroContent h1 {
    font-size: 20px;
  }

  .heroContent p {
    font-size: 16px;
  }

  .section{
    margin: 0%;
    padding: 10px;
  }
  .section p{
    font-size: 12px;
  }  
  .section h2{
    font-size: 16px;
  }
  .section02 h3{
    font-size: 14px;
  }
  .section02 ul li{
    font-size: 12px;
  }
  .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: 0.5rem;
  }
  .expertise-section h4{
    font-size: 18px;
  }
  .expertise-section p{
    font-size: 12px;
  }
  .experience-title{
    font-size: 18px;
  }
  .experience-description{
    font-size: 12px;
  }
  .lifestyle-content h3{
    font-size: 18px;
  }
  .lifestyle-content{
    font-size: 10px;  
  }
  .section {
    padding: 20px ;
  }
}

