
/* Vinyl Record Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, #333 0%, #222 70%, #111 100%),
        repeating-radial-gradient(circle at center, #555 0%, #555 1%, transparent 1%, transparent 2%);
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    opacity: 0.1;
    z-index: -1;
    animation: spin 20s linear infinite;
}

.vinyl::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: #4b5320;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
body {
    background-color: #4b5320; /* Army green */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 20%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,5 C70,5 90,25 90,45 C90,65 70,85 50,85 C30,85 10,65 10,45 C10,25 30,5 50,5 Z' fill='none' stroke='%23333' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='45' r='10' fill='none' stroke='%23333' stroke-width='0.5'/%3E%3C/svg%3E");
    background-attachment: fixed;
}
/* Vinyl Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0,0,0,0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b6b6b;
}

/* Custom Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Custom Styles for Components */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}
/* Gallery Hover Effect */
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
/* Video Card Styles */
.video-card {
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card video, .video-card iframe {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.video-card:hover video, .video-card:hover iframe {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Music platform buttons */
.bg-green-600 { background-color: #1DB954; }
.bg-green-700 { background-color: #1aa34a; }
.bg-black { background-color: #000; }
.bg-gray-800 { background-color: #1a1a1a; }
.bg-red-600 { background-color: #FF0000; }
.bg-red-700 { background-color: #e60000; }
.bg-blue-600 { background-color: #1a73e8; }
.bg-blue-700 { background-color: #1765cc; }
.bg-purple-600 { background-color: #000000; }
.bg-purple-700 { background-color: #000000; }
.bg-orange-500 { background-color: #FE7902; }
.bg-orange-600 { background-color: #e56b00; }
/* Video Modal Styles */
#videoModal {
    transition: opacity 0.3s ease;
}

#videoModal iframe {
    min-height: 400px;
}

@media (max-width: 768px) {
    #videoModal iframe {
        min-height: 250px;
    }
}

/* Ensure gallery images maintain aspect ratio */
#gallery img {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
}

/* About section image sizing */

 #about .md\:w-1\/2 {
    min-height: 600px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeUp {
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s; /* comes in AFTER hero title */
}
