.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5.75) blur(1px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 55, 40, 0.7), rgba(212, 175, 55, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--spacing-large);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-medium);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-title-line {
    display: block;
    text-align: center;
    
    /* Special effects */
    background: linear-gradient(45deg, #2f270c, #4A3728, #070706);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s ease-in-out infinite;
    letter-spacing: 0.05em;
}

.hero-title-line:nth-child(1) {
    font-size: 2.5rem;
}

.hero-title-line:nth-child(2) {
    font-size: 2rem;
    margin: -0.5rem 0;
}

.hero-title-line:nth-child(3) {
    font-size: 3rem;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-large);
    opacity: 0.9;
    
    /* Special effects */
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    
    /* Elegant text reveal effect */
    overflow: hidden;
    background: linear-gradient(to right, #090806, #4A3728, #070706);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: subtitleReveal 3s ease-in-out infinite;
    
    /* Decorative underline */
    &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.5s ease;
    }
    
    &:hover::after {
        transform: scaleX(1);
    }
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: var(--spacing-small) var(--spacing-large);
    border-radius: 5px;
    transition: var(--transition-smooth);
    font-weight: bold;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-secondary {
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn:hover {
    transform: scale(1.05);
}

.about-hero .hero-background {
    margin-top: 40px;
}

@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@keyframes subtitleReveal {
    0%, 100% {
        background-position: -100% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}
