 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', Arial, sans-serif;
     background: linear-gradient(135deg, #87ceeb, #f0e68c);
     color: #2c3e50;
     line-height: 1.6;
     overflow-x: hidden;
 }

 /* Navbar */
 header {
     background: linear-gradient(90deg, #2c3e50, #3498db);
     color: #fff;
     padding: 20px;
     font-size: 28px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     position: sticky;
     top: 0;
     z-index: 10;
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     padding: 0 20px;
 }

 .logo {
     font-size: 1.8rem;
     font-weight: 700;
     color: #fff;
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 nav ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     justify-content: center;
     background: transparent;
 }

 nav ul li {
     margin: 0 20px;
 }

 nav ul li a {
     color: #fff;
     text-decoration: none;
     font-size: 18px;
     padding: 8px 12px;
     display: block;
     transition: all 0.3s ease;
     position: relative;
 }

 nav ul li a:hover {
     color: #f1c40f;
     transform: translateY(-3px);
 }

 nav ul li a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: #f1c40f;
     transition: width 0.3s ease;
 }

 nav ul li a:hover::after {
     width: 100%;
 }

 /* Hamburger Menu */
 .hamburger {
     display: none;
     cursor: pointer;
 }

 .hamburger .line {
     width: 30px;
     height: 2px;
     background-color: #fff;
     display: block;
     margin: 6px auto;
     transition: all 0.3s ease-in-out;
 }

 .hamburger-active {
     transform: rotate(45deg);
 }

 .hamburger-active .line:nth-child(2) {
     width: 0;
 }

 .hamburger-active .line:nth-child(1) {
     transform: translateY(12px);
 }

 .hamburger-active .line:nth-child(3) {
     transform: translateY(-8px) rotate(90deg);
 }

 .menubar {
     position: fixed;
     top: 0;
     left: -60%;
     display: flex;
     justify-content: center;
     align-items: flex-start;
     width: 60%;
     height: 100vh;
     padding: 20% 0;
     background: rgba(44, 62, 80, 0.95);
     transition: all 0.5s ease-in-out;
     z-index: 2;
 }

 .menubar.active {
     left: 0;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
 }

 .menubar ul {
     padding: 0;
     list-style: none;
     text-align: center;
 }

 .menubar ul li {
     margin-bottom: 40px;
 }

 .menubar ul li a {
     text-decoration: none;
     color: #fff;
     font-size: 1.3rem;
     font-weight: 600;
     padding: 12px 25px;
     border-radius: 8px;
     display: block;
     background: rgba(255, 255, 255, 0.1);
 }

 .menubar ul li a:hover {
     background: #f1c40f;
     color: #2c3e50;
 }

 /* Container */
 .container {
     width: 95%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 1rem;
 }

 h2 {
     text-align: center;
     margin-bottom: 1.5rem;
     margin-top: 1.5rem;
     color: #2c3e50;
     font-size: 1.8rem;
     font-weight: 600;
 }

 /* Gallery Controls */
 .gallery-controls {
     display: flex;
     justify-content: center;
     margin-bottom: 2rem;
     flex-wrap: wrap;
     gap: 8px;
 }

 .filter-btn {
     padding: 0.5rem 1rem;
     margin: 0.3rem;
     border: none;
     background: linear-gradient(45deg, #e0e0e0, #d5d5d5);
     color: #333;
     border-radius: 20px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
     font-weight: 500;
 }

 .filter-btn.active {
     background: linear-gradient(45deg, #3498db, #2980b9);
     color: #fff;
     box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
 }

 .filter-btn:hover {
     background: linear-gradient(45deg, #3498db, #2980b9);
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
 }

 .book-btn {
     display: inline-block;
     background: linear-gradient(45deg, #e67e22, #d35400);
     color: #fff;
     padding: 0.5rem 1rem;
     border-radius: 25px;
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
 }

 .book-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
 }

 /* Featured Section */
 .featured-section {
     margin-bottom: 2rem;
     background: #fff;
     padding: 1.5rem;
     border-radius: 15px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     width: 100%;
 }

 .featured-title {
     text-align: center;
     margin-bottom: 1rem;
     color: #e67e22;
     font-size: 1.8rem;
     font-weight: 600;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
 }

 .featured-gallery {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 1rem;
 }

 /* Gallery Section */
 .gallery {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 1.5rem;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     transition: all 0.4s ease;
     background-color: #fff;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .gallery-item:hover {
     transform: scale(1.05);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
 }

 .gallery-img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s;
 }

 .gallery-item:hover .gallery-img {
     transform: scale(1.1);
 }

 .gallery-caption {
     padding: 1rem;
     background-color: #fff;
     flex-grow: 1;
 }

 .gallery-title {
     font-weight: bold;
     margin-bottom: 0.5rem;
     font-size: 1.1rem;
     color: #2c3e50;
 }

 .gallery-desc {
     color: #666;
     font-size: 0.9rem;
 }

 .gallery-meta {
     display: flex;
     justify-content: space-between;
     padding: 0.5rem 1rem;
     border-top: 1px solid #eee;
     color: #777;
     font-size: 0.8rem;
     flex-wrap: wrap;
 }

 .gallery-location {
     display: flex;
     align-items: center;
     margin: 5px 0;
 }

 .gallery-location i {
     margin-right: 0.3rem;
     color: #e67e22;
 }

 .gallery-share {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .share-btn {
     margin-left: 0.5rem;
     color: #777;
     transition: color 0.3s;
 }

 .share-btn:hover {
     color: #3498db;
 }

 /* Center last card */
 .center-last {
     justify-self: center;
     max-width: 280px;
     /* Match minmax width of featured-gallery */
 }

 .gallery .center-last {
     max-width: 250px;
     /* Match minmax width of gallery */
 }

 /* Map */
 #map {
     height: 400px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .map-title {
     text-align: center;
     margin-bottom: 1rem;
     color: #e67e22;
     font-size: 1.8rem;
     font-weight: 600;
 }

 /* Footer */
 footer {
     background: linear-gradient(90deg, #2c3e50, #34495e);
     color: #fff;
     padding: 40px 20px;
     margin-top: 60px;
     text-align: center;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 20px;
 }

 .footer-column p {
     font-size: 16px;
     margin-bottom: 20px;
 }

 .social-links {
     display: flex;
     gap: 15px;
     justify-content: center;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     width: 40px;
     height: 40px;
     background: #000000;
     border-radius: 50%;
     color: #ffffff;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: #f1c40f;
     transform: rotate(360deg);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 20px;
     margin-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     font-size: 14px;
     color: #bdc3c7;
 }

 /* Responsive Design */
 @media (max-width: 992px) {

     .gallery,
     .featured-gallery {
         grid-template-columns: repeat(2, 1fr);
         gap: 1rem;
     }

     .gallery-controls {
         gap: 5px;
     }

     .filter-btn {
         padding: 0.4rem 0.8rem;
         font-size: 0.9rem;
     }

     .container {
         padding: 0.8rem;
     }
 }

 @media (max-width: 768px) {
     nav ul {
         display: none;
     }

     .hamburger {
         display: block;
     }

     header {
         padding: 10px 0;
     }

     h2 {
         font-size: 1.5rem;
     }

     .featured-title {
         font-size: 1.3rem;
     }

     .gallery-img {
         height: 180px;
     }

     .modal-content {
         flex-direction: column;
     }

     .modal-img,
     .image-info {
         max-width: 100%;
     }
 }

 @media (max-width: 480px) {

     .gallery,
     .featured-gallery {
         grid-template-columns: 1fr;
     }

     .gallery-controls {
         flex-direction: column;
         align-items: center;
         gap: 8px;
     }

     .filter-btn {
         width: 90%;
         margin: 0.2rem;
     }

     .gallery-meta {
         flex-direction: column;
         align-items: flex-start;
     }

     .gallery-share {
         margin-top: 5px;
     }

     .container {
         width: 100%;
         padding: 0.5rem;
     }

     .gallery-img {
         height: 150px;
     }

     .book-btn {
         font-size: 0.8rem;
         padding: 0.4rem 0.8rem;
     }
 }