/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');


body, a, li, a:link, span, h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 
               BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", 
               Arial, "Noto Sans", sans-serif;
  line-height: 1.2;
text-decoration:none;
color:black;
}

h1, h2, h3, h4, h5, h6  {
 font-weight:100;
}

h2 {
font-size: 1.8rem;
}

ul {
    list-style-type: none;
}

:root {
      --overlay-opacity: 0.3;
      --video-scale: 1.2; /* set >1 (e.g. 1.03) if you still see tiny gaps on some screens */
    }

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}


body {
background: #fbfbfb;
}

.cus-tophead {
background:#fff;
color:#000;
padding:1% 0%;
  display: grid;
  grid-template-columns: 75% 25%;
  align-items: center;
}

.cus-tophead h1 {
font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 
               BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", 
               Arial, "Noto Sans", sans-serif;
    font-size: 36.6px;
    letter-spacing: 27px;
    font-weight: 100;
}

.cus-tophead h2 {
font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 
               BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", 
               Arial, "Noto Sans", sans-serif;
    font-size:17.8px;
    letter-spacing: 18px;
    font-weight: 100;
}


.logo {
padding-left:3%;
}

.menu {
color:black;
text-align: right;
line-height: 29px;
/*margin-bottom: -44px;*/
margin-bottom: -26px;
padding-right: 3%;
}

