/* 
   Miami Music Week - Extended Styles
   Extends BassAtlas base styles with tropical/Miami aesthetic
*/

/* MMW-Specific CSS Variables */
:root {
    --mmw-sunset-orange: #ff6b35;
    --mmw-sunset-pink: #ff0080;
    --mmw-sunset-purple: #7b2cbf;
    --mmw-ocean-blue: #00b4d8;
    --mmw-palm-green: #2d6a4f;
    --mmw-sand: #f4e8c1;
    --mmw-gradient-sunset: linear-gradient(135deg, #ff6b35 0%, #ff0080 50%, #7b2cbf 100%);
    --mmw-gradient-ocean: linear-gradient(180deg, #00b4d8 0%, #0077b6 100%);
    --mmw-gradient-night: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2d1b4e 100%);

    /* Ultra Stage Colors */
    --stage-mainstage: linear-gradient(135deg, #ff6b35 0%, #ff0080 100%);
    --stage-mainstage-solid: #ff6b35;
    --stage-worldwide: linear-gradient(135deg, #a7298b 0%, #ec13da 100%);
    --stage-worldwide-solid: #f40bf0;
    --stage-megastructure: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --stage-megastructure-solid: #757070;
    --stage-cove: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    --stage-cove-solid: #00b4d8;
    --stage-live: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    --stage-live-solid: #9d4edd;
    --stage-radio: linear-gradient(135deg, #474685 0%, #1b39af 100%);
    --stage-radio-solid: #3253d8;
    --stage-oasis: linear-gradient(135deg, #3ec286 0%, #40916c 100%);
    --stage-oasis-solid: #40916c;
}

/* MMW Header Override */
.mmw-header {
    background: var(--mmw-gradient-night);
    border-bottom: 3px solid transparent;
    border-image: var(--mmw-gradient-sunset) 1;
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.mmw-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mmw-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mmw-title {
    font-size: 2.8rem;
    font-weight: bold;
    background: var(--mmw-gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin: 0;
    letter-spacing: 2px;
}

.mmw-year {
    font-size: 1.4rem;
    color: var(--mmw-ocean-blue);
    font-weight: bold;
    padding: 5px 15px;
    border: 2px solid var(--mmw-ocean-blue);
    border-radius: 25px;
}

.mmw-dates {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 10px 0 0 0;
    text-align: center;
}

/* Back to BassAtlas Link */
.back-to-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.back-to-main:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    text-decoration: none;
}

/* =============================================
   MMW Navigation - Desktop & Mobile
   ============================================= */

.mmw-nav {
    background: rgba(10, 10, 26, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.mmw-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Hamburger Menu Button - Hidden on Desktop */
.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--mmw-sunset-orange);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
}

.nav-toggle .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mmw-sunset-orange);
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mmw-sunset-orange);
    position: absolute;
    transition: all 0.3s ease;
}

.nav-toggle .hamburger::before {
    top: -8px;
}

.nav-toggle .hamburger::after {
    bottom: -8px;
}

/* Hamburger Animation when Open */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Navigation Links */
.mmw-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mmw-nav a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: block;
}

.mmw-nav a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--mmw-sunset-orange);
    color: var(--mmw-sunset-orange);
    text-decoration: none;
}

.mmw-nav a.active {
    background: var(--mmw-gradient-sunset);
    color: var(--bg-dark);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    /* Remove sticky on mobile */
    .mmw-nav {
        position: relative;
        top: auto;
        padding: 10px 0;
    }

    /* Show hamburger button */
    .nav-toggle {
        display: block;
    }

    /* Hide nav by default on mobile */
    .mmw-nav ul {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 15px 20px;
        margin-top: 50px;
        background: rgba(10, 10, 26, 0.98);
        border-radius: 12px;
    }

    /* Show nav when active */
    .mmw-nav ul.nav-open {
        display: flex;
    }

    .mmw-nav li {
        width: 100%;
    }

    .mmw-nav a {
        text-align: center;
        padding: 12px 20px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
    }

    .mmw-nav a:hover {
        background: rgba(255, 107, 53, 0.3);
    }

    .mmw-nav a.active {
        background: var(--mmw-gradient-sunset);
    }
}

/* MMW Hero Section */
.mmw-hero {
    background: var(--mmw-gradient-night);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 0;
}

