/* ============================= */
/* USTAWIENIA OGÓLNE */
/* ============================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ============================= */
/* MENU GÓRNE */
/* ============================= */

nav {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    background: rgba(180, 190, 200, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;
    box-sizing: border-box;

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    z-index: 1000;
}

/* LOGO */

.logo {
    position: absolute;
    left: 25px;

    font-family: 'Krona One', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 700;

    z-index: 2;
}

/* LINKI W MENU */

nav ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 90px;

    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;

    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;

    letter-spacing: 0.5px;
}

nav a:hover {
    color: #ff2b72;
}

/* SEARCH */

.search input {
    position: absolute;
    right: 40px;

    width: 170px;

    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);

    color: white;
    font-size: 12px;

    outline: none;
}

.search input::placeholder {
    color: rgba(255,255,255,0.8);
}

/* ============================= */
/* PODSTAWOWY WYGLĄD SEKCJI */
/* ============================= */

section {
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    position: sticky;
    top: 0;

    color: white;

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

/* TŁA SEKCJI */

#pierwsza {
    background-image: url(images/1.jpg);
}

#druga {
    background-image: url(images/666.jpg);
}

#trzecia {
    background-image: url(images/3.jpg);
}

#czwarta {
    background-image: url(images/4.jpg);
}

#piata {
    background-image: url(images/kkk.jpg);
}

/* ============================= */
/* SZKLANY TRAPEZ I GRADIENT */
/* ============================= */

.right-glass {
    position: absolute;
    top: 0;
    right: 0;

    width: 65%;
    height: 100%;

    background: rgba(255, 255, 255, 0.48);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    clip-path: polygon(
        18% 0,
        100% 0,
        100% 100%,
        45% 100%
    );

    z-index: 2;
}

.bottom-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 40%;

    background: linear-gradient(
        to top,
        rgba(30, 157, 236, 0.815),
        rgba(79, 187, 255, 0)
    );

    z-index: 5;
}

/* ============================= */
/* BOCZNE KÓŁKA I II III IV V */
/* ============================= */

.side-dots {
    position: fixed;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 2000;
}

.side-dots a {
    width: 38px;
    height: 38px;

    border: 2px solid white;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    text-decoration: none;

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;

    background: transparent;
    transition: 0.3s;
}

.side-dots a:hover,
.side-dots a.active {
    border-color: #ff1f6d;
    color: #ff1f6d;
}

/* ============================= */
/* STRONA 1 - MAIN SITE */
/* ============================= */

