/* --- Base Styles --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.papercrete-gradient {
    background: radial-gradient(circle at center, #fdfdfb 0%, #e1e1d8 100%);
    color: #334155;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* --- Typography --- */
.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.accent-color {
    color: #059669;
}

.tagline {
    font-size: 1rem;
    color: #064e3b;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.divider {
    height: 4px;
    width: 80px;
    background-color: #059669;
    margin: 0 auto 2.5rem auto;
    border-radius: 99px;
    opacity: 0.3;
}

.main-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #475569;
}

.highlight {
    font-weight: 700;
    color: #0f172a;
    border-bottom: 3px solid #10b981;
}

/* --- Card Styles --- */
.contact-card {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 2rem;
   
}

.email-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    text-decoration: none;
    word-break: break-all; /* Prevents overflow on tiny screens */
}

/* --- Media Queries --- */

/* For Tablets (Small screens and up) */
@media (min-width: 640px) {
    .brand-title {
        font-size: 3.5rem;
    }
    .tagline {
        font-size: 1.25rem;
    }
    .email-link {
        font-size: 1.75rem;
    }
}

/* For Desktop (Large screens) */
@media (min-width: 1024px) {
    .brand-title {
        font-size: 4.5rem;
    }
    .main-text {
        font-size: 1.5rem;
    }
    .contact-card {
        padding: 3rem;
    }
}

/* For very small phones */
@media (max-width: 380px) {
    .brand-title {
        font-size: 2rem;
    }
    .main-text {
        font-size: 1.1rem;
    }
}