/* ========================================
   JAMES PITTS BAND - PURE TAILWIND CSS
   ======================================== */

/* Header Logo */
.header-logo {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.1);
}

/* Navigation Links - now handled by Tailwind classes */

/* Buttons */
.btn-primary {
    background-color: #ea580c; /* Tailwind orange-600 */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c2410c; /* Tailwind orange-700 */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background-color: #f3f4f6; /* Tailwind gray-100 */
    color: #374151; /* Tailwind gray-700 */
    padding: 12px 24px;
    border: 2px solid #fed7aa; /* Tailwind orange-200 */
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #ea580c; /* Tailwind orange-600 */
    color: white;
    transform: translateY(-2px);
}


/* Cards - now handled by Tailwind classes */

/* Section Backgrounds - now handled by Tailwind classes */

/* Text Colors - now handled by Tailwind classes */

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Reviews Ticker Animation */
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    16.66% {
        transform: translateY(-128px);
    }
    33.33% {
        transform: translateY(-256px);
    }
    50% {
        transform: translateY(-384px);
    }
    66.66% {
        transform: translateY(-512px);
    }
    83.33% {
        transform: translateY(-640px);
    }
    100% {
        transform: translateY(-768px);
    }
}

.animate-scroll {
    animation: scroll 24s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Spotify Player Styling - now handled by Tailwind classes */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dark .cookie-banner {
    background-color: #374151; /* Tailwind gray-700 */
    border-top-color: #4b5563; /* Tailwind gray-600 */
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #ea580c; /* Tailwind orange-600 */
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}