/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a18;
}

#topoCanvas {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInHero 0.8s ease-out forwards;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    color: #E8D5C4;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #A39A8F;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-section .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1.5px solid #B8860B;
    background: transparent;
    color: #B8860B;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-section .btn:hover {
    background-color: #B8860B;
    color: #1a1a18;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .hero-section .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 350px;
    }

    .hero-content {
        padding: 1rem;
    }
}