@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: #f3a9c4;
    --pink-dark: #d8759f;
    --pink-light: #fde8f0;

    --matcha: #a8bd8c;
    --matcha-dark: #71885b;
    --matcha-light: #eef4e7;

    --cream: #fffaf5;
    --brown: #5d5351;
    --white: #ffffff;
}


* {
    box-sizing: border-box;
}


body {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    color: var(--brown);

    background:
        linear-gradient(
            135deg,
            #fff7f9 0%,
            #fdf8f0 45%,
            #f1f6eb 100%
        );

    min-height: 100vh;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);

    border-bottom: 3px solid var(--pink);

    position: sticky;
    top: 0;
    z-index: 10;
}


.nav-wrap {
    max-width: 1100px;

    margin: auto;

    padding: 18px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


.logo {
    text-decoration: none;

    font-family: "Playfair Display", serif;

    font-size: 25px;

    color: var(--matcha-dark);

    font-weight: 700;
}


.logo span {
    color: var(--pink-dark);
}


.nav-links {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    justify-content: center;
}


.nav-links a {
    text-decoration: none;

    color: var(--brown);

    padding: 8px 12px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s;
}


.nav-links a:hover,
.nav-links a.active {
    background-color: var(--pink-light);

    color: var(--pink-dark);
}

.hero {
    padding: 55px 20px;

    background:
        linear-gradient(
            120deg,
            #fce2ec,
            #fff5f7 50%,
            #eaf1e2
        );
}


.hero-box {
    max-width: 1000px;

    margin: auto;

    padding: 45px;

    background-color: rgba(255, 255, 255, 0.75);

    border-left: 7px solid var(--matcha);

    border-radius: 20px;
}


.small-title {
    color: var(--pink-dark);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 10px;
}


.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: 45px;

    margin: 5px 0 15px;

    color: var(--matcha-dark);
}


.hero h1 span {
    color: var(--pink-dark);
}


.hero p {
    max-width: 700px;

    line-height: 1.7;

    font-size: 16px;
}

.btn {
    display: inline-block;

    margin-top: 15px;

    margin-right: 8px;

    padding: 11px 18px;

    background-color: var(--pink);

    color: white;

    text-decoration: none;

    border-radius: 9px;

    font-weight: 600;
}


.btn:hover {
    background-color: var(--pink-dark);
}


.btn.alt {
    background-color: var(--matcha);
}


.btn.alt:hover {
    background-color: var(--matcha-dark);
}

.container {
    width: 90%;

    max-width: 1100px;

    margin: auto;
}

.section {
    padding: 55px 20px;
}


.section-title {
    text-align: center;

    margin-bottom: 30px;
}


.section-title h2,
.page-head h1 {
    font-family: "Playfair Display", serif;

    color: var(--matcha-dark);
}


.section-title h2 {
    font-size: 32px;

    margin-bottom: 8px;
}

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.card {
    background-color: white;

    border: 1px solid #f1dce4;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(100, 80, 90, 0.08);
}


.poster {
    width: 100%;

    height: 280px;

    object-fit: cover;

    display: block;
}


.card-body {
    padding: 18px;
}


.card-body h3 {
    margin-top: 0;

    color: var(--pink-dark);
}


.card-body p {
    line-height: 1.6;

    font-size: 14px;
}


.price {
    display: inline-block;

    margin-top: 5px;

    padding: 6px 12px;

    background-color: var(--matcha-light);

    color: var(--matcha-dark);

    border-radius: 7px;

    font-weight: 700;
}

.page-head {
    margin: 45px 0 30px;

    padding: 30px;

    background:
        linear-gradient(
            100deg,
            #fce6ef,
            #eef4e7
        );

    border-radius: 15px;

    border-left: 6px solid var(--pink);
}


.page-head h1 {
    font-size: 38px;

    margin: 5px 0;
}


.page-head p:last-child {
    margin-bottom: 0;
}

