@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
    --primary-color: #7a549c;
    --secondary-color: #9375ad;
    --accent-color: #aa97bd;
    --background-color: #f8f5fa;
    --text-color: #2e2e2e;
    --link-color: #7a549c;
    --link-hover-color: #aa97bd;
    --border-color: #e0d8ea;
    --button-color: #7a549c;
    --button-hover-color: #9375ad;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

a:hover {
    text-decoration: none;
    transform: scale(1.1);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    color: white;
    position: fixed;
    top: 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    transition: background-color 0.5s ease;
}

.navbar.scrolled {
    background-color: var(--primary-color);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.navbar .nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--secondary-color);
}

.toggle-checkbox {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .nav-links {
        flex-direction: column;
        background-color: var(--primary-color);
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .toggle-checkbox:checked~.nav-links,
    #toggle:checked~.nav-links {
        left: 0;
        padding-top: 2rem;
    }

    .menu {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1100;
        padding-right: 2rem;
    }

    .logo {
        padding-left: 2rem;
    }

    .line {
        stroke-width: 6;
        stroke-linecap: round;
        stroke: white;
        transition: all 500ms ease;
    }

    .top {
        transform-origin: 26px 40px;
    }

    .middle {
        stroke-dasharray: 60 60;
    }

    .bottom {
        transform-origin: 26px 60px;
    }

    .toggle-checkbox:checked+.menu .top,
    #toggle:checked~.menu .top {
        transform: rotate(45deg);
    }

    .toggle-checkbox:checked+.menu .middle,
    #toggle:checked~.menu .middle {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
    }

    .toggle-checkbox:checked+.menu .bottom,
    #toggle:checked~.menu .bottom {
        transform: rotate(-45deg);
    }

    .navbar .nav-links a {
        text-decoration: underline;
        display: block;
        padding-block: 10px;
        font-size: larger;
        border-radius: 8px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        height: 120vh;
        background-color: var(--primary-color);
        text-align: center;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: scroll;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 120vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 900;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .toggle-checkbox:checked~.nav-links {
        left: 0;
    }

    .toggle-checkbox:checked~.overlay {
        opacity: 1;
        visibility: visible;
    }

    .wrapper {
        height: auto;
        overflow: visible;
        transition: overflow 0.3s ease;
    }

    body:has(.toggle-checkbox:checked) {
        overflow: hidden;
        height: 100vh;
    }
}

* {
    box-sizing: border-box
}

.slideshow-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    max-height: 100vh;
}

.slideshow-wrapper {
    width: 200%;
    display: flex;
    animation: slideshow 8s infinite;
}

.mySlides {
    width: 50%;
    flex-shrink: 0;
}

.mySlides img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes slideshow {

    0%,
    40% {
        transform: translateX(0);
    }

    50%,
    60% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-100);
    }
}

@media (max-width: 768px) {
    .slideshow-container {
        width: 100%;
    }
}

.home-textboard {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.home-textboard:nth-child(2) {
    background: linear-gradient(135deg, #7a549c8a, #9375ad8c);
    transform: translateY(-100%);
    position: absolute;
    width: 100%;
}

.home-textboard h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-textboard p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.home-1,
.home-2,
.home-3,
.home-4,
.home-5,
.home-6 {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 3rem 2rem;
}

.background {
    background-color: var(--secondary-color);
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 2rem;
}

.home-1_text,
.home-3_text,
.home-5_text,
.home-6_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

#success .home-5_text {
    padding-right: 0;
    padding-left: 2rem;
}

.home-2_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
    color: var(--background-color)
}

#success .home-3_text {
    color: var(--background-color);
}

.home-1_text h3,
.home-2_text h3,
.home-3_text h3,
.home-5_text h3,
.home-6_text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.home-1_text ul,
.home-2_text ul,
.home-3_text ul,
.home-5_text ul,
.home-6_text ul {
    list-style-type: none;
    padding: 0;
}

