@font-face {
    font-family: 'IntroScript';
    src: url('../assets/fonts/GTW.otf') format('opentype');
}

@font-face {
    font-family: 'GTW';
    src: url('../assets/fonts/GTW.otf') format('opentype');
}

body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LOGO CENTER */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    z-index: 1000;
}

    .logo img {
        height: 40px;
    }
.image-container img {
    object-position: 50% 30%;
}

.mobile-img {
    object-position: center top;
}

.mobile-product-img {
    width: 130%;
    height: 280px;
    object-fit: cover;
    object-position: center center;
    margin-left: 50%;
    
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    background-color: #db332a;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    text-decoration: none;
    color: #ede2cf;
    padding: 20px 10px;
    display: block;
    font-size: 1.6rem;
    font-family: 'GTW', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1850px) {
    header nav ul li a {
        font-size: 1.3rem;
    }
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 40px;
    background-color: transparent;
    padding: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
    -webkit-tap-highlight-color: transparent;
}

.nav-links .close-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    text-align: start;
    color: #ede2cf;
    -webkit-tap-highlight-color: transparent;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1000px) {
    .menu-icon {
        display: block;
    }

    header nav ul {
        justify-content: flex-start;
        border: 1px solid #8b8170;
        border-radius: 5px;
    }

    .nav-links {
        /* display: none; */
        flex-direction: column;
        width: 100%;


        position: fixed;
        top: 0;
        right: -100%;
        height: auto;
        background-color: #c7ad94;
        transition: right 0.3s;
        z-index: 999;
    }

    .nav-links .close-icon {
        display: block;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links li a {
        padding: 30px;
        display: block;
    }
}

@media (max-width: 768px) {

    .pascalin-page {
        background: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .mobile-product-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .content-wrapper {
        padding: 20px;
        text-align: center;
    }
}

.image-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

@media (max-width: 768px) {
    .image-container {
        height: 65vh;
    }

    .image-container img {
        height: 100%;
        object-fit: cover;
    }
}

img {
    height: auto;
    display: block;
}

.content {
    padding: 20px;
}

.pain-page {
    background-image: url('../assets/images/banner_1.jpg');
    background-size: cover;
    background-position: center;
    color: #db332a;
    text-align: center;
    padding: 50px 20px;
    font-family: 'IntroScript', sans-serif;
    height: 100vh;
    min-height: 700px;
    display: grid;
    justify-content: space-around;
}

.pain-page .title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pain-page .title-container h2 {
    font-size: 6.5rem;
    font-weight: 400;
    margin: 0;
}

.left-bean,
.right-bean {
    width: 70px;
    height: auto;
}


@media (max-width: 750px) {

    .pain-page .title-container h2 {
        font-size: 4.5rem;
    }

    .left-bean,
    .right-bean {
        display: none;
    }

}

.red-dots-container {
    display: flex;
    justify-content: center;
    gap: 120px;
    padding: 20px 0;
    margin-top: 150px;
}

.red-dot-link {
    -webkit-tap-highlight-color: transparent;
}

.red-dot {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../assets/images/red_dot.png') no-repeat center center;
    background-size: cover;
}

.red-dot img {
    width: 120%;
    height: auto;
}

.red-dot img:hover {
    filter: grayscale(100%);
    cursor: pointer;
}

@media (max-width: 980px) {
    .pain-page {
        height: auto;
    }

    /* .pain-page .title-container h2 {
        font-size: 4.5rem;
    } */

    .red-dots-container {
        display: grid;
    }

    .red-dot {
        width: 250px;
        height: 250px;
    }
}


@media (max-width: 540px) {

    .red-dots-container {
        gap: 90px;
    }

    .red-dot {
        width: 200px;
        height: 200px;
    }
}


@media (max-width: 500px) {

    .pain-page .title-container h2 {
        font-size: 3.5rem;
    }

    .red-dot {
        width: 180px;
        height: 180px;
    }
}
@media (min-width: 769px) {
    .mobile-product-img {
        display: none;
    }
}

/* @media (max-width: 480px) {
    .pain-page h2 {
        font-size: 4.5rem;
    }

    .pain-page .title-container {
        flex-direction: column;
    }

    .red-dots-container img {
        width: 150px;
    }

    .red-dots-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
} */

.pascalin-page {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover; /* 🔥 FIX */
    background-position: left center; /* 🔥 FIX */
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
}

.gold-page {
    background-image: url('../assets/images/pascalin_gold_page.jpg');
}

.merak-page {
    background-image: url('../assets/images/pascalin_merak_page.jpg');
}

.three-in-1-page {
    background-image: url('../assets/images/pascalin_3_in_1_page.jpg');
}

#scroll-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #c7ad94;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 999;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
}

#scroll-to-top-btn img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.hover-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 90%;
    z-index: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.content-wrapper {
    text-align: right;
    color: #000;
    max-width: 50%;
    display: grid;
}


.title {
    font-family: 'IntroScript', cursive;
    color: #db332a;
    font-size: 4.5rem;
    margin-bottom: 150px;
}

.description {
    font-family: 'GTW', sans-serif;
    font-size: 2rem;
    width: 60%;
    justify-self: flex-end;
}

@media (max-width: 768px) {

    .pascalin-page {
        display: flex;
        flex-direction: column;
        padding: 0;

        background-size: cover;
        background-position: left center; /* 🔥 клучно */
        background-repeat: no-repeat;
    }

}

@media (max-width: 1090px) {
    .pascalin-page {
        background-position: center;
    }

    .title {
        font-size: 4.5rem;
    }

    .description {
        font-size: 1.5rem;
    }
}

@media (max-width: 500px) {
    .pascalin-page {
        background-position: center;
        justify-content: center;
    }

    #scroll-to-top-btn {
        width: 50px;
        height: 50px;
    }

    .content-wrapper {
        text-align: center;
        position: static;
        top
    }

    .title {
        font-size: 3.0rem;
        width: 100%;
        margin-bottom: 40px;
    }

    .description {
        font-size: 1.0rem;
        width: 100%;
    }
}

