@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #2c2c2c;
  --beige: #CAA66B;
}

body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

* {
    font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Unbounded", sans-serif;
  overflow: hidden;
}

p, input {
    font-size: 16px;
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-beige {
    color: #CAA66B !important;
}

.beige-bg {
    background-color: #CAA66B !important;
}

.black-bg {
  background-color: var(--black);
}

.heading {
  font-weight: 500;
  font-size: 40px;
  color: var(--white);
}

.subheading {
  font-size: 18px;
  font-weight: 300;
  padding: 10px 0 20px 0;
  color: var(--white);
  position: relative;
}

.common-btn {
  border: unset;
  padding: 10px 10px 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black) !important;
}

.common-btn .rt-arrow {
  font-size: 20px;
}

.para {
  font-size: 16px;
  font-weight: 300;
}

.bg-grey {
    background: linear-gradient(45deg, #000000, #313131, #000000);
}

/* Header  */
.ellan-header {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 60px;
  width: 100%;
}

.hamburger {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: background 0.3s ease;
}

.ellan-header.scrolled {
  background-color: var(--black);
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  margin-right: 20px;
}

.nav-links.show {
  display: flex;
}

/* hero section  */
.hero {
  background: url("../media/images/hero-banner-bg.jpg") no-repeat center center /
    cover;
  position: relative;
  min-height: 110vh;
  margin-top: -10%;
  display: flex;
  align-items: center;
}

.hero .row {
  min-height: 100vh;
}

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

.hero-left .tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-left h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin: 0.5rem 0;
}

.hero-left .location,
.hero-left .price,
.hero-left .type {
    font-size: 1.3rem;
    margin: 1rem 0;
    font-weight: 400;
}

.form-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 110vh;
  width: 100%;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-form {
  margin-left: unset !important;
  width: 100%;
  margin-top: 10%;
}

.hero-form h2, .hero-form h2 span {
  font-size: 22px;
  margin-bottom: 1rem;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  font-family: "Unbounded", sans-serif;
}

.hero-form input,
.hero-form button, .hero-form select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  font-size: 12px !important;
}

.hero-form input {
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
}

.hero-form input::placeholder {
  color: var(--white);
  font-size: 12px !important;
}

.hero-form button {
  background-color: #CAA66B;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

/*video */
.hero {
    position: relative;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/media/images/fallback.jpg') no-repeat center center/cover;
    z-index: -1;
}

.hero .background-video {
    height: 110vh !important;
}

/* Dark overlay on top of video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8),  rgba(0, 0, 0, 0.1));
    z-index: 1;
}

/*.form-select:focus {*/
/*    color: var(--black);*/
/*}*/

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 0;
  bottom: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 5;
}

.floating-btn {
  width: 60px;
  height: 60px;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: -5px 5px 7px -3px #ffffff7d;
}

/* feature section  */
.features-section {
  color: var(--white);
  padding: 100px 0 100px;
}

.feature-card {
  border: 1px solid var(--white);
  border-radius: 12px;
  padding: 3rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  height: 50px;
  width: 100%;
}

.feature-card h5 {
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.feature-card p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 200;
}

/* about us section  */
.about-project-section {
  padding-top: 70px;
  margin-top: -5px;
}

.book-circle-btn {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
  padding: 0.5rem;
  z-index: 2;
  transform: translate(50%, -50%);
  top: 12%;
  right: -16%;
  border: 5px solid var(--black) !important;
  height: 150px;
  width: 150px;
}

.lni-arrow-angular-top-right::before {
    color: var(--white);
}

.btn-icon {
    color: var(--white);
    background-color: var(--black);
    border-radius: 5px;
    padding: 5px;
}

.fs-20 {
    font-size: 20px;
}

/* amenitiesSlider  */
.amenitiesSlider {
  padding-bottom: 50px !important;
}
.swiper-pagination {
  bottom: 5% !important;
}
.swiper-pagination-bullet {
  background-color: var(--white) !important;
  opacity: unset !important;
  margin-right: 10px !important;
}

/*amenities */
.subheading-amenities {
    padding-bottom: 50px;
}

.amenity-item img {
  height: auto;
  width: 100%;
}

.amenity-caption {
  color: var(--white);
  padding: 20px;
  margin-bottom: unset;
  font-weight: 300;
}

