:root {
    --primary-color: #1b2653;
    --secondary-color: #6c83f3;
    --background-color: #f4f7fc;
    --text-color: #333333;
    --white: #ffffff;
    --border-radius: 10px;
    --max-width: 900px;
}

/* GLOBAL */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    margin-top: 10px;
    margin-bottom: -5px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding:5px;
    letter-spacing: 1px;
    word-spacing: 2px;
    /* border-radius: 2px; */
    /* transition: 0.4s; */
}

nav a:hover{
    /* background-color: white;
    color: black; */
    border-bottom: 2px solid white;
}

nav .comp img{
    display: flex;
    position: absolute;
    left:10px;
    top:10px;
    height: 60px;
}
nav .sco img{
    display: flex;
    position: absolute;
    right:10px;
    top:10px;
    height: 60px;
}

.container {
    margin: 30px auto;
    padding: 30px;
}


#schedule{
    margin-bottom: -60px;
}
#schedule>div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-left: 10px;

}
#schedule h2,#objective h2{
    text-align: center;
    font-size: 35px;
}
#schedule>div>div{
    margin-top: 20px;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
#schedule h3{
    font-size: 15px;
    font-weight: bolder;
}
#schedule>div img{
    height: 50px;
    width: 40px;
    align-items: center;
    justify-content: center;
}
#schedule p{
    margin-top: -15px;
    font-size: 14px;
    font-weight: lighter;
    color:  rgb(67, 67, 67);
}

/* HEADER */
.tour-header {
    background-color: transparent;
    text-align: center;
    margin-bottom: 25px;
}

.tour-header h1 {
    color: var(--primary-color);
}

.subtitle {
    font-size: 0.95rem;
    color: #555;
}

/* PHOTO SECTION */
.photo-section {
    text-align: center;
    margin: 25px 0;
}

.photo-section img {
    width: 80%;
    max-height: 450px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.photo-caption {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

/* SECTIONS */
.tour,.notes,.intro {
    margin-bottom: 30px;
}

.tour h2,.notes h2,.intro h2 {
    font-size: 18px;
    background-color: #eef2ff;
    padding: 8px;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
    padding-left: 10px;
}

.tour h3,.notes h3,.intro h3 {
    margin-left: 10px;
    font-size: 15px;
    margin-bottom: -10px;
    color: var(--secondary-color);
}

/* LISTS */
.tour ul,.notes ul,.intro ul {
    padding-left: 20px;
}

.tour ul li,.notes ul li,.intro ul li {
    margin-bottom: 8px;
}


/* FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: 0px;
    border-top: 1px solid #ddd;
    background-color: #1a1a1a;
    color: white;
}
.footer-left {
    max-width: 50%;
}
.footer-left h3 {
    font-size: 18px;
    font-weight: bold;
}
.footer-left p {
    font-size: 14px;
    width: 70%;
}
.footer-left a {
    color: #9664c8;
    text-decoration: none;
    font-weight: bold;
}
.footer-left a:hover {
    text-decoration: underline;
}
.footer-right {
    text-align: right;
}
.footer-mid img {
    width: 120px;
}

.footer-right p {
    font-size: 14px;
}
.contact-info {
    font-size: 14px;
    font-weight: bold;
}
.contact-info a {
    color: #0073e6;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
