/* Hero Mega Styling - Shared across all pages */
/* Reset WordPress defaults */
.hero-mega * {
    box-sizing: border-box;
}

.hero-mega {
    margin: 0;
    padding: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                var(--hero-bg-image) center/cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
}

.hero-text .accent {
    color: #d19d22;
    text-shadow: 0 0 50px rgba(209,157,34,0.5);
}

.hero-text p {
    font-family: 'Ivy Presto Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-mega {
    font-family: 'Inter', sans-serif;
    padding: 1.8rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid #224653;
    background: #224653;
    color: white;
    display: inline-block;
}

.btn-mega:hover {
    background: transparent;
    color: #224653;
    box-shadow: 0 15px 50px rgba(209,157,34,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #000000;
    border-color: white;
}

/* Section Title Styling */
.section-title .highlight {
    color: #d19d22;
}

.section-intro {
    font-family: 'Ivy Presto Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-mega {
        height: auto;
        min-height: calc(100vh - 80px);
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        line-height: 1;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-mega {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-mega {
        padding-top: 90px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .btn-mega {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}
