/* Variables */
:root {
    --Light-color: #fee3c5;
    --Dark-color: #660A00;
    --secondry-color: #b5755b;
    --transition: all 0.5s ease;
    --box-shadow: 0px 15px 25px rgb(254, 210, 183);
    --heading-font: 600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Some Defaults */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Poppins", system-ui;
    height: auto;
    background-color: var(--Light-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    margin-top: 100px;
    margin-bottom: 100px;
}

.theme-shadow {
    box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.08);
}

/* Logo */
.logo {
    background-color: var(--Light-color);
    padding-right: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.logo a {
    color: var(--Dark-color);
    font-weight: 600;
    font-size: 30px;
    align-content: center;
    text-decoration: none;
}

.logo img {
    transform: translateY(-10%);
}

/* Back to top */
#back-to-top {
    display: none;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: var(--secondry-color);
    border: 2px solid var(--secondry-color);
    outline: none;
    border-radius: 50%;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
}

.btnEntrance {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: btnEntrance;
}

@keyframes btnEntrance {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 1;
    }
}

.btnExit {
    animation-duration: 0.25s;
    animation-fill-mode: both;
    animation-name: btnExit;
}

@keyframes btnExit {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

/* Start Landing */
#landing {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#landing img {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: 1rem;
}

/* End Landing */
/* Start Planets */
#title h1 {
    color: var(--Dark-color);
    font-weight: var(--heading-font);
}

#planets p {
    color: var(--secondry-color);
}
.game {
    padding-left: 2rem;
    padding-top: 30px;
    padding-bottom: 80px;
    font-size: 18px;
    font-weight: 500;
}
.game h1 {
    color: var(--Dark-color);
    font-weight: var(--heading-font);
}
.game p {
    color: var(--secondry-color);
}
.game-quote {
    font-size: 24px;
    font-weight: 500;
}
.game .game-btn {
    text-align: center;
    
}
.game .game-btn p {
    font-weight: 300;
}
.solar-system-game-btn {
    background-color: var(--light-color);
    color: var(--Dark-color);
    box-shadow: 0px 0px 20px var(--secondry-color);
    width: max-content;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid var(--secondry-color);
    padding: 10px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out;
}
.solar-system-game-btn:hover {
    transform: scale(1.1);
}
.collection {
    height: auto;
    background-color: var(--Light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 100px;
}

.collection .content {
    display: flex;
    flex-direction: column;
    /* Ensure content is stacked vertically */
    align-items: center;
    /* Center align items horizontally */
    padding: 1rem;
    height: 400px;
    width: auto;
    background-color: rgba(181, 117, 91, 0.182);
    overflow: hidden;
    text-align: center;
    /* Center text inside the card */
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-content h2 {
    color: var(--Dark-color);
    font-size: 1.7rem;
    font-weight: var(--heading-font);

}


.read-more {
    background-color: var(--light-color);
    color: var(--Dark-color);
    box-shadow: 0px 0px 20px var(--secondry-color);
    width: max-content;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid var(--secondry-color);
    padding: 10px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out;

}

.read-more:hover {
    transform: scale(1.1);
}

/* Ensure the swiper container and wrapper have defined heights */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    /* Allows flexible width */
}

/* End Planets */
/* Background */
#landing {
    position: relative;
    /* To keep stickers relative to this container */
    height: 100vh;
    overflow: visible;
}
#landing .sticker {
    position: absolute;
    z-index: 1;
    /* Stickers stay behind the content */
}

#landing .sticker-1 {
    top: 2%;
    left: -25%;
    width: 550px;
    /* Size of the sticker */
}

#landing .sticker-2 {
    top: -3%;
    left: 9%;
    width: 80px;
    /* Size of the sticker */
}

#landing .sticker-3 {
    transform: translateY(60%);
    right: -5%;
    width: 400px;
    /* Size of the sticker */
}

#landing .sticker-4 {
    top: 30%;
    right: 3%;
    width: 120px;
    /* Size of the sticker */
}

#landing .sticker-5 {
    top: 70%;
    left: 15%;
    width: 120px;
    /* Size of the sticker */
}

#landing .sticker-6 {
    top: 30%;
    left: 85%;
    width: 20px;
    /* Size of the sticker */
}

#landing .sticker-7 {
    top: 50%;
    left: 19%;
    width: 30px;
    /* Size of the sticker */
}

#landing .sticker-8 {
    top: 7%;
    right: -1%;
    width: 100px;
    /* Size of the sticker */
}
#landing .sticker-9 {
    top: -15%;
    right: 10%;
    width: 250px;
    /* Size of the sticker */
}
#landing .sticker-10 {
    top: -10%;
    left: 15%;
    width: 180px;
    /* Size of the sticker */
}
.content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 700px;
}
.content h1 {
    color: var(--Dark-color);
    font-weight: var(--heading-font);
}

.content p {
    padding-top: 1rem;
    color: var(--secondry-color);
}
/* Styles for mobile devices */
@media (max-width: 768px) {
    #planets {
        transform: translateY(-80%);
        margin-bottom: 0;
    }
    #landing {
        margin-top: 2rem;
    }
    body {
        font-size: 14px;
        padding: 10px;
        overflow-x: hidden;
    }
    .logo {
        width: 100vw;
        position: fixed;
        left: 0;
        right: 0;
    }
    #landing .sticker-1 {
        top: 20px;
        left: -10%;
        width: 150px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .sticker-2 {
        top: 1px;
        left: 10%;
        width: 50px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .sticker-3 {
        top: 40%;
        right: 10px;
        width: 120px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .sticker-4 {
        bottom: 20%;
        right: -10px;
        width: 60px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .sticker-5 {
        top: 50%;
        right: 20px;
        width: 90px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .sticker-6 {
        top: 5%;
        right: 10%;
        width: 100px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .sticker-7 {
        top: 60%;
        left: 50%;
        width: 40px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .sticker-8 {
        top: 50%;
        left: -5%;
        width: 60px;
        /* Adjust sticker size for smaller screens */
    }
    #landing .sticker-9 {
        top: 2%;
        left: 40%;
        width: 100px;
        /* Adjust sticker size for smaller screens */
    }
    #landing .sticker-10 {
        top: 2%;
        left: 20%;
        width: 80px;
        /* Adjust sticker size for smaller screens */
    }

    #landing .content {
        padding: 15px;
        margin-bottom: 5rem;
        /* Adjust content padding for mobile */
    }
}

/* Adjust for very small screens */
@media (max-width: 480px) {
    #planets {
        transform: translateY(-40%);
        margin-bottom: 0;
    }
    #landing {
        padding-top: 5rem;
    }
    body {
        height: auto;
        font-size: 12px;
        padding: 5px;
        overflow-x: hidden;
    }
    .logo {
        width: 100vw;
        position: fixed;
        left: 0;
        right: 0;
    }
}
@media (max-width: 400px) {
    #planets {
        transform: translateY(-100%);
        margin-bottom: 0;
    }
    #planets .content {
        width: 100vw;
        height: auto;
    }
    #landing {
        padding-top: 5rem;
    }
    body {
        height: auto;
        font-size: 12px;
        padding: 5px;
        overflow-x: hidden;
        overflow-y: hidden;
    }
    h1 {
        font-size: 14px;
    }
    .logo {
        width: 100vw;
        position: fixed;
        left: 0;
        right: 0;
    }
}