@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --pink: #f6a9c8;
    --pink-dark: #d96f9c;
    --pink-soft: #fff1f7;

    --matcha: #a8bd8c;
    --matcha-dark: #71885b;
    --matcha-soft: #eef4e8;

    --cream: #fffaf5;
    --brown: #5e514f;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--brown);
    background: linear-gradient(135deg, #fff9fb, #f7f9ef);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid #f1dbe4;
    padding: 14px 7%;
}

.nav-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: var(--pink-dark);
}

.logo span {
    color: var(--matcha-dark);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.nav-links a {
    padding: 9px 13px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links .active {
    background: var(--pink-soft);
    color: var(--pink-dark);
}

/* CONTAINER */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 24px;
}

/* HERO */

.hero {
    padding: 78px 0 55px;
}

.hero-box {
    max-width: 1100px;
    margin: auto;
    padding: 55px;
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(168,189,140,.35),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(246,169,200,.38),
            transparent 30%
        ),
        white;

    box-shadow: 0 18px 55px rgba(103,85,90,.10);
}

.badge {
    display: inline-block;
    background: var(--matcha-soft);
    color: var(--matcha-dark);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 70px);
    line-height: 1.05;
    margin: 18px 0 14px;
    color: #4e4544;
}

.hero h1 span {
    color: var(--pink-dark);
}

.hero p {
    max-width: 650px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 19px;
    border-radius: 25px;
    background: var(--pink-dark);
    color: white;
    font-weight: 700;
    margin-right: 8px;
}

.btn.alt {
    background: var(--matcha-dark);
}

.btn:hover {
    opacity: .88;
}

/* SECTION */

.section {
    padding: 25px 0 70px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 35px;
    margin: 7px 0;
}

.section-title p {
    margin: auto;
    max-width: 650px;
    line-height: 1.7;
}

/* CARD */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border: 1px solid #f0e1e5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(103,85,90,.07);
}

.card-body {
    padding: 19px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.card p {
    font-size: 14px;
    line-height: 1.7;
}

.poster {
    width: 100%;
    height: 290px;
    object-fit: cover;
    background: linear-gradient(135deg,#f8c4d8,#dce8c9);
}

.price {
    color: var(--pink-dark);
    font-weight: 700;
}

/* PAGE HEADER */

.page-head {
    padding: 65px 0 35px;
    text-align: center;
}

.page-head h1 {
    font-size: 48px;
    margin: 12px 0;
}

.page-head p {
    max-width: 650px;
    margin: auto;
    line-height: 1.7;
}

/* FILM */

.film {
    background: white;
    border: 1px solid #f0e1e5;
    border-radius: 26px;
    padding: 22px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(103,85,90,.06);
    overflow: hidden;
}

.film-flex {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.film .poster {
    width: 210px;
    min-width: 210px;
    height: 290px;
    border-radius: 18px;
}

.film h2 {
    margin-top: 0;
}

.film p {
    line-height: 1.75;
}

.video-wrap {
    text-align: center;
    margin-top: 20px;
}

video {
    max-width: 100%;
    border-radius: 16px;
    background: #222;
}

/* INFO */

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-box {
    background: white;
    border-radius: 22px;
    padding: 25px;
    border: 1px solid #f0e1e5;
}

.info-box h3 {
    margin-top: 0;
    color: var(--matcha-dark);
}

/* TABLE */

.schedule {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(103,85,90,.06);
}

.schedule th,
.schedule td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule th {
    background: var(--matcha-soft);
    color: var(--matcha-dark);
}

/* FORM */

.form {
    max-width: 720px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #f0e1e5;
}

.form label {
    display: block;
    font-weight: 700;
    margin: 15px 0 7px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5d8dd;
    border-radius: 13px;
    font: inherit;
    background: #fffdfd;
}

.form textarea {
    min-height: 130px;
    resize: vertical;
}

/* QUOTE */

.quote {
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        var(--pink-soft),
        var(--matcha-soft)
    );
    line-height: 1.8;
    text-align: center;
}

/* FOOTER */

.footer {
    margin-top: 50px;
    padding: 35px 20px;
    text-align: center;
    background: #687b55;
    color: white;
}

.footer strong {
    color: #ffd0e2;
}

.footer p {
    margin: 7px;
}

/* RESPONSIVE */

@media (max-width: 800px) {

    .nav-wrap {
        flex-direction: column;
    }

    .hero-box {
        padding: 35px 25px;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .film-flex {
        flex-direction: column;
    }

    .film .poster {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 550px) {

    .cards,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 35px;
    }

    .page-head h1 {
        font-size: 38px;
    }
}