.video-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      /*padding-top: 56.25%; */
    }

    .video-container video {
      /*position: absolute;*/
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


.hero {
      position:relative;
      width:100%;
      height:100vh;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      /*background-image:url("imgs/thumb.jpg");
background-size:103%;
background-position:center center;
background-repeat:no-repeat;*/
    }

    /* wrapper holds the iframe and ensures we can crop it */
    .video-wrap{
      position: absolute;
      inset: 0; /* top:0; right:0; bottom:0; left:0; */
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
      will-change: transform;
    }

    /* center the iframe and force it to cover using vw/vh */
    .video-wrap iframe{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(var(--video-scale));
      /* the important part: ensure it cannot be smaller than viewport */
      min-width: 100vw;
      min-height: 100vh;
      width: auto;
      height: auto;
      border: 0;
      pointer-events: none;
    }

    /* Overlay sits above the video */
    .overlay{
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,var(--overlay-opacity));
      z-index: 1;
      pointer-events: none;
    }

    /* content above overlay */
    .content{
      padding: 1rem;
      margin-top: 28px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1.4s ease-out forwards;
      animation-delay: 0.5s;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .content h1 {
font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 
               BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", 
               Arial, "Noto Sans", sans-serif;
      font-size: 2rem;
text-transform:uppercase;
font-weight:100;
      margin-bottom: 20px;
margin-top: 35px;
text-align:center;
letter-spacing:7px;
    }

.content p {
text-align:center;
}


    @media (max-width: 768px) {
      .content h1 {
        font-size: 2rem;
      }
    }

.btn{
      display:inline-block;
      background:#000;
      color:#fff;
      border:0;
      padding:12px 48px;
      border-radius:0px;
      cursor:pointer;
      font-size:1rem;
      text-decoration:none;
      opacity:0;
      transform:translateY(20px);
      animation:fadeUp 1.2s ease-out forwards;
      animation-delay:1.1s;
      transition:transform 0.3s,background 0.3s;
    }
    .btn:hover{background:#222;transform:translateY(-2px)}

.main-container {
width:100%;
margin:0 auto;
background:#fbfbfb;
}

.sub-section {
text-align:center;
font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 
               BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", 
               Arial, "Noto Sans", sans-serif;
padding:3% 0;
background:white;
}

.sub-section h3 {
font-weight:bold;
}

.sub-section span {
font-size:15px;
font-weight:100;
}

.icon-grid {
background:#fbfbfb;
padding: 3% 15% 9% 15%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  gap: 1%;
  /*max-width: 1000px;*/
  margin: 0 auto;
  align-items: center;
  verticle-align:middle;
}

.grid-item {
  background: #fff;
  align-items: center;
  verticle-align:middle;
  margin-top:5px;
  border-radius: 5px;
  padding: 15% 12%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.two .grid-item {
min-height: 312px;
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.grid-item i {
  width: 56px!important;
  height: 56px!important;
  margin-bottom: 20px;
  stroke: #4f46e5; /* Indigo */
}

.grid-item svg {
width: 40px;
  height: 40px;
margin-bottom: 20px;
}

.grid-item h3 {
  margin-bottom:20px;
  font-weight:bold;
}

.grid-item p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.two {
background:white;
padding:0% 15%;
}

.image-text-section {
background:white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  padding:8% 11%;
}

.cus-link {
text-decoration:underline;
font-weight:400;
color:black;
margin-top:20px;
}

.map {
background:#fbfbfb;
padding:5% 10%;
}

.image-container {
width:50%;
}

.image-container img {
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-container {
  width:50%;
}

.text-container h2 {
  font-size: 1.8rem;
  margin-top: 12px;
margin-bottom: 20px;
  color: #111827;
}


.text-container p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
margin-bottom:30px;
}


.text-container ul li {
padding:10px 0px;
font-size: 14px;
}

.full {
max-width:1300px;
margin:0 auto;
padding:8%;
}


.gallery-title {
  text-align: center;
  margin-bottom: 20px;
  color: #111827;
}

.third {
width:100%;
height:auto;
padding:8%;
text-align:center;
}

.third h1 {
margin-bottom:40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 0px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  
}

.lightbox-img {
  width: 98%;
/*max-width:1000px;*/
max-width:1400px;
 margin-top:4%;
  border-radius: 0px;
  /*box-shadow: 0 0 20px rgba(255,255,255,0.3);*/
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: 100;
  font-size: 40px;
  user-select: none;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  color: #f1f1f1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* Responsive Tweaks */
@media (max-width: 600px) {
  .close {
    font-size: 28px;
    right: 20px;
  }
  .prev, .next {
    font-size: 28px;
  }
}


.contact {
width:100%;
position:relative;
background:#000;
margin:0 auto;
text-align:center;
color:#fff;
padding-top: 3%;
padding-bottom:0%;
}

.contact button {
padding:1%;
margin-top:15px;
border-radius: 10px 15px 0px 0px;
border: none;
outline: none;
}

.contact button h2 {
    font-size:24px;
}

.container {

      bottom: 0;
      width: 400px;
      margin:0 auto;
      max-height: 0;
      overflow: hidden;
      background: #fff;
      transition: max-height 0.4s ease;
      z-index: 1000; /* keep it above page content */
    }

    .container.open {
      max-height: 500px; /* expanded height */
      margin: 0 auto;
    }


    .toggle-btn {
      bottom: 0;
      margin-top:20px;
      background: #fff;
padding:1%;
      color: black;
     text-decoration:none;
      border: none;
      padding: 12px 18px;
      border-radius: 8px 8px 0 0;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.3s;
       z-index: 2000;
    }



.footer {
background:white;
width:100%;
text-align:center;
padding:2%;
color:black;
}

/* Responsive ipad */
  @media (max-width: 1192px) {

.cus-tophead {
    height:88px;
}

.cus-tophead h1 {
    font-size: 26.6px;
}

.menu {
    font-size: 15px;
}

    .hero {
        height: 409px;
    }

}

/* Responsive mobile */
  @media (max-width: 768px) {

.cus-tophead {
    display: block;
    height:auto;
}

.cus-tophead h1 {
    font-size: 26.6px;
    letter-spacing: 6px;
    padding-top: 17px;
}  
  
.logo {
width:100%;
text-align:center;
padding-bottom:15px;
padding-left:0%;
}

.menu {
    text-align:center;
margin-bottom:3px;
padding-right: 0%;
}

.video-container {
    height: 409px;
}

.content {
        margin-top: 0px;
    }

.content h1 {
        font-size: 1rem;
    }

.icon-grid {
padding:8% 4%!important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  gap: 1%;
}

.grid-item {
min-height:188px;
}

.grid-item .two {
min-height: 350px;
}

.grid-item h3 {
    font-size: 15px;
}

.icon-grid p {
font-size: 0.8rem;
}

.image-text-section {
  display: block;
  gap: 10px;
  padding:8% 10%;
}

.map {
background:#fbfbfb;
padding:6%;
}

.image-container {
    width: 100%;
}

.image-container img {
  width: 100%;
  max-width:none;
}

.text-container {
width:100%;
  max-width:none;
}

.text-container h2 {
  margin-top: 24px;
margin-bottom:20px;
}

.sub-section {
    padding: 8% 0% 6% 0%;
}

.gallery {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

.avail {
margin-top:60px;
}

.container {
width:100%;
}

.contact h1 {
    font-size:21px
}

.contact button {
    width: 94%;
}

.contact button h2 {
    font-size:17px;
padding-top: 13px;
}

.contact button h3 {
    font-size:14px;
padding-bottom: 13px;
}

  }

@media (max-width: 550px) {
    .video-container {
        height: 300px;
    }
}

/*@media (max-width: 420px) {
    .hero {
        height: 200px;
    }
}*/