.hero-content {
    position: relative;
    z-index: 10;

    width: 100%;
    height: 100vh;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

/* LEWA STRONA */

.left-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.movie-logo {
    width: 620px;
    height: auto;
    display: block;
}

/* PRAWA STRONA */

.right-side {
    width: 430px;

    justify-self: start;

    margin-left: 140px;
    transform: translate(40px, 30px);
}

.title-img {
    width: 360px;
    display: block;
}

.white-line {
    width: 360px;
    height: 2px;

    background: rgba(255,255,255,0.9);

    margin: 20px 0 28px;
}

.description {
    width: 360px;

    color: rgba(0,0,0,0.65);

    font-size: 16px;
    line-height: 1.35;

    margin-bottom: 28px;
}

.video-img {
    width: 360px;
    height: 150px;

    object-fit: cover;

    border: 2px solid white;
    display: block;
}

/* PRZYCISKI */

.buttons {
    display: flex;
    gap: 25px;
    margin-top: 35px;
}

.btn {
    width: 150px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 35px;

    text-decoration: none;
    color: white;

    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

.blue {
    background: #45bdf7;
}

.dark {
    background: #333;
}

/* ============================= */
/* STRONA 2 - CHARACTERS */
/* ============================= */

.characters-content {
    position: relative;
    z-index: 10;

    width: 100%;
    height: 100vh;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

.characters-box {
    grid-column: 2;

    width: 430px;

    justify-self: start;
    margin-left: 140px;

    transform: translate(40px, 30px);
}

.characters-box h2 {
    font-family: 'Krona One', sans-serif;

    color: #ff1f6d;

    font-size: 50px;
    font-weight: 400;

    letter-spacing: 1px;


    text-align: left;
}

.character-info {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-top: 55px;
}



.character-img {
    width: 150px;
    height: 150px;

    border-radius: 50%;
    object-fit: cover;
}

.character-info p {
    width: 300px;

    color: rgba(0, 0, 0, 0.65);

    font-size: 16px;
    line-height: 1.35;
    
}

.character-info strong {
    font-weight: 700;
}

.character-buttons {
    display: flex;
    gap: 30px;

    margin-top: 110px;
    justify-content: center;
}

.characters-box .white-line {
    width: 520px;
    margin: 0 0 55px 0;
}

/* ============================= */
/* SEKCJE TESTOWE 3, 4, 5 */
/* ============================= */

.zawartosc {
    position: relative;
    z-index: 10;

    text-align: center;
}

.zawartosc h1 {
    font-size: 70px;
    margin: 0;
}

.zawartosc p {
    font-size: 20px;
}

/* ============================= */
/* STRONA 3 - PLOT */
/* ============================= */

.plot-content {
    position: relative;
    z-index: 10;

    width: 100%;
    height: 100vh;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

.plot-box {
    grid-column: 2;

    width: 430px;
    justify-self: start;

    margin-left: 140px;
    transform: translate(40px, 20px);
}

.plot-box h2 {
    font-family: 'Krona One', sans-serif;
    color: #ff1f6d;

    font-size: 50px;
    font-weight: 400;

    margin: 0 0 35px 0;
    text-align: center;
}

.plot-line {
    width: 360px;
    height: 2px;

    background: rgba(255, 255, 255, 0.55);

    margin: 0 auto 28px auto;
}

.plot-text {
    width: 360px;

    color: rgba(0, 0, 0, 0.65);

    font-size: 16px;
    line-height: 1.35;

    margin: 0 auto;
}
/* ============================= */
/* STRONA 4 - WATCH */
/* ============================= */

.watch-content {
    position: relative;
    z-index: 10;

    width: 100%;
    height: 100vh;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

.watch-box {
    grid-column: 2;

    width: 430px;

    justify-self: start;

    margin-left: 140px;

    transform: translate(40px, 10px);
}

.watch-box h2 {
    font-family: 'Krona One', sans-serif;

    color: #ff2b72;

    font-size: 50px;
    font-weight: 400;

    margin: 0 0 35px 0;

    text-align: center;
}

.watch-line {
    width: 360px;
    height: 2px;

    background: rgba(255, 255, 255, 0.55);

    margin: 0 auto 28px auto;
}

.watch-text {
     width: 360px;

    color: rgba(0, 0, 0, 0.65);

    font-size: 16px;
    line-height: 1.35;

    margin: 0 auto;
}

.watch-platforms {
    margin-top: 70px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-platforms img {
    width: 45px;
    height: auto;

    display: block;
}

/* ============================= */
/* STRONA 5 - REVIEWS */
/* ============================= */

.reviews-content {
    position: relative;
    z-index: 10;

    width: 100%;
    height: 100vh;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

.reviews-box {
    grid-column: 2;

    width: 430px;
    justify-self: start;

    margin-left: 180px;
    transform: translateY(20px);
}

.reviews-box h2 {
    font-family: 'Krona One', sans-serif;
    color: white;

    font-size: 50px;
    font-weight: 400;

    text-align: center;
    margin: 0 0 35px 0;
}

.reviews-line {
    width: 360px;
    height: 2px;

    background: rgba(255,255,255,0.8);

    margin: 0 auto 45px auto;
}

.reviews-columns {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.review {
    width: 180px;
}

.review h3 {
    color: white;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}

.review p {
    color: rgba(255,255,255,0.85);

    font-size: 16px;
    line-height: 1.35;

    margin-bottom: 22px;
}

.stars {
    color: #ffb22e;

    font-size: 24px;
    letter-spacing: 2px;
}

/* ============================= */
/* STOPKA */
/* ============================= */

footer {
    height: 420px;

    background: #0d1422;
    color: white;

    display: grid;
    grid-template-columns: 45% 10% 45%;
    align-items: center;

    padding: 0 150px;
    box-sizing: border-box;

    position: relative;
    z-index: 20;
}

.footer-left {
    align-self: center;
}

.footer-left h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 20px;
    margin: 0 0 70px 0;
}

.footer-left p,
.footer-right p {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

.footer-left p {
    width: 360px;
}

.footer-right {
    align-self: center;
    position: relative;
    height: 300px;
}

.footer-right p {
    width: 360px;
    margin-left: 20px;
}

.footer-line {
    width: 360px;
    height: 2px;
    background: rgba(255,255,255,0.55);
    margin-top: 55px;
}

.footer-center {
    width: 28px;
    height: 28px;

    background: #ff2b72;
    border-radius: 50%;

    justify-self: center;
    align-self: center;
}

.footer-right img {
    position: absolute;

    width: 230px;

    right: 30px;
    bottom: -35px;
}

/* ============================= */
/* RESPONSYWNOŚĆ */
/* ============================= */

@media (max-width: 1024px) {

    nav {
        display: none;
    }

    .side-dots {
        right: 18px;
        gap: 10px;
    }

    .side-dots a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .left-glass {
        left: 0;
        right: auto;

        width: 78%;

        clip-path: polygon(
            0 0,
            82% 0,
            55% 100%,
            0 100%
        );
    }

    .hero-content,
    .characters-content,
    .plot-content,
    .watch-content,
    .reviews-content {
        grid-template-columns: 70% 30%;
        padding-left: 35px;
        box-sizing: border-box;
    }

    .right-side,
    .characters-box,
    .plot-box,
    .watch-box,
    .reviews-box {
        grid-column: 1;

        margin-left: 0;
        justify-self: start;

        transform: translate(0, 20px);
    }

    .left-side {
        display: none;
    }

    .right-side,
    .characters-box,
    .plot-box,
    .watch-box,
    .reviews-box {
        width: 430px;
    }

    .title-img,
    .white-line,
    .description,
    .video-img,
    .plot-line,
    .plot-text,
    .watch-line,
    .watch-text,
    .reviews-line {
        width: 360px;
    }

    .characters-box .white-line {
        width: 360px;
    }

    .characters-box h2,
    .plot-box h2,
    .watch-box h2,
    .reviews-box h2 {
        font-size: 42px;
        text-align: left;
    }

    .plot-line,
    .watch-line,
    .reviews-line {
        margin-left: 0;
    }

    .plot-text,
    .watch-text {
        margin-left: 0;
    }

    .reviews-columns {
        justify-content: flex-start;
        gap: 30px;
    }

    footer {
        height: auto;
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 40px;
    }

    .footer-left p,
    .footer-right p,
    .footer-line {
        width: 100%;
    }

    .footer-center {
        display: none;
    }

    .footer-right {
        height: auto;
    }

    .footer-right img {
        position: relative;
        right: auto;
        bottom: auto;
        width: 180px;
        margin-top: 20px;
    }
}

/* ============================= */
/* TELEFON */
/* ============================= */

@media (max-width: 600px) {

    section {
        height: 100vh;
        position: relative;
    }


    .side-dots {
        right: 10px;
    }

    .side-dots a {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

.left-glass {
        width: 95%;

        clip-path: polygon(
            0 0,
            95% 0,
            78% 100%,
            0 100%
        );
}
        

    .hero-content,
    .characters-content,
    .plot-content,
    .watch-content,
    .reviews-content {
        display: flex;
        justify-content: flex-start;
        align-items: center;

        padding-left: 10px;
        padding-right: 120px;
        box-sizing: border-box;
    }

    .right-side,
    .characters-box,
    .plot-box,
    .watch-box,
    .reviews-box {
        width: 100%;
        transform: translate(0, 10px);
    }

    .title-img,
    .white-line,
    .description,
    .video-img,
    .plot-line,
    .plot-text,
    .watch-line,
    .watch-text,
    .reviews-line,
    .characters-box .white-line {
        width: 100%;
        max-width: 310px;
    }

    .description,
    .plot-text,
    .watch-text {
        font-size: 13px;
        line-height: 1.35;
        padding-right: 120px;
    }


    .title-img {
        max-width: 280px;
    }

    .video-img {
        height: 120px;
    }

    .buttons,
    .character-buttons {
        gap: 15px;
        margin-top: 25px;
    }

    .btn {
        width: 120px;
        height: 45px;
        font-size: 14px;
    }

    .characters-box h2,
    .plot-box h2,
    .watch-box h2,
    .reviews-box h2 {
        font-size: 30px;
        text-align: left;
    }

       .character-info p {
    margin: 0;
    text-align: left;
    font-size: 13px;

}

    .character-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 30px;
        padding-left: 0;
    }

    .character-img {
        width: 110px;
        height: 110px;
    }

    .character-buttons {
        justify-content: flex-start;
        margin-top: 40px;
    }

    .reviews-columns {
        flex-direction: column;
        gap: 20px;
    }

    .review {
        width: 100%;
        max-width: 300px;
    }

    .review p {
        font-size: 13px;
    }

    .stars {
        font-size: 18px;
    }

    footer {
        padding: 45px 25px;
    }
}