/* Additional styles for footer and modals */

/* Hero Section */
.hero-section {
    position: relative;
    height: 1000px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

header.hero-visible ~ .hero-section {
    margin-top: 0;
    height: 100vh;
    min-height: 100vh;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
    max-width: 100%;
    max-height: 100%;
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(26,26,26,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1400px;
    padding: 0 40px;
    animation: heroEntrance 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-family: 'DelaGothicOne', cursive;
    font-size: 140px;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 30px;
    background: rgba(255, 193, 7, 0.1);
    padding: 20px 50px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 4;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    display: block;
    font-size: 24px;
    margin-top: 10px;
    transition: transform 0.3s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Story Section */
.story-section {
    padding: 150px 150px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow), var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.story-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.story-text h2 {
    font-family: 'DelaGothicOne', cursive;
    font-size: 64px;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow));
    border-radius: 2px;
}

.story-subtitle {
    font-family: 'AlibabaPuHuiTi-Bold', sans-serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-paragraph {
    font-size: 18px;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.story-img-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 30%;
    height: 400px;
}

.story-img-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.story-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-img-container:hover img {
    transform: scale(1.1);
}

.story-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.story-feature {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.story-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.1);
}

.story-feature-icon {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
}

.story-feature:hover .story-feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.story-feature h4 {
    font-family: 'AlibabaPuHuiTi-Bold', sans-serif;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.story-feature p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.6;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 30px;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.story-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

/* Intro Section */
.intro-section {
    padding: 150px 150px;
    text-align: center;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow), var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.mission-text {
    font-family: 'AlibabaPuHuiTi-Bold', sans-serif;
    font-size: 52px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.mission-highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.mission-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    z-index: -1;
    animation: highlightShimmer 2s infinite;
}

@keyframes highlightShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.intro-card {
    padding: 50px 40px;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.7s;
}

.intro-card:hover::before {
    left: 100%;
}

.intro-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.1);
    border-color: var(--primary-gold);
}

.intro-icon {
    font-size: 50px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    transition: transform 0.3s;
    display: inline-block;
}

.intro-card:hover .intro-icon {
    transform: scale(1.2) rotate(10deg);
}

.intro-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-family: 'AlibabaPuHuiTi-Bold';
    color: var(--text-dark);
}

.intro-card p {
    font-size: 18px;
    color: var(--text-grey);
    line-height: 1.6;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--success-green), #45a049);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.status-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Menu Section */
.menu-section {
    padding: 120px 150px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow), var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.section-title {
    font-family: 'DelaGothicOne', cursive;
    font-size: 64px;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.section-title span {
    color: var(--primary-gold);
}

.menu-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-grey);
    line-height: 1.8;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 30px;
    background: var(--bg-light);
    border-radius: 30px;
    font-family: 'AlibabaPuHuiTi-Bold';
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    color: var(--text-grey);
    border: 2px solid transparent;
    white-space: nowrap;
}

.category-tab.active, .category-tab:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
    border-color: var(--primary-gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
}

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

.item-badge + .featured-badge {
    top: 45px;
}

.item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .item-image img {
    transform: scale(1.1);
}

.item-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.item-name {
    font-size: 18px;
    font-family: 'AlibabaPuHuiTi-Bold';
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 10px;
}

.item-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-gold);
    font-family: 'AlibabaPuHuiTi-Bold';
    white-space: nowrap;
}

.item-description {
    color: var(--text-grey);
    line-height: 1.5;
    margin: 10px 0 15px;
    flex-grow: 1;
    font-size: 14px;
}

.item-note {
    font-size: 13px;
    color: var(--warning-orange);
    font-style: italic;
    margin-bottom: 10px;
}

.item-addons {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.add-to-order {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-family: 'AlibabaPuHuiTi-Bold';
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
}

.add-to-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.view-full-menu-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 25px;
    font-family: 'AlibabaPuHuiTi-Bold';
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    cursor: pointer;
    border: none;
}

.view-full-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

/* Merchandise Section */
.merch-section {
    padding: 150px 150px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.merch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow), var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.merch-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.merch-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 193, 7, 0.15);
}

