@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.cosmic-gradient {
    background: #000000;
}

.tinted-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.98)), url('../images/header.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Mobile responsive font sizes - 1 point less on mobile */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 1.75rem !important; /* 28px instead of 36px */
        line-height: 2rem !important;
    }
    
    .text-3xl {
        font-size: 1.5rem !important; /* 24px instead of 30px */
        line-height: 2rem !important;
    }
    
    .text-xl {
        font-size: 1.125rem !important; /* 18px instead of 20px */
        line-height: 1.75rem !important;
    }
    
    .text-lg {
        font-size: 1rem !important; /* 16px instead of 18px */
        line-height: 1.5rem !important;
    }
    
    .text-base {
        font-size: 0.875rem !important; /* 14px instead of 16px */
        line-height: 1.25rem !important;
    }
}

/* Hide back link text on mobile, show only icon */
@media (max-width: 768px) {
    .back-link-text {
        display: none;
    }
    
    .back-link-icon {
        display: inline-block;
    }
}

@media (min-width: 769px) {
    .back-link-text {
        display: inline;
    }
    
    .back-link-icon {
        display: none;
    }
}
