/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=UnifrakturMaguntia&display=swap');

body {
    background-color: #000102;
    color: #E5E5E5;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.gothic-text {
    font-family: 'UnifrakturMaguntia', cursive;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Gold Glow Effect */
.gold-glow {
    text-shadow: 0 0 10px rgba(255, 236, 182, 0.3);
}

.gold-border-glow:hover {
    box-shadow: 0 0 15px rgba(255, 236, 182, 0.2);
}

/* Hide Scrollbar but allow scroll */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Helper para ícones SVG */
svg {
    display: inline-block;
    vertical-align: middle;
}