@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --primary-color: #2A9D8F;
    --secondary-color: #E9C46A;
    --accent-color: #E76F51;
    --text-color: #264653;
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

p {
    margin-bottom: 1.5rem;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mainheader {
    height: 100vh;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    width: 100%;
    z-index: 10;
    background-color: var(--dark-color);
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.nav-links {
    display: flex;
}

    .nav-links li {
        margin-left: 2rem;
    }

    .nav-links a {
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--secondary-color);
        }

/* New Hero Split Layout */
.hero-split {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 80px);
}

.main-video-container {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

    .main-video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-container {
    width: 50%;
    padding: 3rem;
    background-color: var(--light-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .about-container h1 {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .about-container p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

.about-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .about-content h2 {
        color: var(--primary-color);
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        margin-bottom: 1.5rem;
    }

/* Main Content */
main {
    padding: 5rem 5%;
}

section {
    margin-bottom: 5rem;
}

    section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--primary-color);
    }

.centermain {
    max-width: 900px;
    margin: 0 auto;
}

/* Journey List with Divs */
.journey-list-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.journey-list-header {
    display: flex;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.5rem;
}

.journey-list-column {
    text-align: left;
}

.destination-column {
    flex: 3;
}

.date-column {
    flex: 1;
}

.journey-list-item {
    display: flex;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

    .journey-list-item:last-child {
        border-bottom: none;
    }

    .journey-list-item:hover {
        background-color: rgba(42, 157, 143, 0.1);
    }

    .journey-list-item a {
        color: var(--text-color);
        font-weight: 600;
        transition: color 0.3s ease;
        text-decoration: none;
        display: block;
    }

        .journey-list-item a:hover {
            color: var(--accent-color);
        }

/* Journey Detail Page */
.journey-detail {
    max-width: 900px;
    margin: 0 auto;
}

.journey-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .journey-header h1 {
        font-size: 2.8rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .journey-header .date {
        color: var(--accent-color);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom:0;
    }
    .journey-header .film {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        opacity:.6;
    }

.journey-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.journey-videos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}



.video-container {
    width: 100%;
    max-height:80vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position:relative;
    padding-top:78.5%;
    background-color:black;
}
.video-container.white {
    background-color:white
}

    .video-container video {
        width: 100%;
        display: block;
        object-fit:contain;
        position:absolute;
        top:0;
        left:0;
        height:100%;
        
    }

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

    .back-link i {
        margin-right: 0.5rem;
    }

    .back-link:hover {
        color: var(--accent-color);
    }

/* About Section */
.about-section {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

    .about-section p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

    .footer-section h3 {
        color: var(--secondary-color);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

.social-icons {
    display: flex;
}

.social-icon {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

    .social-icon:hover {
        color: var(--secondary-color);
    }

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

        .nav-links li {
            margin: 0 1rem;
        }

    .hero-split {
        flex-direction: column;
        height: auto;
    }

    .video-container,
    .about-container {
        width: 100%;
    }

    .video-container {
        height: 50vh;
    }

    .about-container {
        padding: 2rem;
    }

        .about-container h1 {
            font-size: 2.5rem;
        }

        .about-container p {
            font-size: 1.1rem;
        }

    .about-content h2 {
        font-size: 1.8rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .journey-list-header,
    .journey-list-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .journey-header h1 {
        font-size: 2.2rem;
    }
}