.swiper-pagination-bullet-active {
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.7) !important;
}

#extra-amenities {
  transition: all 0.3s ease;
}

#toggleAmenities {
    /*background-color: var(--beige);*/
    /*color: var(--white);*/
    /*padding: 10px;*/
    /*border-radius: 10px;*/
}

#toggleAmenities i {
    margin-left: 10px; 
}
/* video section  */
.video-section {
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.video-wrapper {
  position: relative;
}

.background-video {
  object-fit: cover;
  height: 80vh;
  width: 100%;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-button {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(1, 1, 1, 0.5);
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* cta section  */
.cta-section {
  background-color: #121212;
  color: var(--white);
  padding: 3rem 0rem;
  margin-top: -10px;
}

.cta-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

/* cloubhouse section  */
.subheading-ch, .subheading-ch span {
  font-weight: 300;
  font-family: "Unbounded", sans-serif;
}

.clubhouse-video {
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 50%;*/
  width: 100%;
  height: auto;
  /*transform: translate(-50%, -50%);*/
  /*object-fit: cover;*/
  /*z-index: 0;*/
}

.clubhouse-content-wrapper {
  padding: 2rem;
  background-color: #0000008f;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clubhouse-content {
  padding: 0 15%;
}

/* .e-brousher section  */
.brochure-section {
    margin-top: -7px;
}

.brochure-image {
  height: auto;
  width: 100%;
}

/* configuration & pricing section */
.custom-table td,
.custom-table th {
  vertical-align: middle;
  text-align: center;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.2);
}

.config-section .btn {
  border-radius: 8px;
  padding: 10px;
}

.config-table {
  background-color: unset !important;
}

th,
td {
  background-color: unset !important;
  color: var(--white) !important;
}

.config-table thead tr th,
.config-table tbody tr td {
  border-right: 1px solid var(--white);
  padding: 15px;
}

.config-table thead tr th:last-child,
.config-table tbody tr td:last-child {
  border-right: unset;
}

.config-table tbody tr td, .config-table thead tr td {
    border-left: 1px solid var(--white);
}

/* .location  */
.adv-list li img {
  height: 30px;
  width: 30px;
}

.adv-list li p {
  padding-left: 5px;
}

/* Photo Gallery */
.gallery-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

.gallery-img-center {
  height: 370px;
  object-fit: cover;
}

/* contact section  */
.contact-section {
  background-color: var(--grey);
}

.contact-icon {
  margin-bottom: 0.5rem;
}

.contact-icon img {
  height: 80px;
  width: 100%;
}

.call-icon-img img {
  height: 50px;
  width: 100%;
}

.contact-box {
  column-gap: 20px;
}

.contact-box h6 {
  font-weight: 400;
  padding-bottom: 20px;
}

.contact-info {
  text-align: start;
}

.contact-info p {
  font-weight: 300;
}

.contact-box::after {
  content: "";
  position: absolute;
  top: -55%;
  right: 0;
  width: 2px;
  height: 150px;
  background-color: var(--white);
}

.contact-divider::before {
  content: "";
  position: absolute;
  top: -55%;
  left: 0;
  width: 2px;
  height: 150px;
  background-color: var(--white);
}

/* footer  */
.footer {
  padding-top: 100px;
}

.footer p,
.footer a {
  color: var(--white);
}

.follow-heading {
  width: 50%;
  padding-bottom: 5px;
  font-weight: 300;
}

.footer a:hover {
  color: var(--grey);
  text-decoration: none;
}

.social-icons i {
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: 0.3s;
}

.form-control,
.form-select {
  background-color: transparent !important;
  border: 1px solid var(--white) !important;
  color: var(--white) !important;
  margin-bottom: 30px;
}

.form-control::placeholder,
.form-select::placeholder {
  color: var(--white) !important;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--white) !important;
  color: var(--black) !important;
  box-shadow: none !important;
  border-color: var(--grey) !important;
}

.download-icon {
  font-size: 30px;
}

.download-btn i {
    background-color: var(--black);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    margin-left: 20px;
    font-size: 20px;
}

.submit-btn {
  background-color: var(--white);
  color: var(--black);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  width: 100%;
}

.footer-form input,
.footer-form select {
  padding: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--white);
  text-align: center;
  padding: 50px 0px;
  font-size: 14px;
  font-weight: 200;
  color: var(--white);
}

