/* Global CSS */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oxanium:wght@200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

:root{
    --bg-color: #0B132B;
    --main-text-color: #fff;
    --snd-text-color: #94a3b8;
    --side-text-color: #6FFFE9;
}

body {
    font-family: 'Oxanium', serif;
    background-color: var(--bg-color);
    color: var(--main-text-color);
    line-height: 1.3;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Text Section */
.intro-text {
    color: var(--side-text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.name {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--main-text-color);
}

.mulitple-text{
    color: var(--side-text-color);
}

.tagline {
    font-size: 3rem;
    font-weight: bold;
    color: var(--snd-text-color);
    margin-bottom: 1.5rem;
}

.description {
    color: var(--snd-text-color);
    font-size: 1.2rem;
    max-width: 1000px;
    margin-bottom: 2rem;
}

/* Social Media Section */
.container-social{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-icons a {
    color: var(--side-text-color);
    font-size: 2rem;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.social-icons a:hover {
    color: var(--main-text-color);
}

/* Resime Btn Section */
.resume-btn {
    /* display: inline-block; */
    padding: 0.75rem 1.5rem;
    color: var(--side-text-color);
    border: 1px solid var(--side-text-color);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.resume-btn:hover {
    background-color: rgba(94, 234, 212, 0.1);
}

/* Media */
@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 2rem;
    }

    .description {
        font-size: 1.2rem;
    }
}

@media (max-width: 475px){
    .tagline {
        font-size: 1.8rem;
    }
}

@media (max-width: 430px) {
    .name {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.7rem;
    }

    .description {
        font-size: 1.1rem;
        margin-bottom: 1.2rem; 
    }

    /* button to fall below social icons, margin-bottom in desc is adjusted */
    .container-social{
        flex-direction: column;
        align-items: flex-start;
    }

    .container-social .social-icons{
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 415px){
    .intro-text{
        font-size: 1.1rem;
    }
    
    .name {
        font-size: 2.8rem;
    }

    .tagline{
        font-size: 1.5rem;
    }

    .description{
        font-size: 1.05rem;
    }
}

@media (max-width: 415px){
    .tagline{
        font-size: 1.4rem;
    }
}