body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
}

header {
    text-align: center;
    background-color: #222;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#logo {
    display: block;
    margin: 0 auto;
    width: 20vw;
    max-width: 300px;
    height: auto;
}

nav {
    margin-top: 20px; /* Adjust as needed to ensure the nav is properly placed */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 10px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600;
}

nav ul li a.active {
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
}

.intro, .gallery, .testimonials, .booking {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 200px; /* Add top margin to avoid content being hidden behind the fixed header */
}

.intro, .testimonials, .booking {
    text-align: center;
}
.gallery {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 40px; /* Adjusted top margin for closer spacing */
}
h1, h2 {
    color: #ff6600;
}

.cta-button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #e65c00;
}

.cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.gallery {
    padding: 50px 20px;
}

.gallery h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #ff6600;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0 20px;
}

@media (min-width: 480px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr); /* Adjusted for 8 images */
    }
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.image-item img:hover {
    transform: scale(1.05);
}

.cta-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ff6600;
}

.testimonials {
    padding: 10px 20px; /* Adjusted padding for closer spacing */
    background-color: #111;
    margin-top: -10px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #ff6600;
}

blockquote {
    font-style: italic;
    border-left: 5px solid #ff6600;
    margin: 20px auto;
    padding-left: 15px;
    max-width: 800px;
    color: #ccc;
}

.booking {
    padding: 30px 20px; /* Adjusted padding for closer spacing */
    margin-top: -10px;
}

.booking h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #ff6600;
}

footer {
    background-color: #222;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

footer .social-media-bar {
    background-color: #111;
    padding: 10px 0;
}

footer .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-media a {
    color: #ff6600;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    display: flex; /* Align icon and text */
    align-items: center; /* Center items vertically */
    gap: 8px; /* Space between icon and text */
}

footer .social-media a i {
    font-size: 1.5em; /* Larger icons relative to text */
}

footer .social-media a:hover {
    color: #ff8500;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0;
}

footer .about, footer .contact-info {
    max-width: 300px;
    margin: 10px;
}

footer h2 {
    color: #ff6600;
}

footer p, footer a {
    color: #ccc;
}

footer a:hover {
    color: #ff6600;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
