* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
html,
    body {
      position: relative;
      height: 100%;
      width: 100%;
    }
/* Navigation Styles */
/* nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
} */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    z-index: 1000;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 40px;
    display: block;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
}

.book-btn {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}
a:hover{
    color: #e68a00;
}
.book-btn:hover {
    background-color: #e68a00;
}

/* Menu icon - hidden on large screens */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Side menu styles */
.side-menu {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    right: -100%;
    transition: 0.3s ease;
    z-index: 9999;
    padding-top: 40px;
}

.side-menu ul {
    list-style: none;
    text-align: center;
}

.side-menu ul li {
    margin: 20px 0;
}

.side-menu ul li a, .side-menu ul li button {
    color: white;
    font-size: 24px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Close icon */
.close-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
   .navbar .nav-links {
        display: none;

    }
    .navbar{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 10px;
        flex-direction: row;
    }
   .navbar .book-btn{
        display: none;
    }
    
    .menu-icon {
        display: block;
    }

    .side-menu.open {
        right: 0;
    }

    .hero{
    background-position: center;

    }
}




.logo {
    width: 50px;
    height: 50px;
    /* background: white; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    position: relative;
    overflow: hidden;
}
.logo img{
    width: 100%;
    height: 100%;

}
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #CD853F;
}

.book-btn {
    background: #CD853F;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background: #A0522D;
}

/* Hero Section */
.hero {
    height: 100vh;
    /* background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('/api/placeholder/1920/1080'); */
    background-image: url("./images/IMG-20241011-WA0021.jpg");            
    background-size: cover;
    background-position: top;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1rem;
    margin-top: 5rem;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: black;
    color: white;
}

.service-item {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 1rem auto;
    text-align: left;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}
.service-info{
    text-align: left;
}
.service-info h3 {
    margin-bottom: 0.5rem;
    color: #CD853F;
}

.service-info p {
    color: #888;
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.5rem;
    color: white;
}

/* Team Section */
.team {
    padding: 6rem 2rem;
    background: black;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.team-member h3 {
    color: #CD853F;
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 1rem;
    color: #888;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: black;
    color: white;
    text-align: center;
}

.contact h1 {
    color: #CD853F;
    margin-bottom: 2rem;
}

.map-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        margin: 0 auto; /* Center the map */
        max-width: 800px; /* Optional maximum width */
    }
    
    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    


.swiper {
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    height: auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper {
    margin-left: auto;
    margin-right: auto;

  }

  .about-us{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .about-us img{
    height: 80vh;
    width: 80%;
    border-radius: 40px;
    margin-top: 5vh;
  }
  .about-us h1{
    font-size: 2rem;
    color: #CD853F;

  }
  .about-us p{
    font-size: 2vw;
    width: 80%;
    margin-top: 5vh;
  }

  @media (max-width: 768px){
    .about-us img{
        height: 50vh;
    }
    .about-us p{
        font-size: 3vw;
    }
  }
