@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+25&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+25&family=Pixelify+Sans:wght@400..700&display=swap');

:root {
    --primary-color: #FF6F61; /* Coral */
    --secondary-color: #FFB400; /* Amber */
    --accent-color-1: #FF8A65; /* Peach */
    --accent-color-2: #FFD54F; /* Golden Yellow */
    --background-color: #fff571; /* Warm Yellow */
    --text-color: #4E342E; /* Dark Brown */
    --highlight-color: #FF7043; /* Orange */
    --shadow-color: #8D6E63; /* Medium Brown */
    --font-size: 25px;
    --btn-1: #cf6646;
    --btn-2:#e0bb3e;
    --btn-3:#be4f2d;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.sent{
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sent > p{
    font-size: 20px;
}

.sent > img{
    width: 200px;
}

.sent > button{
    background-color: var(--secondary-color);
    outline: 0;
    border: 0;
    font-size: 25px;
    padding: 10px 50px;
    margin: 0 5px;
    border-radius: 20px;
    transition: ease 0.2s;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
}

#yee {
    background: none;
}

/* Home Section */
#container-home {
    width: 100% !important;
    height: 100dvh;
    display: flex;
    align-items: center;
    background: url(../images/background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: content-box;
}

.images-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.umroo-inc-text {
    display: flex;
    justify-content: center;
}

.welcome-text-display {
    display: flex;
    justify-content: center;
}

.btns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btns button {
    background-color: var(--secondary-color);
    outline: 0;
    border: 0;
    font-size: 25px;
    padding: 10px 50px;
    margin: 0 5px;
    border-radius: 20px;
    transition: ease 0.2s;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
}

.btns button:hover {
    color: var(--text-color);
    transform: translate(0, -5px);
    box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.315);
}

/* About Section */
#container-about {
    padding: 200px 50px;
    max-width: 1200px !important;
}

#sub-container-about {
    display: flex;
    flex-direction: row;
}

.mascot {
    padding: 0 50px;
    display: flex;
    background-color: var(--secondary-color);
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.mascot img {
    height: 300px;
}

.about-me-text {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px 10px;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-size: var(--font-size);
}

.title-about {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#light {
    font-weight: 400;
}

/* Socials Section */


#SOCIAL{
    margin-bottom: 100px;
}

.socials-text {
    text-align: center;
}

.side-text {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footer-mail-a{
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.footer-mail-i{
    padding: 0px 5px;
    font-size: 20px;
}

.footer-mail-span{
    text-decoration: underline 1px solid #fff;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 10px;
}

.card:hover {
    transform: translateY(-10px);
    transition: 0.2s;
}

.card {
    transition: 0.2s;
}

/* Base Card Styles */
.card-container .card {
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 15px;
    padding: 0 0;
}

/* Instagram Card */
.card-container #instagram {
    background-color: var(--accent-color-1);
}

/* Youtube Card */
.card-container #youtube {
    background-color: var(--accent-color-2);
}

/* Discord Card */
.card-container #discord {
    background-color: var(--highlight-color);
}

.card-title {
    display: flex;
    font-size: 50px;
    align-items: center;
    justify-content: center;
}

.card-desc {
    display: flex;
    flex-grow: 1;
    font-size: 18px;
    padding: 5px 1px;
}

.card-btn {
    display: flex;
    margin-top: 5px;
}

/* Base Button */
.card-btn button {
    flex-grow: 1;
    font-size: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    outline: none;
    border: none;
    padding: 10px 0;
    color: #fff;
    font-family: inherit;
}

/* Instagram Button */
.card-btn #instagram-btn {
    background-color: var(--btn-1);
}

/* Youtube Button */
.card-btn #youtube-btn {
    background-color: var(--btn-2);
}

/* Discord Button */
.card-btn #discord-btn {
    background-color: var(--btn-3);
}


/* Contact Section */
#contactMe{
    margin-bottom: 50px;
}

#contactMe > h1,p{
    text-align: center;
}

.container-contact{
    display: flex;
    justify-content: center;
}

.form{
    background-color: var(--secondary-color);
    padding: 50px 100px;
    border-radius: 20px;
}

.form > input{
    width: 100%;
}

.send-btn{
    width: 100%;
    display: flex;
    justify-content: center;
}

.send-btn > button{
    width: 50%;
    background-color: var(--highlight-color);
    outline: 0;
    border: 0;
    font-size: 25px;
    padding: 10px 40px;
    margin: 0 5px;
    border-radius: 20px;
    transition: ease 0.2s;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
}

.send-btn > button:hover{
    color: var(--text-color);
    transform: translate(0, -5px);
    box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.315);
}
/* Footer Section */
#container-footer {
    background-color: var(--text-color);
    padding: 20px 40px;
}

.main-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.socials i:hover {
    color: var(--shadow-color);
}

.socials {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.socials i {
    color: var(--shadow-color);
    font-size: 40px;
    margin: 0 5px;
}

.socials i:hover {
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 967px) {
    .mascot {
        display: none;
    }

    #yee {
        display: block;
    }

    .about-me-text {
        border-radius: 20px;
        width: 101%; /* Ensure it takes the full width */
        padding: 20px; /* Adjust padding for better appearance */
        box-sizing: border-box; /* Include padding in the element's total width and height */
        font-size: 15px !important;
    }

    #sub-container-about {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center align items */
        text-align: center; /* Center text */
    }

    .card:hover{
        transform: translateY(0);
    }
}

@media (max-width: 736px) {
    .wlcmtxt {
        height: 200px;
    }
}

@media (max-width: 722px) {
    #container-home {
        background: url(../images/background-mobile.png);
        background-position: center;
        background-size: cover;
    }
}

@media (max-width: 579px) {
    .form{
        padding: 50px 20px;
    }
    .send-btn > button{
        font-size: 25px;
        width: 100%;
    }
}

@media (max-width: 491px) {
    .btns {
        flex-direction: column;
    }

    .btns button {
        margin: 10px 0;
        padding: 10px 30px !important;
    }
}

@media (max-width: 447px) {
    .wlcmtxt {
        height: 150px;
    }
}

@media (max-width: 357px) {
    .wlcmtxt {
        height: 100px;
    }
}

/* about section responsiveness */
@media (max-width: 1200px) {
    .about-me-text {
        font-size: 20px;
    }

    .mascot img {
        height: 200px;
    }
}