.hero-section-mono {
    background: transparent;
    position: relative;
}

.hero-overlay-mono {
    background: radial-gradient(circle at top left, rgba(151, 113, 67, 0.08), transparent 70%),
        linear-gradient(to bottom right, rgba(151, 113, 67, 0.05), rgba(255, 255, 255, 0.7));
}


.text-outline {
    color: #977143;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), -2px -2px 6px rgba(151, 113, 67, 0.15);
}

.btn-glass {
    background: rgba(151, 113, 67, 0.1);
    backdrop-filter: blur(8px);
    color: #977143;
    border: 1px solid rgba(151, 113, 67, 0.3);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(151, 113, 67, 0.2);
    transform: translateY(-3px);
}

.letter-spacing-lg {
    letter-spacing: 3px;
}

.hover-glow-mono:hover {
    box-shadow: 0 0 25px rgba(151, 113, 67, 0.3);
    transition: 0.4s;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-in-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}