/* Shared Heading Styles for innobu website */

/* Header container styling */
.header {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8) 0%, rgba(20, 39, 78, 0.9) 100%);
    box-shadow: 0 0 30px rgba(64, 192, 240, 0.2);
    border: 1px solid rgba(64, 192, 240, 0.3);
}

/* H1 styling with gradient text */
h1, .header h1, h1.gradient-text {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff, #40c0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(64, 192, 240, 0.5);
}

/* Subtitle styling */
.header p, .subtitle {
    font-size: 1.2rem;
    color: #a0c0e0;
}

/* Responsive heading class for section titles */
.responsive-heading {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.5);
    background: linear-gradient(90deg, #ffffff, #40c0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1, .header h1, h1.gradient-text {
        font-size: 2rem;
    }
    
    .header p, .subtitle {
        font-size: 1rem;
    }
    
    .responsive-heading {
        font-size: 1.8rem;
        padding: 0 10px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .responsive-heading {
        font-size: 1.5rem;
        padding: 0 5px;
    }
}