.merch-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.merch-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.merch-card:hover .merch-image {
    transform: scale(1.1);
}

.merch-info {
    padding: 30px;
}

.merch-name {
    font-size: 24px;
    font-family: 'AlibabaPuHuiTi-Bold';
    margin-bottom: 15px;
    color: var(--text-dark);
}

.merch-price {
    color: var(--primary-gold);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.merch-colors {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.color-option:hover, .color-option.active {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.merch-sizes {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.size-option {
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'AlibabaPuHuiTi-Bold';
    min-width: 50px;
    text-align: center;
}

.size-option:hover, .size-option.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

/* Order Now Button */
.order-now-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-gold), #ff9800);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ffb74d, #ffa726);
}

.order-now-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.order-now-btn i {
    font-size: 20px;
}

.order-now-btn:hover i {
    transform: scale(1.1) rotate(-5deg);
    transition: transform 0.3s ease;
}

/* Pulse animation for order button */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 193, 7, 0.5);
    }
}

.merch-card:hover .order-now-btn {
    animation: pulse-gold 2s ease-in-out infinite;
}

.view-full-merch-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 25px;
    font-family: 'AlibabaPuHuiTi-Bold';
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    cursor: pointer;
    border: none;
}

.view-full-merch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .merch-section {
        padding: 80px 40px;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .merch-image {
        height: 300px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 150px 80px 100px 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.gallery-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 60px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.gallery-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow));
    margin: 25px auto 0;
    border-radius: 3px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--text-dark);
    border-radius: 30px;
    font-family: 'AlibabaPuHuiTi-Bold';
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    grid-auto-flow: row dense;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.15);
}

.gallery-item:hover .video-play-overlay {
    opacity: 1;
}

.gallery-item video:focus + .video-play-overlay {
    opacity: 1;
}

/* Video play overlay base styles */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
    border-radius: 25px;
}

