/* =========================
   HOME SECTION BASE
========================= */

.home-first-container {
    height: 100vh;
    width: 100%;
    padding: 30px;
    padding-top: 73px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background: #ffffff;
}

/* DARK MODE BACKGROUND */
.dark .home-first-container {
    background: #0a0a0a;
}

/* =========================
   CARD CONTENT
========================= */

.home-first-container-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    z-index: 5;
}

.home-first-container-card * {
    text-align: center;
}

.home-first-container-card h1 {
    font-size: 2.5vw;
}

.home-first-container-card h1 #element {
    color: red;
}

/* DARK MODE TEXT */
.dark .home-first-container-card h1 {
    color: white;
}

.dark .home-first-container-card h1 #element {
    color: rgb(255, 0, 149);
}

.dark .home-first-container-card p {
    color: white;
}

/* =========================
   BUTTONS
========================= */

.home-first-container-buttons {
    display: flex;
    gap: 30px;
    width: fit-content;
    margin: 0 auto;
}

.home-first-container-buttons a {
    background-color: red;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    text-transform: capitalize;
    text-decoration: none;
}

/* =========================
   CURSOR HIGHLIGHTER
========================= */

#corser-highlighter {
    position: fixed;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.4);
    mix-blend-mode: difference;
    transition: transform 0.05s linear;
}

/* =========================
   OPTIONAL: DARK MODE BODY
========================= */

.dark body {
    background: #0a0a0a;
}

/* =========================
   SECOND CONTAINER STYLE
========================= */

.home-second-container{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home-second-container-wrapper{
    display: flex;
    justify-content: space-evenly;
    max-width: 1660px;
    max-width: 95%;
}

.home-second-container-wrapper-left{
    margin: auto  0;
    max-width: 40%;
}

.dark .home-second-container-wrapper-left h2,
.dark .home-second-container-wrapper-left p{
    color: white;
}

.image-container {
    position: relative;
    display: inline-block;
    min-width: 500px;
    z-index: 99;
}

.image-container img {
    width: 100%;
    display: block;
    mask-image: linear-gradient(to top, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to top, transparent, black 50%);
}

@media screen and (max-width: 1024px) {
    .home-first-container-card h1{
        font-size: 4vw;
    }

    .home-second-container-wrapper{
        flex-direction: column;
    }
    .home-second-container-wrapper-left{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .home-second-container-wrapper-left h2{
        text-align: center;
    }
    .home-second-container-wrapper-left *,
    .home-second-container-wrapper-left {
        width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .home-first-container-card h1{
        font-size: 7vw;
        display: flex;
        flex-direction: column;
    }
}