@import url('variables.css');

.hero-header {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-image: url('../images/headers/home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    position: relative;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 70, 52, 0.3);
    z-index: 1;
}

.hero-logo {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.hero-logo img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-green);
    padding: 4rem 2rem 2rem 2rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.citation-line {
    width: 200px;
    height: 4px;
    background-color: var(--color-orange);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    margin: 0 0 2rem 0;
}

.citation {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-orange);
    line-height: 1.3;
    margin: 0 0 4rem 0;
}

.citation-subtitle {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-white);
    font-style: normal;
    display: block;
    margin-top: 0.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    min-height: 44px;
    background-color: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--size-medium);
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: rgba(10, 26, 20, 0.9);
}

.btn-primary:focus {
    outline: none;
}

@media (max-width: 768px) {
    .hero-header {
        height: 50vh;
        min-height: 300px;
        padding-top: 100px;
    }
    
    .hero-logo img {
        max-width: 180px;
    }
    
    .citation {
        font-size: 2rem;
    }
    
    .citation-subtitle {
        font-size: 1.25rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        min-height: 44px;
        font-size: var(--size-medium);
    }
}

@media (max-width: 480px) {
    .citation {
        font-size: 1.75rem;
    }
    
    .citation-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.25rem;
        min-height: 44px;
        font-size: var(--size-small);
    }
}