.mmw-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(0, 180, 216, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.mmw-hero h1 {
    font-size: 3rem;
    background: var(--mmw-gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
}

.mmw-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Day Selector Tabs */
.day-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.day-tab {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: var(--text-primary);
}

.day-tab:hover {
    border-color: var(--mmw-sunset-orange);
    background: rgba(255, 107, 53, 0.1);
}

.day-tab.active {
    background: var(--mmw-gradient-sunset);
    color: var(--bg-dark);
    border-color: transparent;
}

.day-tab .day-name {
    display: block;
    font-size: 1rem;
}

.day-tab .day-date {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Event Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--mmw-gradient-sunset);
    border-radius: 3px;
}

.timeline-block {
    position: relative;
    margin-bottom: 30px;
}

.timeline-time {
    position: absolute;
    left: -30px;
    width: 24px;
    height: 24px;
    background: var(--mmw-sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-time::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--bg-dark);
    border-radius: 50%;
}

.time-label {
    display: inline-block;
    background: var(--bg-card);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--mmw-sunset-orange);
    font-weight: bold;
    margin-bottom: 10px;
    border: 1px solid var(--mmw-sunset-orange);
}

/* Event Cards - Side Layout */
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 10px 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.event-card:hover {
    border-color: var(--mmw-sunset-pink);
    box-shadow: 0 5px 25px rgba(255, 0, 128, 0.2);
    transform: translateY(-2px);
}

