/* Main section styles */
#hero {
    position: relative;
    height: calc(100vh - 70px);;
    min-height: 500px;
    background-color: var(--secondary-color);
    background: radial-gradient(circle, transparent 20%, var(--secondary-color) 20%, var(--secondary-color) 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, var(--secondary-color) 20%, var(--secondary-color) 80%, transparent 80%, transparent) 42.5px 42.5px, linear-gradient(#392620 3.4000000000000004px, transparent 3.4000000000000004px) 0 -1.7000000000000002px, linear-gradient(90deg, #392620 3.4000000000000004px, var(--secondary-color) 3.4000000000000004px) -1.7000000000000002px 0;
    background-size: 85px 85px, 85px 85px, 42.5px 42.5px, 42.5px 42.5px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px; /* Offset for fixed header */
    overflow: hidden;
}

.hero-vignette {
    padding: 10%;
    background: radial-gradient(ellipse at center, var(--secondary-color) 40%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    backdrop-filter: blur(10px);
    background-color: var(--secondary-color);
    border-radius: 15px;
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.hero-title::before,
.hero-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
}

.hero-title::before {
    right: 100%;
    margin-right: 20px;
}

.hero-title::after {
    left: 100%;
    margin-left: 20px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    #hero {
        height: calc(30vh);
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title::before,
    .hero-title::after {
        width: 50px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}