.logo-footer img {
    height: 100px;
    width: auto;
}

/* modal  */
.form-modal {
  background-color: var(--black);
}

.modal-title span {
    font-family: "Unbounded", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .subheading {
        padding-bottom: 20px;
        text-align: center;
    }
    
    p {
        font-size: 14px;
    }
    
  .hamburger {
    font-size: 1.8rem;
    cursor: pointer;
    display: block;
    color: var(--white);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    border-radius: 8px;
  }

  .heading {
    font-size: 32px !important;
    text-align: center;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  .para {
      text-align: center;
  }

  /* .hero section  */
    .hero {
        margin-top: -20%;
        height: 140vh;
    }

  .hero-left h1 {
    font-size: 2rem;
  }
  
  .hero-left .location, .hero-left .price, .hero-left .type {
      font-size: 1rem;
  }

  .form-overlay {
    margin-top: 30px;
    padding: 0 2rem;
    height: 100%;
  }
  
  .hero-form h2 {
      font-size: 24px;
  }
  
    .video-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    }

  /* .features-section */
  .features-section {
    padding: 50px 0px;
  }

  .feature-card {
    padding: 1rem;
    margin-bottom: 0;
    min-height: 250px;
  }

  .feature-card h5 {
    font-size: 1rem;
    padding-top: 1.5rem;
  }

  .feature-card p {
    font-size: 12px;
  }

  .feature-icon {
    height: 60px;
  }

  .common-btn-wrapper {
    display: flex;
    justify-content: center;
  }

  .abt-img-wrapper {
    margin-top: 70px;
  }

  /* about  */
  .about-project-section {
    padding-top: unset !important;
  }
  
  .about-project-section .subheading {
      padding-bottom: 10px;
      text-align: center;
  }
  
  .about-project-section .para {
      text-align: center;
  }

  .book-circle-btn {
    height: 100px;
    width: 100px;
    top: 25%;
    right: -12%;
    font-size: 12px !important;
  }
  
/* .amenities  */
  .amenity-caption {
    padding: 15px 10px;
    font-size: 12px;
    font-weight: 200;
  }

  /* video section  */
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  /* clubhouse  */
  .clubhouse-content {
    padding: 0 10px;
    text-align: center;
  }

  /* pricing  */
  .config-table thead tr th,
  .config-table tbody tr td, .config-table tbody tr th {
    font-size: 12px;
    padding: 10px 5px;
  }

  .config-section .btn {
    font-size: 12px;
    width: max-content;
    padding: 5px;
  }

  /* map  */
  .adv-list {
    padding-top: 20px;
  }

  /* gallery  */
  .gallery-container {
    padding-top: unset !important;
  }

  .gallery-img-center {
    height: auto;
    margin: 20px 0px;
  }

  /* contact  */
  .contact-box {
    padding-bottom: 40px;
    flex-direction: column;
  }

  .contact-divider::before {
    display: none;
  }

  .call-icon-img img {
    height: 60px;
  }

  .contact-info {
    text-align: center;
    padding-top: 10px;
  }

  .contact-box h6 {
    font-weight: 400;
    padding-bottom: 10px;
  }

  .contact-box:last-child {
    padding-bottom: unset;
  }
  
  .contact-box::after {
      display: none;
  }

  /* footer  */
  .footer {
    padding-top: 50px;
  }

  .download-btn {
    margin-bottom: 40px;
  }

  .form-control,
  .form-select {
    margin-bottom: unset;
  }

  .submit-btn {
    margin-top: 20px;
  }

  .download-btn i {
    font-size: 20px;
  }

  /* floating btn  */
  .floating-buttons {
    bottom: 0%;
    right: unset;
    flex-direction: row;
    width: 100%;
    gap: unset;
  }
  
  .floating-buttons a:last-child {
      border-left: 1px solid var(--white);
  }
  
  .floating-btn {
        height: 45px;
        width: 100%;
        box-shadow: unset;
  }

  .floating-btn i {
    font-size: 20px;
    color: var(--beige);
  }
  
  /*table section */
  .config-table tbody tr td, .config-table thead tr td {
    border-left: 1px solid var(--white);
    font-size: 12px;
  }
  
  /*modal */
  .modal-form-mob {
    margin-top: unset;
  }
}
