@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 {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #000;
  color: #fff;
}


p{
  font-family:Arial, Helvetica, sans-serif;
  font-weight:normal;
  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: 80px 0;
}


.image-section-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #000;
  color: white;
}

.image-section {
  flex: 1;
  margin: 0 10px;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-section:hover {
  transform: scale(1.02);
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-section img:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay h1 {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.2);
}

/*private membership types*/
.private-membership-types{
  background-color: #000;
  padding: 20px 250px;
}
.private-membership-types ul{
  display: flex;
  justify-content: space-around;
  gap: 3rem;
  padding-top: 50px;
}
.private-membership-types h2{
  text-align: center;
  font-family: fraunces_120pt-light, serif;
  font-weight:bold;
}
.private-membership-types ul li{
  list-style: none;
}
.private-membership-types ul li img{
  height: 250px;
  
}
.private-membership-types ul li p{
  padding-top: 25px;
  text-align: justify;
}

/* Content Section */
.content {
  background-color: #000;
  color: white;
  padding: 2rem;
  line-height: 1.6;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2);
}

.footer-section {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.1);
}

.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;
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2);
}

.footer-logo p {
  margin: 5px 0;
  font-size: 0.9em;
  color: #aaa;
}

.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;
  transition: color 0.3s ease;
}

.link-column a:hover {
  color: #ddd;
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2);
}

.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;
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2);
}

.footer-address {
  font-size: 0.8em;
  color: #888;
}

.inquire-section {
  background-color: #ffffff;
  padding: 20px;
  margin-top: 0px;
  border-radius: 8px;
  color: #000;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.inquire-email{
  text-align: center;
  border: black;
  border-style: double;
  border-radius: 12px ;
  padding: 3%;
  margin-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: 200px;
  margin-right: 200px;
}

.inquire-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.inquiry-form label {
  font-weight: bold;
  color: #000;
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 10px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.inquire-button {
  background-color: #000;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.inquire-button:hover {
  background-color: #141414;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.half-page {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.content .half-page p{
  padding: 0 300px;
}
.image-side {
  text-align: center;
  padding: 10px;
}

.image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: inset 0 4px 6px rgba(255, 255, 255, 0.1), 0 4px 6px rgba(0, 0, 0, 0.3);
}

.content-side {
  padding: 20px;
  color: #ddd;
  line-height: 1.6;
}

.content-side h2 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2);
}

.content-side p {
  margin-bottom: 10px;
}

.content-side ul {
  margin-left: 20px;
  list-style-type: disc;
}

.content-side ul li {
  margin-bottom: 8px;
}
.half-page{
  text-align: center;
}

.half-page h2{
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
  margin-bottom: 40px;
}

.half-page p {
  padding-left: 100px;
  padding-right: 100px;
  text-align: center;
}
.logo-section{
  text-align: center;
}

.logo-section img{
  padding: 20px;
  padding-bottom: 40px;
  height: 120px;
}



/* 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: 110px; /* 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;
  }

  .heroContent h1 {
    font-size: 30px; /* Reduce font size for headings */
  }

  .half-page{
    padding: 10px;
  }
  .half-page h2{
    font-size: 16px;
  }
  .half-page p{
    font-size: 12px;
  }
  .content .half-page p{
    padding: 20px;
  }
  .private-membership-types{
    background-color: #000;
    padding: 10px;
  }
  .private-membership-types ul{
    display: block;
    text-align: center;
  }
  .private-membership-types h2{
    text-align: center;
    font-family: fraunces_120pt-light, serif;
    font-weight:bold;
    font-size: 16px;
  }
  .private-membership-types ul li{
    list-style: none;
  }
  .private-membership-types ul li img{
    height: 150px;
    
  }
  .private-membership-types ul li p{
    padding: 25px 50px;
    text-align: center;
    font-size: 12px;

  }
  .inquire-section h2{
    font-size: 16px;
  }
  .inquire-email{
    text-align: center;
    border: white;
    border-style: double;
    border-radius: 12px ;
    padding: 3%;
    margin-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: 90px;
    margin-right: 90px;
  }

  .logo-section img{
    padding: 20px;
    padding-bottom: 60px;
    height: 50px;
  }
}

@media screen and (max-width: 564px) {
  .heroContent {
    padding: 60px; /* 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: 20px; 
  }

  .heroContent h1 {
    font-size: 26px; /* Reduce font size for headings */
  }
  
  .half-page{
    padding: 10px;
  }
  .half-page h2{
    font-size: 16px;
  }
  .half-page p{
    font-size: 12px;
  }
  .content .half-page p{
    padding: 20px;
  }
  .private-membership-types{
    background-color: #000;
    padding: 10px;
  }
  .private-membership-types ul{
    display: block;
    text-align: center;
  }
  .private-membership-types h2{
    text-align: center;
    font-family: fraunces_120pt-light, serif;
    font-weight:bold;
    font-size: 16px;
  }
  .private-membership-types ul li{
    list-style: none;
  }
  .private-membership-types ul li img{
    height: 150px;
    
  }
  .private-membership-types ul li p{
    padding: 25px 50px;
    text-align: center;
    font-size: 12px;
  }
  .inquire-section h2{
    font-size: 22px;
  }
  .inquire-email{
    text-align: center;
    border: white;
    border-style: double;
    border-radius: 12px ;
    padding: 3%;
    margin-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: 70px;
    margin-right: 70px;
  }
  .inquiry-form{
    margin: 50px;
  }
  .logo-section img{
    padding: 20px;
    padding-bottom: 60px;
    height: 35px;
  }
}


@media screen and (max-width: 480px) {
  .heroContent {
    padding: 35px; /* 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: 18px; /* Smaller font size for paragraph */
    padding-bottom: 0px; /* Adjust padding for balance */
    padding-top: 63px;
  }

  .heroContent h1 {
    font-size: 24px; /* Reduce font size for headings */
    line-height: 1.2; /* Improve spacing between lines */
  }
  .half-page{
    padding: 10px;
  }
  .half-page h2{
    font-size: 16px;
  }
  .half-page p{
    font-size: 12px;
  }
  .content .half-page p{
    padding: 20px;
  }
  .private-membership-types{
    background-color: #000;
    padding: 10px;
  }
  .private-membership-types ul{
    display: block;
    text-align: center;
  }
  .private-membership-types h2{
    text-align: center;
    font-family: fraunces_120pt-light, serif;
    font-weight:bold;
    font-size: 16px;
  }
  .private-membership-types ul li{
    list-style: none;
  }
  .private-membership-types ul li img{
    height: 150px;
    
  }
  .private-membership-types ul li p{
    padding: 25px 50px;
    text-align: center;
    font-size: 12px;

  }
  .inquire-section h2{
    font-size: 20px;
  }
  .inquire-email{
    text-align: center;
    border: white;
    border-style: double;
    border-radius: 12px ;
    padding: 3%;
    margin-bottom: 50px;
    padding: 0 20px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 12px;
  }
  .inquiry-form{
    margin: 50px;
  }
  .logo-section img{
    height: 95px;
  }
}