@font-face {
    font-family: 'FrizQuadrata';
    src: url('../assets/fonts/FrizQuadrataStdMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
}

.font-wow, .font-friz {
    font-family: 'FrizQuadrata', 'Poppins', sans-serif !important;
    color: #f0c420;
}

.font-wow-text {
    font-family: 'FrizQuadrata', 'Poppins', sans-serif !important;
    color: #f0c420;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(240, 196, 32, 0.5);
    }
    50% { 
        text-shadow: 0 0 30px rgba(240, 196, 32, 0.7);
    }
}

@media (prefers-reduced-motion: reduce) {
    .float-animation, .glow-animation {
        animation: none;
    }
}

@media (max-width: 768px) {
    .float-animation {
        animation: float 8s ease-in-out infinite;
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.glow-animation {
    animation: glow 3s ease-in-out infinite;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f0c420, #b8860b);
    border-radius: 5px;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('../assets/images/bg-leather.jpg') repeat-y center top,
        linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 26, 0.4) 100%);
    background-size: 2400px 512px;
    z-index: -1;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 50%, rgba(10, 10, 10, 0.2) 100%);
    pointer-events: none;
}

.gold-hover {
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gold-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #f0c420, #b8860b);
    transition: transform 0.3s ease;
}

.gold-hover:hover {
    color: #f0c420;
    transform: translateY(-1px);
}

.gold-hover:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Custom cursor */
* {
    cursor: url('../assets/cursors/gam372.cur'), auto;
}

button, a, [role="button"] {
    cursor: url('../assets/cursors/gam372.cur'), pointer;
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(240, 196, 32, 0.8) 0%, rgba(240, 196, 32, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 15s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.particle:nth-child(odd) {
    animation-duration: 20s;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.6) 0%, rgba(184, 134, 11, 0) 70%);
}

.particle:nth-child(even) {
    animation-duration: 25s;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, rgba(255, 107, 53, 0) 70%);
}

/* Timeline styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f0c420, #b8860b, #f0c420);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    background: rgba(26, 26, 26, 0.3);
    border: 2px solid rgba(240, 196, 32, 0.2);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    max-width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid rgba(26, 26, 26, 0.3);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    max-width: 45%;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid rgba(26, 26, 26, 0.3);
}

.timeline-date {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #f0c420, #b8860b);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-family: 'FrizQuadrata', serif;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: 52%;
}

.timeline-item:nth-child(even) .timeline-date {
    left: 52%;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 20px;
        max-width: calc(100% - 80px);
    }
    
    .timeline-item .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
        right: auto;
    }
    
    .timeline-item .timeline-date,
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        position: relative;
        margin-bottom: 1rem;
        left: auto !important;
        right: auto !important;
        transform: none;
    }
}



