/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Custom heading sizes */
h1, .h1 { font-size: calc(2.5rem + 1.5vw); }
h2, .h2 { font-size: calc(2rem + 1.25vw); }
h3, .h3 { font-size: calc(1.75rem + 1vw); }
h4, .h4 { font-size: calc(1.5rem + 0.75vw); }
h5, .h5 { font-size: calc(1.25rem + 0.5vw); }
h6, .h6 { font-size: calc(1rem + 0.25vw); }

/* Display classes */
.display-1 { font-size: calc(3.5rem + 2vw); }
.display-2 { font-size: calc(3rem + 1.75vw); }
.display-3 { font-size: calc(2.5rem + 1.5vw); }
.display-4 { font-size: calc(2rem + 1.25vw); }
.display-5 { font-size: calc(1.75rem + 1vw); }
.display-6 { font-size: calc(1.5rem + 0.75vw); }

/* Custom cursor styles */
.k-cursor {
    mix-blend-mode: difference;
}

.k-cursor-dot {
    background-color: #FF8C00 !important;
}

.k-cursor-outline {
    border-color: #FF8C00 !important;
}

/* Hero Section with Parallax */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    z-index: -1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.85), rgba(0, 128, 0, 0.75));
}

/* Countdown Styles */
.countdown-container {
    margin-top: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 0.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.countdown-label {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-item {
        padding: 1rem;
    }
}

/* Animation for numbers */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.countdown-number {
    animation: pulse 2s infinite;
} 