:root {
    --background-color: #fff;
    --text-color: #444;
    --icon-color: #000;
}

body {
    background: var(--background-color);
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    height: 100vh;
    margin: 0;
}

.top-message {
    font-size: 1.5rem;
}

h1 {
    font-size: 11.625rem;
    /* large for desktop */
}

.custom_container_92 {
    width: 92%;
    margin: auto;
}

.mihidora_f_page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.social-icons i {
    font-size: 20px;
    margin: 0 5px;
    cursor: pointer;
    color: var(--icon-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* spacing between icons */
    padding-top: 40px;
    padding-bottom: 40px;
}

.social-icon-img {
    width: 40px;
    /* adjust size */
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icon-img:hover {
    transform: scale(1.1);
    /* slight zoom on hover */
    opacity: 0.8;
    /* slight transparency effect */
}

.logo-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* allow logos to wrap on smaller screens */
}

.logo-wrapper img {
    width: 750px;
    height: auto;
    object-fit: cover;
    margin: 0 10px 20px 10px;
    /* spacing below for wrapping */
}

.svg-inline--fa {
    font-size: 30px;
}

.thank-text {
    color: var(--text-color);
    font-size: 1.5rem;
}

/* ===== Responsive Styles ===== */

/* Large tablets */
@media (max-width: 1024px) {
    h1 {
        font-size: 8rem;
    }

    .logo-wrapper {
        width: 90%;
    }

    .logo-wrapper img {
        width: 400px;
    }

    .thank-text {
        font-size: 1.3rem;
    }
}

/* Tablets / small laptops */
@media (max-width: 768px) {
    h1 {
        font-size: 5rem;
    }

    .social-icon-img {
        width: 30px;
        height: 30px;
        cursor: pointer;
        object-fit: contain;
        transition: transform 0.3s, opacity 0.3s;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .top-message {
        font-size: 1.3rem;
    }

    .logo-wrapper img {
        width: 300px;
    }

    .thank-text {
        font-size: 1.1rem;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }

    .top-message {
        font-size: 1.1rem;
    }

    .social-icon-img {
        width: 30px;
        height: 30px;
        cursor: pointer;
        object-fit: contain;
        transition: transform 0.3s, opacity 0.3s;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .logo-wrapper {
        width: 100%;
    }

    .logo-wrapper img {
        width: 300px;
        margin: 0 5px 15px 5px;
    }

    .thank-text {
        font-size: 1rem;
        margin-top: 20px;
    }

    .social-icons i {
        font-size: 18px;
        margin: 0 3px;
    }
}