@import url('https://fonts.googleapis.com/css2?family=Comic+Neue&display=swap');

body {
    background-image: url(/ressources/img/back.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    font-family: 'Comic Neue', cursive;
}

/* --- Navbar Styles --- */
.navbar {
    font-size: 1.4375rem;
}

.navbar-nav .nav-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.logo-img {
    height: 45px;
    width: auto;
}

.main-content-row {
    color: black;
}

/* --- Text Styles --- */
.greeting-text {
    font-family: 'Comic Neue', cursive;
    font-size: 3.125rem;
    margin-top: 0.5rem;
}

/* --- New Socials Page Styles --- */
.profile-card {
    background-color: #ffdbef;
    border-radius: 25px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-picture-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #e1b4d0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d1b8c6;
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: bold;
    color: black;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.profile-handle {
    color: black;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.profile-bio {
    color: black;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    text-decoration: none;
    background-color: #ffbcddcb;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-btn:hover {
    background-color: #ffbcde;
    transform: translateY(-2px);
    color: black;
}

.social-btn i {
    margin-right: 0.75rem;
    width: 20px;
}

@media (min-width: 768px) {
    .social-links-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-btn {
        width: auto;
    }
}

/* --- Footer Styles --- */
footer {
    color: black;
    padding-top: 0.9rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

footer p {
    margin-bottom: 0;
}