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

/* BODY */
body {
    background-color: #f4f1ee;
    font-family: 'Montserrat', sans-serif;
   
}

/* CONTAINER */

.container {
    width: 100%;
    max-width: none;
}

/* HEADER */
header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #4b3f3f;
}

/* INTRO */
.intro {
    display: grid;
    grid-template-columns: 1fr 350px; /* text + video */
    align-items: center;
    padding: 60px 8%;
    background-color: #e8d6d3;
}

/* VIDEO CONTAINER */
.intro-media {
    width: 100%;
    aspect-ratio: 9 / 16;   /* forces vertical */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(10px);
}


/* VIDEO */
.intro-media video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills nicely */
}

/* make video fill nicely */

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    
}

.date {
    font-size: 0.9rem;
    color: #6b5c5c;
}

.route {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.intro-media {
    width: 250px;
    height: 150px;
    background-color: #b8b6a9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
}

/* WEEK SECTIONS */
.week {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px;
    border-top: 20px solid #f4f1ee;
    background-color: #e8d6d3;
}

.week-text {
    width: 50%;
}

.week-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.week-text p {
    font-size: 0.95rem;
    color: #5a4f4f;
    line-height: 1.6;
}

.week-media {
    width: 250px;
    height: 150px;
    background-color: #b8b6a9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px;
    background-color: #e8d6d3;
}

footer p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 2px;
}