:root {
    --black: #0a0a0a;
    --beige: #f5f5f0;
    --gold: #d4af37;
    --gray-800: #1f2937;
    --gray-700: #374151;
}

body {
    background-color: var(--black);
    color: var(--beige);
    font-family: 'Inter', sans-serif;
}

.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

.bg-black {
    background-color: var(--black);
}

.text-beige {
    color: var(--beige);
}

.text-gold {
    color: var(--gold);
}

.bg-gray-900\/50 {
    background-color: rgba(17, 24, 39, 0.5);
}

.border-gray-700\/50 {
    border-color: rgba(55, 65, 81, 0.5);
}

.hover\:border-gold\/30:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.hover\:bg-gold\/20:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.bg-gold\/10 {
    background-color: rgba(212, 175, 55, 0.1);
}

.border-gold\/30 {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.min-h-\[90vh\] {
    min-height: 90vh;
}

/* Video Background */
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Animation */
.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* Form Inputs */
input, textarea {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
/* Video Aspect Ratio */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.aspect-h-9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Video Iframe Styling */
iframe {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

iframe.scale-105 {
    transform: scale(1.05);
}

/* Video Card Styling */
.group:hover .font-space {
    color: var(--gold);
    transition: color 0.3s ease;
}

.group:hover .text-gray-400 {
    color: var(--beige);
    transition: color 0.3s ease;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Transitions */
.transition-all {
    transition-property: all;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

/* Responsive Typography */
@media (min-width: 768px) {
    .text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}