* {
margin: 0;
padding: 0;
box-sizing: border-box;
}


body {
font-family: Arial, sans-serif;
background: #fbfbfb;
}

.cus-tophead {
background:#fff;
color:#000;
padding:1% 3%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 1%;
  align-items: center;
}

.logo img {
max-width:200px;
height:auto;
}

.menu {
color:black;
text-align: right;
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    background: url('./imgs/beach.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* black overlay at 30% opacity */
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .hero button {
    padding: 16px 60px;
    font-size: 1rem;
    background-color: background-color: #766b5a99;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    color: black;
    transition: background-color 0.3s ease;
  }

  .hero button:hover {
    background-color: #766b5a;
    color:white;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
    .hero button {
      padding: 10px 25px;
      font-size: 0.9rem;
    }
  }



.main-container {
width:100%;
margin:0 auto;
background:#fbfbfb;
}

.icon-grid {
padding:8% 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% 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.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 p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.two {
background:white;
}

.image-text-section {
background:white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  padding:8% 10%;
}

.map {
background:#fbfbfb;
padding:5% 10%;
}

.image-container img {
  width: 100%;
  max-width: 400px;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-container {
  max-width: 500px;
}

.text-container h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #111827;
}


.text-container p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}


.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: 1000px;
  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 {
  max-width: 98%;
 margin-top:14%;
  /*max-height: 80vh;*/
  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: bold;
  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:0%;
}

.hide {
position:absolute;
bottom:0;
left:0;
width:100%;
background:#000;
height:70px;

}

.footer {
background:white;
width:100%;
text-align:center;
padding:3%;
color:black;
}

/* Responsive adjustments */
  @media (max-width: 768px) {
    
.icon-grid {
padding:8% 4%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  gap: 1%;
}

.image-text-section {
  display: block;
  gap: 10px;
  padding:8% 10%;
}

.map {
background:#fbfbfb;
padding:6%;
}

.image-container img {
  width: 100%;
  max-width:none;
}

.text-container {
width:100%;
  max-width:none;
}

  }
