* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    width: 100%;
    background-color: #191e22;
    color: white;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1rem 2rem;
    z-index: 1000;
}

/* Hide nav links on small screens */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    color: #bbb;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;

}

.nav-links a:hover {
    color: #f39c12;
}

/* add spacing to account for fixed nav */
section {
    padding-top: 80px;
}

/* hero styles */

.hero {
    width: 100%;
    height: auto;
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}


.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.hero p {
    font-size: 1.2rem;
    color: #ccc;
}

/* sections */

section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

section h2 {
    padding-bottom: 20px;
    color: #bbb;
    text-transform: uppercase;
    font-weight: 500;
}

section h3 {
    margin-top: 15px;
    color: #bbb;
    font-weight: 500;
}

section a {
    color: #12b3f3;
    text-decoration: none;
}

section ul {
    list-style: none;
    margin-top: 1rem;
}

section li {
    margin-bottom: 10px;
}

.about p {
    padding-bottom: 15px;
}

.about, .contact {
    background-color: #222;
}

.tour {
    background-color: #1a1a1a;
}

.contact .icon {
    margin-right: 10px;
}

/* tour list */
.tour-list {
    list-style: none;
    margin-top: 1rem;
}

.tour-list li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #333;
    border-radius: 5px;
}

.tour-list.past, .tour-list.past a {
    color: #999;
}

/* footer */
.footer {
    background-color: #000;
    text-align: center;
    padding: 2rem 1rem;
    color: #777;
    font-size: 0.9rem;
}
.footer .social-links {
    margin-top: 1rem;
}
.footer .social-links a {
    margin: 0 1rem;
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}
.footer .social-links a:hover {
    color: #fff;
}