.event-card.featured {
    border-left: 4px solid var(--mmw-sunset-orange);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.event-flyer-container {
    width: 200px;
    min-width: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 0, 128, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.event-flyer-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.event-card-content {
    flex: 1;
    padding: 20px;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.event-name {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    margin: 0;
}

.event-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-free {
    background: var(--mmw-palm-green);
    color: white;
}

.badge-ticketed {
    background: var(--mmw-sunset-pink);
    color: white;
}

.badge-sold-out {
    background: #666;
    color: #ccc;
}

.badge-vip {
    background: var(--accent-yellow);
    color: var(--bg-dark);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 10px 0;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-artists {
    margin: 15px 0;
}

.event-artists h4 {
    color: var(--mmw-sunset-orange);
    font-size: 0.9rem;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.artist-tag {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.artist-tag:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

.artist-tag.headliner {
    background: var(--mmw-gradient-sunset);
    border: none;
    color: white;
    font-weight: bold;
}

.event-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.event-link {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-link.primary {
    background: var(--mmw-gradient-sunset);
    color: white;
}

.event-link.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

.event-link.secondary {
    border: 2px solid var(--mmw-sunset-orange);
    color: var(--mmw-sunset-orange);
    background: rgba(255, 107, 53, 0.1);
    font-weight: bold;
}

.event-link.secondary:hover {
    background: var(--mmw-sunset-orange);
    color: var(--bg-dark);
    text-decoration: none;
}

/* Responsive: Stack vertically on mobile */
@media screen and (max-width: 600px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-flyer-container {
        max-height: 300px;
        width: 100%;
        min-width: 100%;
    }

    .event-flyer-container img {
        max-height: 300px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Ultra-Specific Styles */
.stage-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.stage-header {
    background: var(--mmw-gradient-sunset);
    padding: 15px 20px;
    color: var(--bg-dark);
}

.stage-header h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.stage-header p {
    margin: 5px 0 0 0;
    opacity: 0.8;
    font-size: 0.9rem;
    color: white;
}

.stage-content {
    padding: 20px;
}

.set-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.set-time:last-child {
    border-bottom: none;
}

.set-time .time {
    color: var(--mmw-sunset-orange);
    font-weight: bold;
    min-width: 100px;
}

.set-time .artist {
    flex: 1;
    color: var(--text-primary);
}

.set-time .artist.headliner {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
}

.set-time .add-btn {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 5px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.set-time .add-btn:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

.set-time .add-btn.added {
    background: var(--mmw-palm-green);
    border-color: var(--mmw-palm-green);
    color: white;
}

/* Schedule Builder Styles */
.schedule-builder {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid var(--mmw-sunset-orange);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.schedule-header h2 {
    margin: 0;
    color: var(--mmw-sunset-orange);
    text-align: left;
}

.schedule-actions {
    display: flex;
    gap: 10px;
}

.schedule-actions button {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-export {
    background: var(--mmw-ocean-blue);
    border: none;
    color: white;
}

.btn-export:hover {
    background: #0096c7;
}

.btn-clear {
    background: transparent;
    border: 1px solid #ff4444;
    color: #ff4444;
}

.btn-clear:hover {
    background: #ff4444;
    color: white;
}

.schedule-grid {
    display: grid;
    gap: 15px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--mmw-sunset-orange);
}

.schedule-item-info h4 {
    margin: 0 0 5px 0;
    color: var(--accent-cyan);
}

.schedule-item-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.schedule-item .remove-btn {
    background: transparent;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.schedule-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.filter-group select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--mmw-sunset-orange);
}

/* Lodging Cards */
.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.lodging-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.lodging-card:hover {
    border-color: var(--mmw-ocean-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

.lodging-card-header {
    background: var(--mmw-gradient-ocean);
    padding: 20px;
    color: white;
}

.lodging-card-header h3 {
    margin: 0 0 5px 0;
    color: white;
}

.lodging-card-header .price-range {
    font-size: 0.9rem;
    opacity: 0.9;
}

.lodging-card-content {
    padding: 20px;
}

.lodging-pros {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lodging-pros li {
    padding: 5px 0 5px 25px;
    position: relative;
}

.lodging-pros li::before {
    content: "\2713";
    color: var(--mmw-palm-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.lodging-cons li::before {
    content: "\2717";
    color: #ff4444;
}

/* Transport Options */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.transport-option {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.transport-option:hover {
    border-color: var(--mmw-sunset-pink);
}

.transport-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.transport-option h3 {
    color: var(--accent-cyan);
    margin: 0 0 10px 0;
}

.transport-option .price {
    color: var(--mmw-sunset-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%);
    border: 1px solid var(--mmw-ocean-blue);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.info-box.warning {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    border-color: var(--mmw-sunset-orange);
}

.info-box h4 {
    color: var(--mmw-ocean-blue);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box.warning h4 {
    color: var(--mmw-sunset-orange);
}

/* Groups/Community Section */
.login-form {
    max-width: 400px;
    margin: 40px auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--mmw-sunset-orange);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--mmw-gradient-sunset);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.4);
}

/* Group Cards */
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.group-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.group-header {
    background: var(--mmw-gradient-sunset);
    padding: 20px;
    color: white;
}

.group-header h3 {
    margin: 0;
    color: white;
}

.group-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.group-content {
    padding: 20px;
}

.group-plans {
    margin: 15px 0;
}

.group-plans h4 {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.plan-tag {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin: 3px;
    color: var(--accent-purple);
}

.btn-join {
    width: 100%;
    padding: 12px;
    background: var(--mmw-ocean-blue);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background: #0096c7;
}

/* Quick Stats */
.stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--mmw-gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* MMW Footer Addition */
.mmw-footer {
    background: var(--mmw-gradient-night);
    border-top: 3px solid transparent;
    border-image: var(--mmw-gradient-sunset) 1;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .mmw-title {
        font-size: 2rem;
    }
    
    .mmw-hero h1 {
        font-size: 2rem;
    }
    
    .day-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .day-tab {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .event-header {
        flex-direction: column;
    }
    
    .schedule-header {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 5px;
    }
    
    .timeline-time {
        left: -20px;
        width: 18px;
        height: 18px;
    }
}

/* Product Page Styles */
.product-category {
    margin: 30px 0;
}

.product-category h2 {
    margin-bottom: 15px;
}

.product-category > p {
    margin-bottom: 25px;
    max-width: 800px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.product-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--mmw-sunset-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.product-card.featured {
    border: 2px solid var(--mmw-sunset-orange);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.product-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 0, 128, 0.1) 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.product-price {
    background: var(--mmw-gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1rem;
}

.product-content {
    padding: 20px;
}

.product-content > p {
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-pros {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.product-pros li {
    padding: 6px 0 6px 25px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-pros li::before {
    content: "\2713";
    color: var(--mmw-palm-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--mmw-gradient-sunset);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.product-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive adjustments for product grid */
@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MMW Logo in Header */
.mmw-logo {
    width: 100px;
    height: auto;
    border-radius: 1px;
}

/* Lineup Flyer Section */
.lineup-flyer {
    text-align: center;
    margin: 30px 0;
}

.lineup-flyer img {
    max-width: 100%;
    height: 1250px;
    border-radius: 15px;
    border: 2px solid var(--mmw-sunset-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.lineup-flyer-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    border: 2px dashed var(--mmw-sunset-orange);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: var(--text-secondary);
}

.lineup-flyer-placeholder h3 {
    color: var(--mmw-sunset-orange);
    margin-bottom: 10px;
}

/* Event Flyer Image */
.event-flyer {
    width: 100%;
    max-width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.event-flyer-placeholder {
    width: 100%;
    max-width: 300px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 0, 128, 0.1) 100%);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Product Image */
.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid var(--border-color);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 0, 128, 0.05) 100%);
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--accent-purple);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.disclaimer-box h4 {
    color: var(--accent-purple);
    margin: 0 0 10px 0;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.disclaimer-box a {
    color: var(--accent-cyan);
}

/* Header Logo Placeholder */
.mmw-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 0, 128, 0.3) 100%);
    border: 2px dashed var(--mmw-sunset-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mmw-hero, .event-card, .stage-card, .lodging-card, .group-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Stagger animations */
.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }