/* src/styles.css */

/* Darker background with gradient */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #103060, #9b3aa5);
    font-family: 'Lato', sans-serif;
}

/* Wider card with more padding */
.card {
    background: linear-gradient(135deg, #c145de, #2055b0);
    border-radius: 15px;
    padding: 40px 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
    margin: 50px;
}

/* Circular image with white glowing effect */
.card img.circular {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 15px 5px white;
}

/* Bolded 'Bunny' */
.card h1 {
    font-size: 50px;
    margin: 15px 0 10px 0;
}
.card h1 strong {
    font-weight: bold;
}

/* Centered bio text with larger font */
.card p {
    margin: 20px 0;
    font-size: 24px;
    line-height: 1.8;
}

/* Larger second image */
.card img.transparent {
    width: 350px;
    margin-top: 20px;
}

/* Buttons one per line */
.buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Common button styling */
.buttons button {
    border: none;
    color: white;
    padding: 15px 30px;
    margin: 10px 0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top 5 buttons color & hover */
.about, .gallery, .fursonas, .relationship, .nsfw {
    background-color: rgb(67, 220, 168);
}
.about:hover, .gallery:hover, .fursonas:hover, .relationship:hover, .nsfw:hover {
    background-color: #c145de;
}

/* Social buttons */
.discord   { background-color: #5865F2; }
.telegram  { background-color: #0088cc; }
.furaffinity { background-color: orange; }
.barq      { background-color: #FF4500; }

.buttons button img {
    margin-right: 10px;
}
.buttons button:hover {
    opacity: 0.9;
}