/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: #000;
}

a {
    color: #fff;
    text-decoration: none;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    background: black;
    z-index: 1000;
}

.nav-inner {
    width: 80vw;
    display: flex;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    width: 230px;
}

.nav-right {
    display: flex;
    align-items: center;
    width: 230px;
    text-align: right;
    justify-content: flex-end;
    font-size: 1.6em;
    font-weight: lighter;
}

nav a.social {
    font-size: 2.7em;
    margin-right: 0.5em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li {
    font-size: 1rem;
    display: flex;
}

nav ul li .logo {
    max-width: 200px;
    width: 100%;
}

nav ul li {
    font-size: 1rem;
    display: flex;
    align-content: center;
    align-items: center;
}

nav li a {
    font-size: 1.3em;
}

.button {
    background: #8f7c19;
    color: white;
    padding: 1em;
    margin: 1em 0;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3em;
    border: none;
}

/* Sections */
section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero {
    background-image: url('ambg.jpg');
    background-position: center;
}

.section-inner {
    width: 80vw;
    display: flex;
    flex-wrap: wrap;
}

#hero .section-inner .content {
    width: 50%;
    text-align: left;
}

#about, #tour-dates {
    background: #111;
}

#services {
    background-image: url('https://via.placeholder.com/1920x1080/333333/ffffff');
}

#contact {
    background: #111;
}

/* Content */

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin: 0 0 0.5em;
    line-height: 1.2em;
}

h2 {
    font-weight: 200;
    font-size: 2em;
    margin: 0 0 0.5em;
}

h3 {
    font-size: 1.5em;
    margin: 0 0 0.5em;

}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
    font-weight: 100;
}

section {
    scroll-margin-top: 130px;
}

/* Footer */
footer {
    background: #000;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

#about .section-inner .left {
    text-align: left;
}

#about .section-inner {
    text-align: left;
}

#about .section-inner > div {
    width: 50%;
    padding: 2em 0;
}

#about .section-inner .right img {
    width: 100%;
    max-width: 100%;
}

#about .section-inner .right {
    padding: 5.5em 0 0 3em;
}

.section-inner .flex-center {
    width: 100% !important;
    display: flex;
    justify-content: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.tour-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
    font-family: sans-serif;
}

.tour-table td {
    padding: 1em;
    border-bottom: 1px solid white;
    vertical-align: top;
    text-align: left;
}

.tour-table td:nth-child(1) {
    font-weight: bold;
    white-space: nowrap;
}

.tour-table td:nth-child(2) {
    font-weight: bold;
}

.tour-table td:nth-child(3) {
    text-align: right;
}

section#why {
    min-height: 70vh;
}

#why .left, #why .right {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

ul.custom-bullets {
    list-style: none;
    padding-left: 0;
}

ul.custom-bullets li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 0.8em;
    text-align: left;
    font-size: 1.3em;
    font-weight: 200;
    line-height: 55px;
}

ul.custom-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 50px;
    height: 50px;
    background-image: url('amwave.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.gallery a {
    display: block;
    width: 200px;
    height: 133px; /* Aspect ratio ~3:2 */
    overflow: hidden;
    border: 2px solid white;
    transition: transform 0.2s ease;
}

.gallery a:hover {
    transform: scale(1.03);
}

.gallery img.thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

section#gallery .content {
    width: 70vw;
}

section#gallery {
    min-height: 60vh;
}

/* Lightbox backdrop */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Lightbox image */
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px #000;
}

/* Show when active */
.lightbox-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Optional fade effect */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#contact .right {
    padding: 0 0 0 2em;
}

section#contact {
    flex-wrap: wrap;
    align-content: center;
}

.booking-form {
    max-width: 100%;
    margin: 2em 0;
    color: white;
    font-family: sans-serif;
}

.booking-form .form-group {
    margin-bottom: 1.2em;
}

.booking-form label {
    display: block;
    margin-bottom: 0.4em;
    font-weight: 400;
    text-align: left;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.7em;
    background: #111;
    border: 1px solid #555;
    color: white;
    border-radius: 4px;
    font-size: 1em;
}

.booking-form button:hover {
    cursor: pointer;
}

section#contact {
    flex-wrap: wrap;
    align-content: center;
    min-height: unset;
    margin-top: 170px;
}

#contact h2 {
    text-align: left;
}

#contact ul.custom-bullets li {
    margin-bottom: 0;
}

#contact h1 {
    margin-top: 0.5em;
}

.mobonly {
    display: none;
}

@media screen and (max-width: 900px) {
    .mobhide {
        display: none;
    }

    .mobonly {
        display: block;
    }

    img.logo-mobile {
        width: 100px;
        margin-left: -1.7em;
    }

    label.burger-icon img {
        width: 70px;
    }

    .menu-wrapper {
        position: relative;
        z-index: 1000;
    }

    /* Burger icon */
    .burger-icon {
        position: fixed;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-icon img {
        width: 32px;
        height: auto;
    }

    /* Menu overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: black;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: scale(0);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    /* Show overlay when checkbox is checked */
    #burger-toggle:checked ~ .menu-overlay {
        transform: scale(1);
        opacity: 1;
    }

    /* Close button */
    .close-icon {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1002;
    }

    /* Menu items */
    .menu-items {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .menu-items li {
        margin: 1rem 0;
    }

    .menu-items a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: bold;
    }

    #hero .section-inner .content {
        width: 100%;
        text-align: left;
    }

    .section-inner {
        width: 90vw;
    }

    #about .section-inner {
        display: flex;
        flex-wrap: wrap;
    }

    #about .section-inner > div {
        width: 100%;
    }

    #about .section-inner .right {
        padding: 0;
    }

    #why .section-inner {
        display: flex;
        flex-wrap: wrap;
    }

    #why .section-inner > div {
        width: 100%;
    }

    #why .section-inner .left {
        padding: 2em 0;
    }

    #why .section-inner .right {
        padding: 0;
    }

    #why .button-holder {
        width: 100%;
    }

    h1 {
        font-size: 2em;
    }

    table.tour-table {
        margin-bottom: 2em;
    }

    nav ul {
        display: block;
    }

    #contact .right {
        padding: 0;
    }

    #contact h2 {
        text-align: center;
    }
}