.merak-page {
    background-image: url('../assets/images/pascalin_merak_page.jpg');
}

/* .merak-page:hover {
    background-image: url('../assets/images/pascalin_merak_page_hover.jpg');
} */

.three-in-1-page {
    background-image: url('../assets/images/pascalin_3_in_1_page.jpg');
}

/* .three-in-1-page:hover {
    background-image: url('../assets/images/pascalin_3_in_1_page_hover.jpg');
} */

.banner-page {
    background-image: url('../assets/images/banner_2.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: row;
    padding-right: 10%;
    padding-top: 5%;
}

.invisi-element {
    width: 50%;
    height: 100%;
    /* background-color: green; */
}

.text-content {
    max-width: 50%;
}

.text-content h2 {
    margin: 10px 0;
}

.banner-1-title {
    font-family: 'GTW', cursive;
    color: #db332a;
    font-size: 2.5rem;
}

.banner-1-description {
    font-family: 'GTW', sans-serif;
    color: #000;
    font-size: 1.0rem;
    margin: 15px 0;
}

.banner-1-description11 {
    font-family: 'GTW', sans-serif;
    color: #000;
    font-size: 1.05rem;
    margin: 8px 0;
}
@media (max-width: 880px) {
    .banner-1 {
        padding-right: 0;
        justify-content: center;
    }

    .invisi-element {
        width: 0;
    }

    .banner-1 .text-content {
        text-align: center;
    }
}


@media (max-width: 800px) {
    .banner-1-title {
        font-size: 4.5rem;
    }

    .banner-1-description {
        font-size: 1.5rem;
    }
}

@media (max-width: 580px) {
    .banner-1-title {
        font-size: 4.2rem;
    }

    .banner-1-description {
        font-size: 1.3rem;
    }
}


/* @media (max-width: 450px) {
    .banner-1-title {
        font-size: 3.5rem;
    }

    .banner-1-description {
        font-size: 1.0rem;
    }
} */

.banner-2 {
    background-image: url('../assets/images/banner_3.jpg');
    padding-left: 5%;
    padding-top: 5%;
    padding-right: 0;
}
/* ================= MOBILE VERSION ================= */
@media (max-width: 768px) {

    body, html {
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    /* NAV */
    .menu-icon {
        font-size: 30px;
        top: 5px;
        right: 10px;
    }

    .logo {
        top: 10px;
    }

        .logo img {
            height: 28px;
        }

    .nav-links {
        width: 100%;
        height: 100vh;
        right: -100%;
        padding-top: 60px;
        background-color: #c7ad94;
    }

        .nav-links li a {
            font-size: 1.2rem;
            padding: 20px;
            text-align: center;
        }

    @media (max-width: 768px) {

        .banner-page {
            display: flex;
            flex-direction: column; /* 🔥 клучно */
            padding: 20px;
        }

        .text-content {
            order: 1; /* текст горе */
            max-width: 100%;
            text-align: center;
        }

        .invisi-element {
            order: 2;
            width: 100%;
            height: 200px; /* 👈 ова ќе ти глуми “слика” */
            background-size: cover;
            background-position: center;
        }

        /* ВАЖНО: да ја ставиме сликата тука наместо на banner */
        .banner-1 .invisi-element {
            background-image: url('../assets/images/banner_2.jpg');
        }

        .banner-2 .invisi-element {
            background-image: url('../assets/images/banner_3.jpg');
        }

       
    }

    /* HERO IMAGE */
    .image-container {
        height: 60vh;
    }

        .image-container img {
            height: 100%;
            object-fit: cover;
        }

    /* TITLE SECTION */
    .pain-page {
        padding: 30px 15px;
        height: auto;
    }

        .pain-page .title-container {
            flex-direction: column;
            gap: 10px;
        }

            .pain-page .title-container h2 {
                font-size: 2.4rem;
                text-align: center;
            }

    .left-bean,
    .right-bean {
        display: none;
    }

    /* RED DOTS */
    .red-dots-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .red-dot {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    /* PRODUCT SECTIONS */
    .pascalin-page {
        display: flex;
        flex-direction: column;
        padding: 0;
        background: none;
    }

    .content-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .description {
        font-size: 1rem;
        width: 100%;
    }

    /* BANNERS */
    .banner-page {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        height: auto;
        min-height: auto;
    }

    .invisi-element {
        display: none;
    }

    .text-content {
        max-width: 100%;
    }

    .banner-1-title {
        font-size: 1.8rem;
    }

    .banner-1-description {
        font-size: 1rem;
    }

    /* SCROLL BUTTON */
    #scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}
/* === FIXED CSS (mobile + product backgrounds) === */

.pascalin-page {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
}

.gold-page {
    background-image: url('../assets/images/pascalin_gold_page.jpg');
}

.merak-page {
    background-image: url('../assets/images/pascalin_merak_page.jpg');
}

.three-in-1-page {
    background-image: url('../assets/images/pascalin_3_in_1_page.jpg');
}

/* === MOBILE FIXES === */
@media (max-width: 768px) {

    .pascalin-page {
        display: flex;
        flex-direction: column;
        padding: 0;
        background-size: cover;
        background-position: left center;
        background-repeat: no-repeat;
    }

    /* REMOVE BACKGROUND FROM BANNERS */
    .banner-page,
    .banner-1,
    .banner-2 {
        background: none !important;
    }

    /* IMAGE UNDER TEXT */
    .invisi-element {
        display: block;
        width: 100%;
        height: 220px;
        background-size: cover;
        background-position: center;
    }

    .banner-1 .invisi-element {
        background-image: url('../assets/images/banner_2.jpg');
    }

    .banner-2 .invisi-element {
        background-image: url('../assets/images/banner_3.jpg');
    }
}
@media (max-width: 768px) {

    .banner-page,
    .banner-1,
    .banner-2 {
        background: none !important;
    }

    .invisi-element {
        display: block !important;
        width: 100%;
        height: 220px;
        background-size: cover;
        background-position: center;
    }

    .banner-1 .invisi-element {
        background-image: url('../assets/images/banner_2.jpg');
    }

    .banner-2 .invisi-element {
        background-image: url('../assets/images/banner_3.jpg');
    }

    .text-content {
        display: block !important;
        color: #000;
        text-align: center;
    }

}
@media (max-width: 768px) {

    header .logo {
        display: none !important;
    }
}

@media (max-width: 768px) {

    .nav-links .logo {
        display: block !important;
        text-align: center;
        margin: 15px 0;
    }

        .nav-links .logo img {
            height: 24px;
        }
}