/* Footshufflerz Website Styles */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0A;
    color: #E4E4E7;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 61px;
    letter-spacing: -1.5px;
}

h2 {
    font-size: 49px;
    letter-spacing: -1px;
}

h3 {
    font-size: 31px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h4 {
    font-size: 24px;
    font-weight: 600;
}

p {
    font-size: 18px;
    margin-bottom: 16px;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: #00F0D0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #27272A;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 18px;
    color: #A1A1AA;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #E4E4E7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00F0D0;
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #E4E4E7;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0A0A;
    z-index: 999;
    padding: 48px 24px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 24px;
    color: #E4E4E7;
    padding: 16px 0;
    border-bottom: 1px solid #27272A;
}

/* Hero Section */
.hero {
    padding: 160px 0 96px;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
}

.hero-title {
    background: linear-gradient(135deg, #00F0D0, #60A5FA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 24px;
    color: #A1A1AA;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: #E4E4E7;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 96px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
    color: #E4E4E7;
}

/* Cards */
.player-card {
    background: #141414;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #27272A;
    transition: all 0.3s ease;
}

.player-card:hover {
    box-shadow: 0 0 24px 0px rgba(0, 240, 208, 0.1);
    transform: translateY(-2px);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.player-icon {
    width: 24px;
    height: 24px;
    color: #00F0D0;
}

.player-title {
    font-size: 24px;
    color: #E4E4E7;
    margin: 0;
}

/* Mixcloud & YouTube Containers */
.mixcloud-container iframe,
.youtube-container iframe {
    border-radius: 8px;
    background: #0A0A0A;
}

/* MP3 Player */
.mp3-player {
    background: #0A0A0A;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.track-info {
    margin-bottom: 24px;
}

.track-title {
    font-size: 20px;
    color: #E4E4E7;
    margin-bottom: 4px;
}

.track-artist {
    font-size: 16px;
    color: #A1A1AA;
    margin: 0;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.control-btn {
    background: none;
    border: none;
    color: #00F0D0;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover:not(:disabled) {
    background: rgba(0, 240, 208, 0.1);
    transform: scale(1.1);
}

.control-btn:disabled {
    color: #27272A;
    cursor: not-allowed;
}

.control-btn i {
    width: 24px;
    height: 24px;
}

.play-btn {
    background: #00F0D0;
    color: #0A0A0A;
    padding: 16px;
}

.play-btn:hover {
    background: #00D4BA;
    transform: scale(1.1);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.time-display {
    font-size: 14px;
    color: #A1A1AA;
    min-width: 40px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #27272A;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00F0D0, #60A5FA);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s ease;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-icon {
    width: 20px;
    height: 20px;
    color: #A1A1AA;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: #27272A;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #00F0D0;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #00F0D0;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Track List */
.track-list {
    background: #0A0A0A;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #27272A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.track-item:hover {
    background: rgba(0, 240, 208, 0.05);
}

.track-item.active {
    background: rgba(0, 240, 208, 0.1);
    border-left: 3px solid #00F0D0;
}

.track-item:last-child {
    border-bottom: none;
}

.track-item-title {
    font-size: 16px;
    color: #E4E4E7;
    margin: 0;
    flex: 1;
}

.track-item-duration {
    font-size: 14px;
    color: #A1A1AA;
    margin: 0;
}

/* Events Section */
.events-container {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background: #141414;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #27272A;
    transition: all 0.3s ease;
    gap: 24px;
}

.event-item:hover {
    box-shadow: 0 0 24px 0px rgba(0, 240, 208, 0.1);
    transform: translateY(-2px);
}

.event-date {
    text-align: center;
    min-width: 80px;
    background: #0A0A0A;
    border-radius: 12px;
    padding: 16px 8px;
    border: 1px solid #27272A;
}

.event-day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #00F0D0;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #A1A1AA;
    letter-spacing: 1px;
    margin-top: 4px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 20px;
    color: #E4E4E7;
    margin-bottom: 8px;
}

.event-location {
    font-size: 16px;
    color: #00F0D0;
    margin-bottom: 8px;
    font-weight: 500;
}

.event-description {
    font-size: 14px;
    color: #A1A1AA;
    margin: 0;
}

.cta-btn {
    background: #60A5FA;
    color: #0A0A0A;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #4F9CEB;
    transform: scale(1.05) translateY(-2px);
}

/* About Section */
.about-card {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    background: #141414;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid #27272A;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(20%);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    color: #00F0D0;
    margin-bottom: 24px;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #E4E4E7;
    margin-bottom: 20px;
}

.about-highlight {
    background: rgba(0, 240, 208, 0.1);
    border: 1px solid #00F0D0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 24px;
}

.highlight-text {
    color: #00F0D0;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    background: #141414;
    border-top: 1px solid #27272A;
    padding: 48px 0;
    margin-top: 96px;
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #0A0A0A;
    border: 1px solid #27272A;
    border-radius: 8px;
    color: #A1A1AA;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #00F0D0;
    color: #0A0A0A;
    border-color: #00F0D0;
    transform: translateY(-2px);
}

.social-link i {
    width: 24px;
    height: 24px;
}

.footer-text p {
    font-size: 14px;
    color: #A1A1AA;
    margin-bottom: 8px;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    p {
        font-size: 16px;
    }
    
    /* Header */
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    /* Sections */
    .section {
        padding: 64px 0;
    }
    
    .section-title {
        margin-bottom: 48px;
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 64px;
    }
    
    /* About Card */
    .about-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .about-image-container {
        order: -1;
    }
    
    /* Event Items */
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .event-date {
        min-width: auto;
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }
    
    /* Player Cards */
    .player-card {
        padding: 20px;
    }
    
    /* MP3 Player */
    .progress-container {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .time-display {
        text-align: left;
    }
    
    /* Container */
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 100px 0 48px;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .about-card {
        padding: 24px;
    }
    
    .player-card {
        padding: 16px;
    }
    
    .event-item {
        padding: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

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

::-webkit-scrollbar-track {
    background: #141414;
}

::-webkit-scrollbar-thumb {
    background: #27272A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00F0D0;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #00F0D0;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}