/* ===================================
   SHARED TYPOGRAPHY & BUTTONS
   Used across all pages except index.html
   =================================== */

/* Typography - Standardized heading styles */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #80EF80;
    margin-bottom: 16px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #80EF80;
    margin-bottom: 16px;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #10ac84;
    margin-bottom: 16px;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e6f4ef;
    margin-bottom: 8px;
}

p {
    color: #e6f4ef;
    margin-bottom: 16px;
}

/* Standardized Button Styles */
.btn {
    background: linear-gradient(135deg, #80EF80, #10ac84);
    color: #0b1a14;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/* Button variants */
.btn-primary {
    background: linear-gradient(135deg, #80EF80, #10ac84);
    color: #0b1a14;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(128, 239, 128, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(128, 239, 128, 0.35);
}

.btn-secondary {
    background: rgba(128, 239, 128, 0.1);
    color: #80EF80;
    border: 2px solid #80EF80;
    padding: 14px 38px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(128, 239, 128, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 239, 128, 0.2);
}
