@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap");

body {
    margin: 0;
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    background: linear-gradient(to bottom, #e6cfff, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}

h1 {
    font-size: 7rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 1rem 0;
}

p.intro {
    max-width: 700px;
    font-size: 2rem;
    color: #555;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
}

.holder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* space between buttons */
    flex-wrap: wrap; /* keeps buttons aligned on small screens */
}

/* Common button styles */
.button,
.social-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 4rem; /* uniform height */
    min-width: 4rem; /* ensures social buttons are not too small */
    padding: 0 1.5rem; /* horizontal padding for text button */
    font-size: 1.5rem;
    background: #8b5cf6;
    color: white;
    border: none;
    box-shadow: 0 6px 14px rgba(139, 92, 246, 0.3);
    transition: background 0.2s, transform 0.2s;
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none; /* for social links */
}

/* Main button roundness */
.button {
    border-radius: 2rem; /* pill shape */
}

/* Social buttons */
.social-button {
    width: 4rem; /* ensures perfect circle */
    border-radius: 50%; /* fully circular */
    padding: 0; /* no extra padding */
}

.social-button img {
    width: 50%;
    height: 50%;
}

/* Hover effects */
.button:hover,
.social-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.mobile{
    display: none;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
    .button,
    .social-button {
        height: 3.5rem;
        font-size: 1.2rem;
        width: 3.5rem; /* ensures circular buttons scale down */
    }
    .button {
        padding: 0 1rem;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: flex;
    }
}