body {
    font-family: 'Open Sans', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header (non-sticky) - Darker tint */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.75); /* Darker than main */
}



.logo {
    width: 250px;
    max-width: 100%;
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #f00;
}

/* Main sections */
.section {
    padding: 70px 20px;
    text-align: center;
    background-color: rgba(17, 17, 17, 0.7); /* Lighter tint than header/footer */
}

/* Tour Table */
.tour-table {
    width: 60%;
    margin: 20px auto;
    border-collapse: collapse;
    color: #fff;
}

/* Table Header - Subtle contrast */
.tour-table thead {
    background-color: rgba(34, 34, 34, 0.85); /* Slightly darker, semi-transparent */
}

.tour-table th {
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Table Rows - Alternating transparent shades */
.tour-table tbody tr:nth-child(odd) {
    background-color: rgba(51, 51, 51, 0.7); /* Dark gray with transparency */
}

.tour-table tbody tr:nth-child(even) {
    background-color: rgba(68, 68, 68, 0.7); /* Slightly lighter gray with transparency */
}

.tour-table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: center;
}

/* Tour Table Links - Blended Theme */
.tour-table a {
    color: #f66; /* Softer red */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.tour-table a:hover {
    color: #ff8888; /* Brighter red on hover */
    text-shadow: 0 0 5px #ff7777;
}


/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #111;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #777;
    outline: none;
}

.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(45deg, #222, #444);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #333, #555);
}

/* Footer (transparent tint as header, darker than main) */
.footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.75); /* Darker tint */
    font-size: 14px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-image {
    width: 40px;
    transition: transform 0.3s;
}

.social-image:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .tour-table {
        width: 100%;
    }

    .logo {
        width: 70%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100%;
        max-width: 200px;
    }

    .navbar a {
        font-size: 18px;
    }

    .contact-form {
        gap: 10px;
    }

    .footer {
        font-size: 12px;
    }
}

.content-wrapper {
    width: 80%; /* Content width */
    margin: 0 auto; /* Center the content */
}