/* Optimized Hero Section Styles */
.hero-section { 
    height: 100vh; 
    min-height: 700px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #fff; 
    position: relative;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/background.webp') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-section .container { 
    position: relative; 
    z-index: 2; 
    max-width: 900px; 
    padding: 0 2rem; 
    transform: translateY(-5vh);
    will-change: transform;
}

.hero-section h1 { 
    font-family: var(--font-title); 
    font-size: 5rem; 
    color: #fff; 
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3); 
    font-weight: 700; 
    margin-bottom: 2rem; 
    letter-spacing: -0.5px; 
    line-height: 1.1;
    will-change: transform;
    transform: translateZ(0);
}

.hero-section .subtitle { 
    font-size: 2rem; 
    color: #fff; 
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3); 
    margin-bottom: 3rem; 
    font-family: var(--font-title); 
    font-weight: 500; 
    line-height: 1.4;
    will-change: transform;
    transform: translateZ(0);
}

.hero-cta-button { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    background: linear-gradient(135deg,#9F2D45 0%,#D76D77 100%); 
    color: #fff; 
    padding: 1.25rem 2.75rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1.1rem; 
    font-family: var(--font-title); 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(159,45,69,0.3); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    position: relative; 
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.hero-badge { 
    position: absolute; 
    top: 2rem; 
    right: 2rem; 
    background: rgba(255,255,255,0.95); 
    color: #9B3D3D; 
    padding: 0.75rem 2rem; 
    border-radius: 50px; 
    font-family: var(--font-body); 
    font-weight: 600; 
    font-size: 1rem; 
    z-index: 3; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    backdrop-filter: blur(5px);
    will-change: transform;
    transform: translateZ(0);
} 