@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior:smooth;
    overscroll-behavior: smooth;
}

body {
 
        user-select: none; /* Prevents text selection */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
          font-family: 'Poppins', sans-serif;
      background-color: #f8f4f0;
      color: #5b2c25;
 
}
/* Navbar styles */
nav {
    
    
    
    padding: 0px 10%;
    background-color: rgba(0, 0, 0, 0.322);
    
    backdrop-filter: blur(15px);
    position: fixed;
   
    z-index: 1000;

    width: 100%;display: flex; flex-direction: row; align-items: center; justify-content: space-around;padding-top: 15px;padding-bottom: 15px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    padding: 2vw;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #dca854;
    font-size: 1.2rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #006600;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.418);
   
}

nav ul li:hover .dropdown-menu {
    display: block;
    transition-duration: 0.3s;
}

.dropdown-menu ul {
    display: block;
    margin: 10px;
}

.dropdown-menu ul li {
    padding: 10px 30px;
    
}

/* Button styles */
button {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    padding: 8px 12px;
    transition: 0.5s;
    width: auto;
    font-family: Poppins;
    height: auto;
    
}
.hero-text button{
    margin-top: 2%;
}
 
button:hover {
    color: #ffffff;
    background-color: #006600;
    transform: scale(1.2);
}

/* Logo styles */
.logo {

     
    display: block;

    transition-duration: 0.3s;
    overflow: hidden;
    
}

.logo:hover {
    transform: scale(1.2);
} 
  body {
      margin: 0;

    }
    .container {
background-color: #f8f4f0;
      max-width: 900px;
      margin: auto;
      padding: 10% 20px 60px 20px;
    }
    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      color: #B7410E;
    }
    h1 {
      font-size: 42px;
      margin-bottom: 30px;
      text-align: center;
    }
    .place-image {
      width: 100%;
      max-height: 500px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      margin-bottom: 40px;
    }
    .place-details {
      background-color: #fdf2e9;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 40px;
      line-height: 1.8;
    }
    .place-details ul {
      padding-left: 20px;
    }
    .place-details li {
      margin-bottom: 10px;
    }
    .image-gallery {
      margin-bottom: 40px;
    }
    .image-gallery h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
      gap: 20px;
    }
    .gallery img {
      width: 100%;
      border-radius: 10px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }
    .location-section {
      margin-top: 40px;
    }
    .location-section h2 {
      font-size: 28px;
      color: #dca854;
      margin-bottom: 20px;
    }
    iframe {
      width: 100%;
      height: 400px;
      border: 0;
      border-radius: 10px;
    }


    /* ------------------------------------------------------------------------------footer-----------------------------------------------------------------------------*/
/* Footer Base */

footer {
    background-color: #333b41;
    ;
    padding: 40px 5%;
    color: #D3D3D3;
    font-family: Poppins, sans-serif;
}

/* Footer Main Container */
.main-fot-container {
    display: flex;
    justify-content: space-between;  /* Equal spacing */
    align-items: flex-start;         /* Align to the top */
    gap: 5vw;                        /* Adjusts spacing between sections */
    padding: 20px 5%;                /* Adds some padding */
    flex-wrap: nowrap;   
    margin-top: 5%;             /* Prevents wrapping */
}


/* Logo Section */
.first-fot-container {
    width: 30%;
    margin-top: 10px;
}
.first-fot-container .logo {
    width: 25vh;
    height: auto;
}
.footer-text-one {
    text-align: justify;
    font-size: 20px;
    margin-top: 20px;
  
    
}

/* Contact Section */
.second-fot-container {
    width: 30%;
    text-align: left;
}

.second-fot-container h5 {
    color: #006600;
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.second-fot-container h5:hover {
    border-bottom: 3px solid #006600;
    color: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.first-fot-container,
.second-fot-container,
.third-fot-container {
    width: 30%; /* Ensures equal width */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
}
.second-fot-container{
    text-align: center;
    display: inline;
    justify-content: center;
    margin-top: 4%;
    
}
.third-fot-container{
    margin-top: 10%;
} 

/* Contact Icon Background */
.fot-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;
   
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* Icon Images */
.fot-icon img {
    width: 35px;
    height: 35px;
    transition: 0.3s ease;
    padding: 0;
}


.fot-icon:hover img {
    transform: scale(1.3);
}

/* Footer Navigation */
.third-fot-container {
    width: 20%;
    text-align: left;
    pointer-events: fill;
}

.third-fot-container ul {
    padding: 0;
}

.third-fot-container ul li {
    list-style: none;
    margin-bottom: 15px;
}

.third-fot-container ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #dca854;
    transition: 0.3s;
    font-size: 20px;
}

.third-fot-container ul li a:hover {
    color: #006600;
}
.third-fot-container a {
    position: relative;
    z-index: 10;
}
.LinkdIn{
    width: 100%;
    text-align: left;
    padding-top: 10px;
}
/* Footer Decorative Image */
.footer-decor {
    width: 600px;
    height: auto;

margin-top: 50px;
margin-right: -180px;
margin-left: -600px;
margin-bottom: -59px;
position: relative;
overflow: hidden; 
}


    