/* Navigation bar */
.main-nav {
    background-color: rgba(75, 72, 72, 0.685);
    padding: 10px 0;
    text-align: center;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav li {
    display: inline-block;
    margin: 0 15px;
}
.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-family: 'Cormorant Garamond', serif;
}
.main-nav a:hover {
    text-decoration: underline;
}

/* Page content */
h2 {
    text-align: center;
    margin-top: 40px;
    font-family: 'Cormorant Garamond', serif;
}
p {
    text-align: center;
    font-size: 1.1em;
    font-family: 'Cormorant Garamond', serif;
}
/* Background Video */
#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}
/* Fix body and html overflow */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    background: transparent;
}

/* Fullscreen background video behavior */
#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Content sits above background video */
.content-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Basic paragraph style */
p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #222;
}

/* Button style (used on VR TOUR and others) */
button {
    padding: 12px 25px;
    font-size: 1em;
    font-family: 'Cormorant Garamond', serif;
    background-color: #e6dcc5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d4c79a;
}

/* Light grey box background (used for intro/history block) */
.grey-box {
    background-color: rgba(240, 240, 240, 0.7);
    padding: 20px;
    border-radius: 10px;
}
.activities-box {
    max-width: 700px;
    margin: 50px auto;
    padding: 25px;
    background-color: rgba(223, 206, 176, 0.8);
    border-radius: 12px;
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    z-index: 1;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-family: 'Cormorant Garamond', serif;
}
.activities-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 20px;
    background-color: rgba(223, 206, 176, 0.8);
    border-radius: 12px;
    text-align: center;
    z-index: 1;
    position: relative;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.year-buttons {
    margin: 20px 0;
}

.year-buttons button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    background-color: #9cb90a;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.year-buttons button:hover {
    background-color: #85a009;
}

.event-section {
    text-align: left;
    margin-top: 20px;
}

.event-section ul {
    padding-left: 20px;
}
.event {
    margin-bottom: 40px;
    text-align: center;
}

.event-description {
    font-size: 1em;
    margin-bottom: 10px;
    color: #333;
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    align-items: center; 
    justify-content: center;
    min-height: 600px;  
    overflow: hidden;
}


.carousel-image {
    width: 100%;
    max-height: 600px;  
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin: auto;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 2em;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.carousel button:hover {
    background-color: rgba(255, 255, 255, 0.9); /* lighter bg */
    color: black;  /* or stay white if preferred */
    transform: translateY(-50%) scale(1.2); /* enlarges */
}


.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    padding: 12px 16px;
    font-size: 1.5em;
    border: none;
    border-radius: 8px;
    background-color: rgba(0,0,0,0.6);
    color: white;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s, transform 0.3s;
}

#backToTop:hover {
    background-color: white;
    color: black;
    transform: scale(1.15);
}

.year-buttons button {
    background-color: #d4c79a; 
    color: rgb(5, 5, 5);
    border: none;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 110px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
}

.year-buttons button:hover {
    background-color: #666666; 
    transform: scale(1.05);
}
