/* Home Settings CSS for Colin Payne Music */

.hero-section {
    height: calc(100vh - 80px);
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://colinpaynemusic.com/wp-content/uploads/2025/09/colin_payne_music_home_image.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.hero-image-area {
    position: absolute;
    right: 0;
    top: 0;
    width: 83.33%; /* 5/6 of the section */
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://colinpaynemusic.com/wp-content/uploads/2025/09/colin_payne_music_home_image.webp');
    background-size: cover;
    background-position: center;
}

.hero-content {
    padding-left: 100px;
    color: white;
    z-index: 2;
    position: relative;
}

.composer-name {
    font-family:  'Poppins', 'Inter', 'Work Sans', 'Nunito', 'Source Sans Pro', 'Helvetica Neue UltraLight', 'Arial', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.06em;
    margin-bottom: 0;
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.composer-title {
    font-family: 'Poppins', 'Inter', 'Work Sans', 'Nunito', 'Source Sans Pro', 'Helvetica Neue UltraLight', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    color: #00bcd4;
    margin-top: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.composer-title::before {
    content: '/ ';
    color: #00bcd4;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding-left: 30px;
    }
    
    .composer-name {
        font-size: 2.5rem;
        letter-spacing: 0.04em;
    }
    
    .composer-title {
        font-size: 1.8rem;
        letter-spacing: 0.06em;
    }
    
    .hero-section {
        background-attachment: scroll; /* Better performance on mobile */
    }
}

@media (max-width: 576px) {
    .composer-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .composer-title {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding-left: 20px;
    }
}