﻿/* Reset and base */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* Header */
header {
    background: #111;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
}

.logo {
    height: 100px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

    nav a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
    }

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Welcome split layout */
.welcome-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.welcome-left,
.welcome-right {
    flex: 1;
    min-width: 300px;
}

    .welcome-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.welcome-right {
    background-color: #0074d9;
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .welcome-right h1 {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .welcome-right p {
        margin-bottom: 20px;
        font-size: 16px;
    }



/* Services, Booking, Contact */
.services, .booking, .contact {
    padding: 50px 20px;
    text-align: center;
}

    .services h2, .booking h2, .contact h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .services ul {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .services li {
        margin: 10px 0;
        font-size: 18px;
    }

/* Map */
.map-container {
    margin-top: 20px;
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 40px;
}
/* Lightbox Styles */
/* Gallery grid */
.gallery {
    padding: 50px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

    .gallery-grid img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .gallery-grid img:hover {
            transform: scale(1.03);
        }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    user-select: none;
}

    .nav-button:hover {
        color: #ccc;
    }

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}
.cta-button {
    background: #e63946;
    color: white;
    padding: 12px 24px;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
}

.price-table-wrapper {
    max-width: 600px;
    margin: auto;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 16px;
}

    .price-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #ccc;
        text-align: left;
    }

    .price-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .price-table tr:hover {
        background-color: #f1f1f1;
    }


@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        height: 60px;
    }

    .menu-toggle {
        display: block;
        margin-top: 10px;
        margin-left: auto;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

        nav.active {
            display: flex;
        }

        nav a {
            padding: 10px 0;
            text-align: center;
            width: 100%;
            background: #222;
            border-bottom: 1px solid #333;
        }
}