.home-1_text ul li,
.home-2_text ul li,
.home-3_text ul li,
.home-5_text ul li,
.home-6_text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.75rem;
}

.home-1_text ul li::before,
.home-2_text ul li::before,
.home-3_text ul li::before,
.home-5_text ul li::before,
.home-6_text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.home-textboard ul {
    list-style-type: none;
    padding-left: 0;
}

.home-1_image,
.home-2_image,
.home-3_image,
.home-4_image,
.home-5_image,
.home-6_image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#home .home-1_image {
    background: url('../images/home_4.webp') no-repeat center center/cover;
}

#home .home-2_image {
    background: url('../images/home_3.webp') no-repeat center center/cover;
}

#home .home-3_image {
    background: url('../images/how_1.webp') no-repeat center center/cover;
}

#home .home-4_image {
    box-shadow: none;
    text-align: center;
}

#home .home-5_image {
    background: url('../images/card.jpg') no-repeat center center/cover;
}

.home-1_image img,
.home-2_image img,
.home-3_image img,
.home-4_image img,
.home-5_image img,
.home-6_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#success .home-1_image {
    background: url('../images/vn6.jpeg') no-repeat center center/cover;
}

#success .home-2_image {
    background: url('../images/vn41.jpeg') no-repeat center center/cover;
}

#success .home-3_image {
    background: url('../images/vn22.jpeg') no-repeat center center/cover;
}

#success .home-5_image {
    background: url('../images/vn40.jpeg') no-repeat center center/cover;
}

#success .home-1_image img,
#success .home-2_image img,
#success .home-3_image img,
#success .home-4_image img,
#success .home-5_image img,
#success .home-6_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.home-4 img {
    max-width: 50%;
    height: auto;
}

#home,
#how,
#contact,
#offers {
    scroll-margin-top: 98.8px;
}

.youtube-video-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.youtube-video-container::after {
    display: block;
    content: "";
    padding-top: 56.25%;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button {
    background-color: var(--button-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--button-hover-color);
}

@media screen and (max-width: 768px) {

    .home-1,
    .home-3,
    .home-5,
    .home-6 {
        flex-direction: column;
        padding: 2rem 1rem;
        margin: 0 auto;
    }

    .home-2 {
        flex-direction: column;
        padding-top: 2rem;
        padding-left: auto;
        padding-right: auto;
        margin-bottom: 0;
    }

    .home-1_text,
    .home-2_text,
    .home-3_text,
    .home-5_text,
    .home-6_text {
        padding: 0;
        text-align: center;
    }

    .home-1_text h3,
    .home-2_text h3,
    .home-3_text h3,
    .home-5_text h3,
    .home-6_text h3 {
        font-size: 1.5rem;
    }

    .home-1_text ul li,
    .home-2_text ul li,
    .home-3_text ul li,
    .home-5_text ul li,
    .home-6_text ul li {
        padding-left: 30px
    }

    .home-1_text ul li::before,
    .home-2_text ul li::before,
    .home-3_text ul li::before,
    .home-5_text ul li::before,
    .home-6_text ul li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
    }

    .home-4 {
        margin: 1rem auto;
        padding: 1rem;
    }

    .home-4 img {
        max-width: 66%;
        object-fit: contain;
    }

    .home-textboard h1 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.4;
    }

    .home-textboard:nth-child(2) {
        transform: none;
        position: relative;
    }

    .home-textboard {
        padding: 2rem 1rem;
    }

    #success .home-1_image img,
    #success .home-2_image img,
    #success .home-3_image img,
    #success .home-4_image img,
    #success .home-5_image img,
    #success .home-6_image img {
        object-fit: cover;
    }
}

.thank {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.thankyou-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.thankyou-container img {
    max-width: 90%;
    height: auto;
}

.back-button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: var(--secondary-color);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--background-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.costume_red {
    color: rgb(231, 27, 27);
    font-size: 4rem!important;
}

.home-note {
    font-size: 1.25rem!important;
    color: black;
}

.home-note-title {
    font-size: 1.75rem!important;
    color: black;
}