.video-play-overlay > div {
    background: rgba(0,0,0,0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
}

.gallery-item:hover .video-play-overlay > div {
    transform: scale(1.1);
}

/* Show play overlay when video is paused on mobile */
@media (max-width: 1024px) {
    .gallery-item video.paused ~ .video-play-overlay,
    .gallery-item video:not([controls]) ~ .video-play-overlay {
        opacity: 0.7 !important;
    }

    /* Video loading state */
    .gallery-item video.loading ~ .video-play-overlay {
        opacity: 0.5 !important;
    }

    .gallery-item video.loading ~ .video-play-overlay > div::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 40px;
        border: 3px solid transparent;
        border-top: 3px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Ensure video is always visible on mobile */
    .gallery-item video {
        z-index: 1 !important;
        position: relative;
    }

    /* Hide play overlay when video is playing on mobile */
    .gallery-item video:not(.paused) ~ .video-play-overlay {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .video-play-overlay {
        z-index: 2 !important;
        cursor: pointer;
    }

    .video-badge {
        z-index: 3 !important;
        pointer-events: none;
    }
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.gallery-overlay h3,
.gallery-overlay p {
    pointer-events: auto;
}

.gallery-overlay h3 {
    margin: 0;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 22px;
}

.gallery-overlay p {
    margin: 10px 0 0 0;
    font-size: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.g-item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.g-item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.g-item-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.g-item-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.g-item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.g-item-6 { grid-column: 3 / 4; grid-row: 2 / 3; }
.g-item-7 { grid-column: 1 / 4; grid-row: 3 / 4; }

/* Music Section */
.music-section {
    padding: 150px 80px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    text-align: center;
    min-height: 100vh;
}

.music-section .section-title {
    color: white;
    font-family: 'DelaGothicOne', cursive;
    font-size: 64px;
    margin-bottom: 15px;
}

.music-section .section-title span {
    color: var(--primary-gold);
}

.music-section .section-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
}

.music-section p {
    color: #ccc;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.music-player {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.music-player:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.player-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'AlibabaPuHuiTi-Bold', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.player-header i {
    font-size: 28px;
}

.player-content {
    padding: 30px;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.hearthis-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hearthis-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'AlibabaPuHuiTi-Bold', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

.hearthis-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.mixtape-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mixtape-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mixtape-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.play-btn.playing {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'AlibabaPuHuiTi-Bold', sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Specials Section */
.specials-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.special-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
}

.special-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.special-content {
    padding: 25px;
}

.special-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.badge-special {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    color: #1A1A1A;
}

.badge-promotion {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
}

.badge-event {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: white;
}

.special-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.special-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.special-price {
    font-size: 28px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
    font-family: 'AlibabaPuHuiTi-Bold', sans-serif;
}

.special-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.special-dates {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Events Section */
.events-section {
    padding: 150px 80px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: white;
    position: relative;
}

.events-section .section-subtitle {
    text-align: center;
    font-size: 28px;
    color: #ccc;
    margin-top: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.event-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.event-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-info {
    padding: 30px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--primary-gold);
}

.event-date, .event-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-name {
    font-family: 'DelaGothicOne', cursive;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.event-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.event-venue, .event-price {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
}

/* Map Section */
.map-section {
    padding: 120px 150px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    height: 600px;
    margin-top: 50px;
}

#map-canvas {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.map-info h3 {
    color: var(--text-dark);
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 24px;
    margin-bottom: 15px;
}

.map-info p {
    color: var(--text-grey);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info i {
    color: var(--primary-gold);
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'AlibabaPuHuiTi-Bold';
    margin-top: 20px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.booking-modal.active {
    opacity: 1;
}

.booking-content {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.booking-modal.active .booking-content {
    transform: scale(1);
}

.booking-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-header h3 {
    font-family: 'DelaGothicOne';
    font-size: 24px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-booking {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 24px;
    color: var(--text-dark);
}

.close-booking:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.booking-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'MiSans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-booking {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-modal.active {
    opacity: 1;
}

.gallery-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.gallery-modal.active .modal-content {
    transform: scale(1);
}

.gallery-modal .modal-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-modal .close-modal,
.gallery-modal .prev-btn,
.gallery-modal .next-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.gallery-modal .close-modal:hover,
.gallery-modal .prev-btn:hover,
.gallery-modal .next-btn:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: scale(1.1);
}

.gallery-modal .close-modal {
    top: -70px;
    right: 0;
}

.gallery-modal .prev-btn {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-modal .next-btn {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

/* Cart Notification */
.cart-notification {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--success-green), #45a049);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    align-items: center;
    gap: 10px;
    font-family: 'AlibabaPuHuiTi-Bold';
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Social Widget */
.social-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    max-height: calc(100vh - 120px);
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transform: translateX(400px);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.social-widget.visible {
    transform: translateX(0);
}

.social-widget-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-widget-tabs {
    display: flex;
    gap: 10px;
}

.social-widget-tabs .tab-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    color: var(--text-dark);
}

.social-widget-tabs .tab-btn.active {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.close-widget-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    color: var(--text-dark);
}

.close-widget-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.social-widget-content {
    background: var(--white);
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.social-widget-content iframe {
    height: 100%;
    width: 100%;
    border: none;
    display: block;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.social-widget-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9997;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.social-widget-toggle i {
    font-size: 28px;
    color: var(--text-dark);
}

/* Footer / Info Section - Enhanced */
.info-section {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 120px 150px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    position: relative;
    border-top: 5px solid var(--primary-gold);
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow), var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.footer-brand h2 {
    font-family: 'DelaGothicOne';
    font-size: 40px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px;
}

.footer-col h3 {
    font-family: 'AlibabaPuHuiTi-Bold';
    font-size: 22px;
    margin-bottom: 35px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--honey-yellow));
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-contact-list li:hover {
    color: var(--primary-gold);
}

.footer-contact-list i {
    color: var(--primary-gold);
    font-size: 22px;
    width: 30px;
    flex-shrink: 0;
}

.service-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tag {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.tag:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.1);
    border-color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 20px;
    }

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

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

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .service-tags {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .booking-content {
        width: 95%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-modal .prev-btn,
    .gallery-modal .next-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gallery-modal .close-modal {
        top: -60px;
    }

    .gallery-modal .prev-btn {
        left: -60px;
    }

    .gallery-modal .next-btn {
        right: -60px;
    }

    .social-widget {
        width: 280px;
        bottom: 100px;
        right: 10px;
        max-height: calc(100vh - 120px);
    }

    .social-widget-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    /* Disable custom cursor on mobile */
    body, .cursor-dot, .cursor-ring, .cursor-wings {
        cursor: auto !important;
    }

    .cursor-dot, .cursor-ring, .cursor-wings {
        display: none !important;
    }

    /* Ensure all sections are visible */
    .page-section {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Fix for grid layouts */
    .menu-grid, .merch-grid, .events-grid, .gallery-grid {
        display: grid !important;
    }

    /* Ensure images load properly */
    .story-img-container img, .item-image img, .merch-image, .event-image img, .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Gallery video fix on mobile - Enhanced for MP4 */
    .gallery-item,
    .gallery-item.has-video {
        position: relative !important;
        background: #000;
        border-radius: 15px;
        overflow: hidden !important;
        min-height: 280px;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1 !important;
        /* Override desktop grid positioning on mobile */
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .gallery-item video {
        width: 100% !important;
        height: 100% !important;
        min-height: 280px;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #000;
        border-radius: 15px;
        position: relative !important;
        z-index: 1 !important;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .video-play-overlay {
        opacity: 0.7 !important;
        pointer-events: auto !important;
    }

    .gallery-item video:not([controls]) ~ .video-play-overlay {
        opacity: 1 !important;
    }

    /* Video badge for mobile */
    .video-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 193, 7, 0.9);
        color: var(--text-dark);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        display: flex !important;
        align-items: center;
        gap: 5px;
        z-index: 3;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    /* Enhanced play button for mobile videos */
    .video-play-overlay > div {
        background: rgba(255, 193, 7, 0.9);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
        font-size: 20px;
        transition: transform 0.3s, background 0.3s;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    }

    .gallery-item:active .video-play-overlay > div {
        transform: scale(0.9);
    }

    /* Hero Section */
    .hero-section {
        height: 100vh;
        min-height: -webkit-fill-available;
    }

    .hero-title {
        font-size: 48px !important;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 18px !important;
        padding: 15px 30px;
    }

    .hero-scroll {
        bottom: 30px;
        font-size: 14px;
        padding: 12px 25px;
    }

    /* Section Padding */
    .page-section {
        padding: 60px 20px !important;
    }

    /* Music Section Mobile */
    .music-section {
        padding: 60px 20px !important;
        min-height: auto;
    }

    /* Specials Section Mobile */
    .specials-section {
        padding: 60px 20px !important;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }

    .special-card {
        max-width: 100%;
    }

    /* Section Titles */
    .section-title {
        font-size: 36px !important;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 16px !important;
    }

    /* Story Section Mobile */
    .story-section {
        padding: 60px 20px !important;
    }

    .story-grid {
        flex-direction: column;
        gap: 40px;
    }

    .story-text h2 {
        font-size: 36px !important;
    }

    .story-subtitle {
        font-size: 20px;
    }

    .story-paragraph {
        font-size: 16px;
    }

    .story-images {
        flex-direction: column;
        width: 100%;
    }

    .story-img-container {
        width: 100%;
        height: 250px;
    }

    .story-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-feature {
        padding: 20px;
    }

    /* Intro Section Mobile */
    .intro-section {
        padding: 60px 20px !important;
    }

    .mission-text {
        font-size: 28px !important;
        line-height: 1.4;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Menu Section */
    .menu-section {
        padding: 60px 20px !important;
    }

    .menu-categories {
        flex-wrap: wrap;
        gap: 10px;
    }

    .category-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .item-name {
        font-size: 16px;
    }

    .item-price {
        font-size: 18px;
    }

    /* Merch Section */
    .merch-section {
        padding: 60px 20px !important;
    }

    .merch-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .merch-image {
        height: 300px;
    }

    .merch-colors, .merch-sizes {
        flex-wrap: wrap;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 60px 20px !important;
    }

    .gallery-title {
        font-size: 36px !important;
    }

    .gallery-filter {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        flex: 0 1 auto;
        white-space: nowrap;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        padding: 0 10px;
        display: grid !important;
    }

    .gallery-item {
        height: 300px;
        border-radius: 15px;
        overflow: hidden !important;
        background: #000;
        position: relative !important;
        visibility: visible !important;
        z-index: 1 !important;
        /* Override desktop grid positioning on mobile */
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* Video-specific styling for mobile grid */
    .gallery-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .gallery-item.has-video {
        background: #000;
    }

    /* Events Section */
    .events-section {
        padding: 60px 20px !important;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-card {
        max-width: 100%;
    }

    .event-image {
        height: 200px;
    }

    /* Map Section */
    .map-section {
        padding: 60px 20px !important;
    }

    .map-container {
        padding: 0 !important;
        height: 400px;
        margin: 30px auto 0;
        max-width: 100%;
    }

    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin-top: 20px;
        border-radius: 15px;
    }

    /* Footer Section */
    .info-section {
        padding: 60px 20px !important;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand img {
        height: 60px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-col h3 {
        font-size: 18px;
    }

    .footer-contact-list li {
        font-size: 14px;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Buttons */
    .view-full-menu-btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    /* Modal Adjustments */
    .booking-content {
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Social widget on mobile - reposition */
    .social-widget {
        width: 85%;
        right: 7.5%;
        max-width: 350px;
        transform: translateX(0);
        transition: transform 0.3s;
    }

    .social-widget.visible {
        transform: translateX(0);
        right: 7.5%;
    }

    .social-widget-toggle {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }

    /* Header Mobile */
    header {
        padding: 20px;
    }

    header.scrolled {
        padding: 15px 20px;
    }

    .logo-img {
        height: 50px;
    }

    /* Music Grid Mobile */
    .music-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .music-player {
        max-width: 100%;
    }

    .player-header {
        font-size: 16px;
        padding: 15px 20px;
    }

    .youtube-embed {
        padding-bottom: 56.25%;
    }

    .hearthis-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Download Section Mobile */
    .download-section {
        padding: 40px 20px;
    }

    .download-title {
        font-size: 28px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Menu Preview Grid Mobile */
    .menu-preview-grid {
        flex-direction: column;
        align-items: center;
    }

    .menu-preview-item {
        width: 100%;
        max-width: 300px;
    }

    .menu-preview-item img {
        width: 100%;
        height: auto;
    }
}

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

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    /* Gallery Modal */
    .gallery-modal .modal-content {
        width: 95%;
        height: 80vh;
    }

    .gallery-modal .close-modal {
        top: -40px;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .gallery-modal .prev-btn,
    .gallery-modal .next-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .gallery-modal .prev-btn {
        left: 10px;
    }

    .gallery-modal .next-btn {
        right: 10px;
    }

    /* Social Widget */
    .social-widget-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .social-widget {
        width: 90%;
        right: 5%;
        bottom: 80px;
        max-width: 320px;
        max-height: calc(100vh - 100px);
    }

    .social-widget-content iframe {
        height: 300px;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Cart Notification */
    .cart-notification {
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .hero-title {
        font-size: 36px !important;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 14px !important;
        padding: 12px 20px;
    }

    .section-title {
        font-size: 32px !important;
    }

    .section-subtitle {
        font-size: 14px !important;
    }

    .gallery-title {
        font-size: 32px !important;
    }

    .story-text h2 {
        font-size: 32px !important;
    }

    .story-subtitle {
        font-size: 18px;
    }

    .story-paragraph {
        font-size: 14px;
    }

    .story-img-container {
        height: 200px;
    }

    .story-feature-icon {
        font-size: 32px;
    }

    .story-feature h4 {
        font-size: 16px;
    }

    .story-btn {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .mission-text {
        font-size: 22px !important;
    }

    .intro-card h3 {
        font-size: 20px;
    }

    .intro-card p {
        font-size: 14px;
    }

    .gallery-filter {
        gap: 6px;
        padding: 0 5px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
        flex: 0 1 auto;
        white-space: nowrap;
    }

    .gallery-item {
        height: 280px;
        background: #000;
        border-radius: 15px;
        overflow: hidden !important;
        min-height: 280px;
        visibility: visible !important;
        position: relative !important;
        z-index: 1 !important;
        /* Override desktop grid positioning on mobile */
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .gallery-item video {
        width: 100% !important;
        height: 100% !important;
        min-height: 280px;
        background: #000;
        object-fit: cover;
        border-radius: 15px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .video-play-overlay {
        opacity: 0.7 !important;
        pointer-events: auto !important;
    }

    .gallery-item video:not([controls]) ~ .video-play-overlay {
        opacity: 1 !important;
    }

    /* Hide gallery overlay on video items for mobile */
    .gallery-item.has-video .gallery-overlay {
        pointer-events: none !important;
    }

    /* Enhanced play button for small screens */
    .video-play-overlay > div {
        background: rgba(255, 193, 7, 0.9);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    }

    .gallery-overlay {
        padding: 15px;
        pointer-events: none;
    }

    .gallery-overlay h3,
    .gallery-overlay p {
        pointer-events: auto;
        font-size: 16px;
    }

    .event-name {
        font-size: 18px;
    }

    .event-description {
        font-size: 14px;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .event-footer {
        flex-direction: column;
        gap: 8px;
    }

    .map-info h3 {
        font-size: 18px;
    }

    .map-info p {
        font-size: 13px;
    }

    .directions-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .footer-brand img {
        height: 50px;
    }

    .social-links {
        gap: 12px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Social widget on small mobile */
    .social-widget {
        width: 90%;
        right: 5%;
        bottom: 80px;
        max-height: calc(100vh - 100px);
        transform: translateX(150%);
        transition: transform 0.3s;
    }

    .social-widget.visible {
        transform: translateX(0);
        right: 5%;
    }

    .social-widget-toggle {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }

    .social-widget-content iframe {
        height: 250px;
    }

    .tag {
        font-size: 11px;
        padding: 5px 10px;
        width: 100%;
    }

    .merch-name {
        font-size: 16px;
    }

    .merch-price {
        font-size: 14px;
    }

    .color-option,
    .size-option {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .menu-item {
        padding: 15px;
    }

    .item-image {
        height: 180px;
    }

    .item-name {
        font-size: 16px;
    }

    .item-description {
        font-size: 13px;
    }

    .youtube-embed {
        border-radius: 10px;
    }

    .player-header {
        font-size: 14px;
        padding: 12px 15px;
    }

    .player-header i {
        font-size: 20px;
    }

    .player-content {
        padding: 20px;
    }

    .hearthis-player i {
        font-size: 48px !important;
    }

    .mixtape-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .play-btn {
        align-self: flex-end;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Loading screen */
    .loading-hive {
        width: 150px;
        height: 100px;
    }

    .hive-cell {
        width: 45px;
        height: 52px;
    }

    .cell-1 { left: 22px; }
    .cell-2 { left: 0; }
    .cell-3 { left: 45px; }
    .cell-4 { left: 22px; }
    .cell-5 { left: 22px; }

    .loading-text {
        font-size: 18px;
    }
}

/* Download Section Styles */
.download-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-title {
    font-family: 'DelaGothicOne', Impact, sans-serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.download-section p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-gold), var(--honey-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border: 2px solid transparent;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, var(--honey-yellow), var(--honey-gold));
}

.download-btn i {
    font-size: 20px;
}

.download-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .download-section {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .download-title {
        font-size: 28px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================
   IMAGE OPTIMIZATION STYLES
   ========================================== */

/* Lazy load fade-in effect */
img {
    transition: opacity 0.3s ease-in-out;
}

img:not(.loaded) {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

img.error {
    opacity: 0.5;
}

/* Background image lazy load */
[data-bg] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease-in-out;
}

/* Skeleton loader for images */
img, [data-bg] {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.05) 25%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(255,255,255,0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

img.loaded, [data-bg].loaded {
    background: none;
    animation: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Prevent layout shift */
img {
    aspect-ratio: attr(width) / attr(height);
}

/* Responsive images */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
}
