/* Load Libre Baskerville from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
/* Load Inter from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Libre Baskerville', serif;
    color: #ffffff;
    background-color: #000;
}

.landing {
    height: 100vh;
    height: 100svh;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('assets/section_images/hero_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.grid {
    display: grid;
    grid-template-columns: repeat(5, 110px);
    grid-template-rows: repeat(2, 76px);
    gap: 10px;
    padding: 40px 10px;
}

.grid>* {
    width: 110px;
    height: 76px;
}

.plot {
    height: 60vh;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('assets/section_images/plot_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.plot-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.first-para {
    padding: 0 300px;
}

.second-para p {
    margin: 8px;
    text-align: center;

}

.fourth-para p {
    margin: 8px;
    text-align: center;
}

.trailer {
    height: 75vh;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('assets/section_images/trailer_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.team {
    height: 75vh;
    padding: 100px 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: url('assets/section_images/team_image.webp') center/cover no-repeat fixed;
}

.production-heading {
    margin-left: 140px;
}

.production-and-cast {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: row;
    margin-left: 140px;
    gap: 140px;
}

.production-team span {
    font-style: italic;
}

.reviews {
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('assets/section_images/reviews_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.reviews-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
    width: 40%;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
}

.review-author {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    text-align: right;


}

.contact {
    height: 100vh;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('assets/section_images/contact_image.webp');
    background-size: 130%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact a {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
}

h1 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 64px;
    font-weight: 100;
    letter-spacing: 1.5px;
    margin-top: 280px;
}

h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.menu {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.menu-item {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    padding: 10px 32px;
    color: #B6B2B1;
    text-decoration: none;
}



.menu-item:hover {
    color: #ffffff;
}



.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

video {
    border: 1px solid #ffffff;
    border-radius: 8px;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#backToTop {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 100;
    display: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 32px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    background: none;
    box-shadow: none;
    border: none;
}

#backToTop:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Debug: viewport size overlay */
#viewport-size {
    position: fixed;
    left: 10px;
    bottom: 8px;
    z-index: 9999;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.2px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 8px;
    border-radius: 6px;
    pointer-events: none;
    user-select: none;
    display: none;
    /* Hidden by default */
}

/* Footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    color: #B6B2B1;
    background: rgba(0, 0, 0, 0.4);
}

.site-footer .footer-link {
    color: #B6B2B1;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.site-footer .footer-link:hover {
    color: #ffffff;
}

/* .site-footer .footer-sep no longer used */