/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Banner */
.banner {
    width: 100%;
    height: 400px;
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center 120%;
    background-attachment: fixed;
}

/* Navigation Bar */
nav {
    background-color: #111;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.navbar li {
    margin: 0 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2vw;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #aaa;
}

/* Main section */
main {
    background-color: #eef0ea;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Content layout */
.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 60px 30px;
}

/* Summary text */
.summary {
    flex: 1 1 400px;
    max-width: 600px;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.6;
    color: #333;
    max-height: 480px;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Movie Card */
.movie-card {
    flex: 1 1 350px;
    max-width: 450px;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
}

/* Poster */
.poster {
    width: 100%;
    height: auto;
    max-height: 500px;
    margin-top: 20px;
    object-fit: contain;
}

/* Movie info */
.movie-info {
    text-align: center;
    margin-bottom: 20px;
}

.movie-info h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    margin-bottom: 20px;
}

.movie-info p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #444;
    margin: 8px 0;
    line-height: 1.4;
}

/* Shots Grid Page */
.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: #eef0ea;
    justify-items: center;
}

.shot {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    max-width: 360px;
    width: 100%;
}

.shot img {
    width: 100%;
    max-width: 360px;
    border-radius: 0;
    object-fit: cover;
    height: auto;
    margin-bottom: 10px;
}

.shot p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #333;
    line-height: 1.6;
    width: 100%;
    margin-top: 8px;
}

.shot-label {
    font-weight: bold;
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    align-self: flex-start;
}

.title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: normal;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
    background: none;
    padding: 0;
}

.banner {
    position: relative;
}


/* Shots page title section */
.shots-header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    background-color: #eef0ea;
}

/* Shots page title */
.shots-title {
    font-size: clamp(48px, 8vw, 100px);
    text-align: center;
    color: #222;
}
