@import url('https://fonts.google.com/share?selection.family=Comfortaa:wght@300..700|Nanum+Myeongjo|Noto+Sans:ital,wght@0,100..900;1,100..900');
:root {
    --green: #24c1c4;
    --black: #0f0e0e;
    --light-color: #797676;
    --text-shadow: 0.4rem 0.4rem 0 rgba(0,0,0,0.2);
    --border: 0.2rem solid var(--green);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    transition: all 0.2s ease-out;
    text-decoration: none;
  }
 html {
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
  }
  
  .hero {
    position: sticky;
    left: 0;
    top: 0;
    height: 70vh;
    width: 100%;
    z-index: -1;
    align-items: center; /* Center vertically */
    justify-content: center;
}

.context {
    position: absolute;
    top: 30%;
    font-size: 3.2rem;
    width: 65%;
    padding: 2rem;
}

.hero .background-container {
    width: 100%;
    min-height: 95%;
    padding: 0;
}


@media(max-width: 650px) {
  .hero {
      min-height: 70vh;
      font-size: 2.4rem;
  }
  .hero .context {
      font-size: 1.4rem;
      padding: 2rem;
  }
  .context a {
      top: 70%;
      left: 2rem;
      font-size: 1.4rem;
  }
  .header .logo-container a {
      font-size: 2.5rem;
  }
  .logo-container .logo-img {
      margin: 0.2rem;
  }
}

  
  /* Header */
  .header {
    padding: 1rem 9%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
}

.logo-container .logo-img {
    width: 7rem;
    height: auto;
    margin-right: 0.5rem;
}

.header .logo-text {
    font-size: 3rem;
    color: var(--green);
}

.logo-text i {
    font-size: 3rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5%;
}

.header .navbar {
    display: flex;
    align-items: center;
}

.header .navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .navbar ul li {
    margin-left: 2rem;
}

.header .navbar ul li a {
    font-size: 1.5rem;
    color: var(--black);
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
}

.header .navbar ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.25rem;
    background: var(--green);
    transition: width 0.3s ease-in-out;
}

.header .navbar ul li a:hover {
    color: var(--green);
}

.header .navbar ul li a:hover::after {
    width: 100%;
}

#menu-btn {
    font-size: 2.5rem;
    color: var(--black);
    cursor: pointer;
    display: none;
    background: transparent;
    border: none;
    outline: none;
}

.menu-btn:hover {
    color: var(--black);
}

@media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 0;
        border-bottom: 0;
        padding: 1rem 0;
        text-align: center;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0s ease-in-out;
    }

    .header .navbar.active {
        max-height: 60rem;
    }

    .header .navbar ul {
        flex-direction: column;
    }

    .header .navbar ul li {
        margin: 1rem 0;
    }

    .header .navbar a {
        margin: 1rem 0;
        font-size: 2rem;
    }

    .header .navbar.active {
        background-color: rgb(238, 232, 232);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .hours-day, .hours-time, .h {
        font-size: 1.6rem;
    }
}
  .background-container {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
  }
  
  
  /* Button */
  .btn {
    position: absolute;
    top: 45%;
    right: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    border: 0.2rem solid var(--black);
    background-color: #24c1c4;
    width: 18rem;
    padding: 1.4rem;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    /* cursor: pointer; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* transition-duration: 0.3s;
    transition-property: box-shadow, transform; */

}

.btn:hover, .btn:focus, .btn:active {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.content {
    margin-top: 0;
    background-color: white;
    padding-top: 0;
}

@media(max-width: 668px) {
    .background-container {
        background-attachment: scroll;
        padding-top: 10rem;
        width: 100%;
    }
}

@media(max-width: 450px) {
    .background-container {
        padding-top: 10rem;
    }
}

@media(max-width: 900px) {
    .background-container {
        width: 100%;
    }
}

  
  /* Intro Section */
  .intro-section {
    background-color: white;
    padding: 20px;
    text-align: center;
  }
  
  .intro-img {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .intro-content p {
    margin: 10px 0;
  }
  
  /* Slideshow */
  .slideshow-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 95vh;
    /* padding-top: 20rem; */
overflow: hidden;

}
  .slideshow-container {

    position: relative;
    margin: auto;
    max-width: 50%;
    /* padding-top: 2rem; */
}


.mySlides {
    display: none;
    width: 100%;
    border-radius: 0 0.3rem 0.3rem 0;
    box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 1);

}

img {
    
    vertical-align: middle;
    width: 100%;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -2.2rem;
    padding: 1.6rem;
    color: rgb(12, 11, 11);
    font-weight: bold;
    font-size: 2.5rem;
    transition: 0.6s ease;
    border-radius: 0 0.3rem 0.3rem 0;
    user-select: none;
    user-select: none;
}

.next {

    right: -50px;
    border-radius: 0.3rem 0 0 0.3rem;
    transform: translateY(-50%);
}
.prev {
left: -50px;
top: 50%;
    transform: translateY(-50%);
} 
.prev:hover, .next:hover {
    background-color: rgba(220, 213, 213, 0.8);
}

.dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    margin: 0 0.2rem;
    background-color: #d5d3d3;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color:var(--green);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4} 
    to {opacity: 1}
}

  /* Additional Info */
  .additional-info {
    padding: 2rem 9%;
    background-color: white;
   
  }
  
  .info-item {
    margin-bottom: 2rem;
  }
  
  
  .info-item img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  }
  .info-item p {
    text-align: center;
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
}


section {
    
    padding: 2rem 4%;
}

  
  /* Contact Section */
  .circle-img {
    width: 50rem;
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it doesn't exceed the container width */
    justify-content: center;
    border-radius: 50%;
    border: 0.3rem solid var(--black);
    object-fit: cover;
    margin: 0 auto; 
    display: block;
  }
  
 
  
  .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    width: 100%;
    height: auto; /* Adjust as needed */
    box-shadow: var(--black);
    border-radius: 1rem;
    background-image: url('blur.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .whatsapp-contact {
    border: none;
text-align: center;
margin-top: 2rem;
padding: 0;
box-shadow: none;
}

.whatsapp-link {
display: inline-block;
background-color: #25D366;
color: white;
padding: 10px 20px;
border-radius: 20px;
text-decoration: none;
font-size: 20px;
transition: background-color 0.3s;
}

.whatsapp-link i {
margin-right: 10px;
}

.whatsapp-link:hover {
background-color: #1da955;
}
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .circle-img {
      width: 30rem; /* Adjust size for smaller screens */
      height: auto; /* Maintain aspect ratio */
    }
  }
  

  .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.info h2 {
  color: var(--green);
}

.grid {
  text-align: center;
}

.hours-container {
  display: grid;
  justify-content: center;
  grid-template-columns: 20rem 5rem 20rem;
  grid-template-rows: repeat(7,5rem);
 
}
.hours-time{
  display: flex;
  margin-right: 10px;

  font-size: 16px;
}
 .h {
    display: flex;
  margin-right: 20px;

}
.hours-day {
    display: flex;
   
    font-size: 16px;
    margin-left: 40px;
  }

.time {
  text-align: center;
  justify-content: left;
}
.day {
margin-right:  0px; 
}

.time {
  margin-left: 0px; 
}

  .follow-us {
    text-align: center;
    padding: 2rem 0 .5rem 0;
  }
  
  .follow-us h2 {
    font-size: 2rem;
  }
 

.wrapper {
    display: inline-flex;
    gap: 20px; 
}

.button {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 0.3rem soild black;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: width 0.7s;
    text-decoration: none;
}

.wrapper .button .icon {
    font-size: 20px;
    color: black; /* Default color for icons */
    transition: color 0.7s;
}

.wrapper .button:hover {
    width: 100px;
    transition:  0.7s;
}

.wrapper .button:nth-child(1):hover .icon {
    color: #0a62a1;
}

.wrapper .button:nth-child(2):hover .icon {
    color: #1DA1F2;
}

.wrapper .button:nth-child(3):hover .icon {
    color: #E1306C;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
    .main{
        flex-direction: column;
    }
}


 
  /* Footer */
  
    .ft {
        background-color: #333;
        color: #fff;
        font-size: 12px;
        text-align: center;
        padding: 1em;
        width: 100%;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        left: 0%;
        position:relative;
        margin-top:22px;
    }
    
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar ul {
      display: none;
    }
  
    .menu-btn {
      display: block;
    }
  
    .additional-info {
      flex-direction: column;
    }
  
    .info-item {
      flex: 1 1 100%;
      margin: 20px 0;
    }
  }
  .gallery-section {
    padding: 2rem 9%;
    padding-top: 0%;
    text-align: center;
    background-color: white;
    
}

.gallery-section h1 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.gallery-container {
    display: grid;
    gap: 2rem;
    justify-content: center;
    
}

.gallery-item {
  width: 60;
  
}

.gallery-item img {
    width: 60%;
    height: auto;
    border: 0.3rem solid var(--green);
    border-radius: 1rem;
    box-shadow: 0 9px 9px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}
.gallery-item img:hover {
    transform: scale(1.05); 
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2); /* Increase the shadow */
}



@media (max-width: 768px) {
    .gallery-container {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    }
  }
  .section-title {
    text-align: center;
    margin: 2rem 0;
}

.section-title h2 {
    font-size: 2.5rem;
    color:var(--green); /* Adjust color as needed */
    font-weight: bold;
    margin-bottom: 1rem;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* Adjust font size as needed */
    color: #333; /* Adjust color as needed */
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-dots::before,
.right-dots::after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #000000,
        #000000 2px,
        transparent 2px,
        transparent 4px
    );
    margin: 0 1rem; 
}

.left-dots::before::after,
.right-dots::after::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 2px;
    background:var(--green); 
    border-radius: 50%;
    position: absolute;
    animation: dot-animation 1s infinite;
}

.left-dots::before::after {
    left: 10px;
}

.right-dots::after::before {
    right: 10px;
}

@keyframes dot-animation {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px); 
    }
}


  
  
  