html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    margin: 0;
    padding: 0;
}


h1, h2, h3, .font-cinzel {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
}

body, p, .font-raleway {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.bg-noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 50; opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.reveal-on-scroll {
    opacity: 0; transform: translateY(30px); transition: all 1s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1; transform: translateY(0);
}

.tour-link .indicator {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    transition: all 0.3s ease;
}

.tour-link:hover .indicator {
    background-color: #D4AF37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.tour-link.active .indicator {
    background-color: #D4AF37;
    transform: scale(1.6);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

.tour-link.active .tour-name {
    color: #D4AF37;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.bg-romantic-gradient {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,1) 85%);
}

.gold-shine {
    background: linear-gradient(to right, #D4AF37 0%, #fff 50%, #D4AF37 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a; 
}

::-webkit-scrollbar-thumb {
    background: #D4AF37; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F3E5AB; 
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    will-change: opacity, transform;
}

::selection {
    background-color: rgba(212, 175, 55, 0.3);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}