/* Hero Section Responsive Styles */
.hero-section {
    position: relative;
    padding: 0;
    margin: 0;
    background-color: transparent;
    overflow: hidden;
}

/* Hide duplicate logo and tagline in hero section since they're in the header */
.hero-section .altare-logo,
.hero-section .logo-tagline {
    display: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'GIAZA', serif;
    font-size: 3.5rem;
    color: #0a4697;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-cta .btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background-color: #f3471f;
    color: white;
    border: 2px solid #f3471f;
}

.hero-cta .btn-secondary {
    background-color: transparent;
    color: #f3471f;
    border: 2px solid #f3471f;
}

.hero-cta .btn-primary:hover {
    background-color: #d93a16;
    border-color: #d93a16;
}

.hero-cta .btn-secondary:hover {
    background-color: rgba(243, 71, 31, 0.1);
}

.hero-image {
    max-width: 100%;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 0;
        margin: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0;
        margin: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
}
