 /* Body and Font Styling */
 body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin-top: 35px; /* Ensure there's enough space for the fixed header */
}

/* Header Section */
header {
    position: relative;
    width: 100%;
}

/* Navigation Bar */
header {
    position: relative;
    width: 100%;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Center everything horizontally */
    align-items: center; /* Center items vertically */
    padding: 10px 50px; /* Adjust padding */
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Flex container to center logo and links */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    margin-right: 350px; /* Add space between logo and links */
}

.logo img {
    width: 85px;
    height: auto;
    border-radius: 8px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    justify-content: center; /* Center the nav links */
    align-items: center;
    margin: 0; 
}

.nav-links li {
    margin: 0 15px; /* Space between links */
}

.nav-links li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f0a500;
}

/* Book Now Button */
.btn-book {
    background: #f0a500;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background: #e08900;
}

/* Mobile Navigation */
.burger {
    display: none; /* Hide on larger screens */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        padding: 0 20px; /* Reduce padding for mobile */
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        flex-direction: column; /* Stack links vertically */
        align-items: flex-start; /* Align links to the left */
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%; /* Full width */
        height: auto; /* Take minimum space */
        transform: translateX(100%);
        transition: transform 0.5s ease;
        padding: 10px 0; /* Padding for vertical links */
    }

    .nav-links li {
        margin: 10px 0; /* Space between links */
        padding-left: 20px; /* Indentation for links */
    }

    .nav-links a {
        font-size: 16px; /* Slightly smaller text */
        padding: 5px 0;  /* Reduce padding */
    }

    .btn-book {
        margin-left: 20px; /* Add margin to button */
    }

    /* Show burger icon */
    .burger {
        display: block; /* Show burger icon */
    }

    /* Navigation Menu Active State */
    .nav-active {
        transform: translateX(0); /* Show nav links */
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}
/* Hero Section */
.hero {
    background-image: url('../image/1StCam/1St\ Cam/DSC_2431.JPG'); 
    background-size: cover;
    background-position: center;
    height: 60vh; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; 
    position: relative;
    z-index: 0;
    padding: 20px; 
}

/* Add dark overlay to decrease brightness */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -1; 
}

/* Headline */
.hero h1 {
    font-size: 48px; 
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); 
}

/* Paragraph */
.hero p {
    font-size: 18px; 
    max-width: 800px;
    line-height: 1.5; 
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6); 
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 50vh; /* Slightly reduce height for smaller screens */
        padding: 15px; /* Reduce padding */
    }

    .hero h1 {
        font-size: 36px; /* Adjust headline size for tablets and small laptops */
    }

    .hero p {
        font-size: 16px; /* Smaller font for paragraph */
        max-width: 90%; /* Make the text container narrower */
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh; /* Further reduce height for mobile devices */
        padding: 10px; 
    }

    .hero h1 {
        font-size: 28px; /* Adjust headline size for mobile */
    }

    .hero p {
        font-size: 14px; /* Even smaller font for mobile */
        max-width: 95%; /* Reduce text container width for mobile */
    }
}



/* <!-- gallery image  --> */
* {
    box-sizing: border-box;
  }
  
  .container {
    padding: 20px;
  }
  
  div.gallery {
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  div.gallery:hover {
    border-color: #444;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }
  
  div.gallery:hover img {
    transform: scale(1.1);
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
    margin-bottom: 20px;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 10px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
      margin: 15px 0;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 600px;
    height: 600px;
    max-width: 600px;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  

/* whatsapp */
.whatsapp-link {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    z-index: 1000; 
  }
  
  .whatsapp-icon {
    width: 60px; 
    height: 60px;
    border-radius: 50%; 
    background-color: #25D366; 
    padding: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
  }
  


/* Footer Section */
.footer {
    background-color: #1a1a1a; /* Dark background */
    color: white; /* Text color */
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex-basis: 30%;
    margin: 20px 0;
}

.footer-section h1, .footer-section h3 {
    font-family: 'Georgia', serif; /* Similar to the logo font */
    color: white;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
}

.logo h1 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stars {
    font-size: 18px;
    color: #c6a87d; /* Gold-like color */
    margin-bottom: 15px;
}

/* Social Media Links */
.social-media a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #c6a87d; /* Gold-like color */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        flex-basis: 100%;
        margin: 10px 0;
    }
}