.film-list {
    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-bottom: 50px;
}


.film {
    display: flex;

    gap: 25px;

    padding: 22px;

    background-color: white;

    border: 1px solid #f0dfe5;

    border-left: 6px solid var(--matcha);

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(100, 80, 90, 0.06);
}


.film-poster {
    width: 230px;

    height: 310px;

    object-fit: cover;

    border-radius: 10px;
}


.film-info {
    flex: 1;
}


.film-info h2 {
    color: var(--pink-dark);

    margin-top: 5px;
}


.film-info p {
    line-height: 1.7;
}


video {
    width: 100%;

    max-width: 430px;

    margin-top: 8px;

    border-radius: 8px;
}


/* =========================
   TABLE
========================= */

.table-box {
    background-color: white;

    padding: 20px;

    border-radius: 15px;

    border-top: 5px solid var(--matcha);

    box-shadow: 0 5px 15px rgba(100, 80, 90, 0.06);
}


table {
    width: 100%;

    border-collapse: collapse;
}


th {
    background-color: var(--pink);

    color: white;
}


th,
td {
    padding: 13px;

    border: 1px solid #eadde1;

    text-align: center;
}


tr:nth-child(even) {
    background-color: var(--matcha-light);
}


tr:hover {
    background-color: var(--pink-light);
}

.info-box {
    margin: 25px 0 50px;

    padding: 20px;

    background-color: var(--pink-light);

    border-left: 5px solid var(--pink);

    border-radius: 10px;
}


.info-box h3 {
    color: var(--pink-dark);
}


.info-box a,
.back-link a,
.contact-info a {
    color: var(--matcha-dark);

    font-weight: 700;
}

.profile-box {
    padding: 35px;

    background:
        linear-gradient(
            135deg,
            #fff,
            #fce8f0,
            #eef4e7
        );

    border-radius: 18px;

    border: 1px solid #eadde1;

    margin-bottom: 25px;
}


.profile-text {
    max-width: 800px;
}


.profile-text h2,
.about-box h2,
.contact-box h2 {
    color: var(--pink-dark);
}


.profile-text p,
.about-box p,
.contact-box p {
    line-height: 1.8;
}

.about-box {
    background-color: white;

    padding: 35px;

    border-radius: 18px;

    border-top: 6px solid var(--matcha);

    box-shadow: 0 5px 15px rgba(100, 80, 90, 0.06);
}

.about-links {
    margin: 25px 0 50px;
}

.contact-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-bottom: 30px;
}

.contact-intro,
.contact-info {
    padding: 30px;

    border-radius: 16px;
}

.contact-intro {
    background-color: var(--pink-light);

    border-left: 6px solid var(--pink);
}


.contact-info {
    background-color: var(--matcha-light);

    border-left: 6px solid var(--matcha);
}


.contact-info p {
    margin-bottom: 18px;
}

.back-link {
    margin-bottom: 50px;
}

.footer {
    margin-top: 40px;

    padding: 25px;

    text-align: center;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            #dcb0bf,
            var(--matcha)
        );

    color: white;
}


.footer p {
    margin: 5px;
}

@media (max-width: 800px) {

    .nav-wrap {
        flex-direction: column;
    }


    .hero-box {
        padding: 30px;
    }


    .hero h1 {
        font-size: 35px;
    }


    .cards {
        grid-template-columns: 1fr 1fr;
    }


    .film {
        flex-direction: column;
    }


    .film-poster {
        width: 100%;

        max-width: 280px;

        height: 350px;
    }


    .contact-box {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 550px) {

    .cards {
        grid-template-columns: 1fr;
    }


    .nav-links a {
        font-size: 13px;

        padding: 7px 8px;
    }


    .hero h1 {
        font-size: 30px;
    }


    .page-head h1 {
        font-size: 32px;
    }


    .hero-box {
        padding: 25px;
    }

}