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

html {
    background: transparent;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
    overflow-x: hidden;
    background: transparent;
}

/* Navigation Bar Styles - MOBILE FIRST */
.navbar {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 12px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Links - Desktop View */
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links.left {
    justify-content: flex-start;
}

.nav-links.right {
    justify-content: flex-end;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s ease;
    padding: 12px 0;
}

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

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px 0;
    margin: 10px 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dropdown-item:hover {
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    padding-left: 25px;
}

/* Logo Styles */
.logo {
    flex-shrink: 0;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

.logo-text {
    display: block;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
}

.logo-main {
    font-size: 14px;
    font-weight: 900;
    color: white;
}

.logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.logo-tagline {
    font-size: 8px;
    font-weight: 400;
    color: #ccc;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.9;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

/* Upcoming Shows Section */
.upcoming-shows-section {
    background: #000;
    padding: 60px 0;
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    color: white;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Make just the UPCOMING SHOWS heading larger on desktop */
.upcoming-shows-section .section-title {
    font-size: 56px;
    letter-spacing: 4px;
}

/* Slider Section */
.slider-section {
    background: #000;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 12s infinite;
    gap: 0;
    padding: 0;
}

.slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.slide-1 {
    background-image: url('images/ali.jpg');
}

.slide-2 {
    background-image: url('images/ali.jpg');
}

.slide-3 {
    background-image: url('images/ali.jpg');
}

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-33.333%); }
    45% { transform: translateX(-33.333%); }
    50% { transform: translateX(-66.666%); }
    70% { transform: translateX(-66.666%); }
    75% { transform: translateX(-100%); }
    95% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.ticket-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.ticket-button button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.ticket-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

/* Team Limitless Section */
.team-limitless-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 60px 0;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.left-content {
    text-align: center;
    order: 1;
}

.center-content {
    order: 2;
}

.right-content {
    order: 3;
    width: 100%;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    line-height: 0.9;
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: white;
    margin: 0 0 30px 0;
    font-weight: 400;
    line-height: 1.4;
}

.about-us-circle {
    width: 150px;
    height: 150px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-us-circle:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.circle-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-text {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: 1px;
}

.arrow {
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.stats-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.stat-item, .pink-section, .dark-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.pink-section {
    background: rgba(255, 20, 147, 0.3);
}

.dark-section {
    background: rgba(0, 0, 0, 0.2);
}

.stat-item h3, .pink-section h3, .dark-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
    order: 2;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    line-height: 1;
    order: 1;
}

.vertical {
    writing-mode: horizontal-tb;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    order: 1;
    margin: 0 0 10px 0;
}

/* Past Events Section */
.past-events-section {
    background: #000;
    padding: 60px 0;
    color: white;
    width: 100%;
}

.events-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.events-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.events-description {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* Image Slider Section */
.image-slider-section {
    background: #000;
    padding: 20px 0;
    overflow: visible;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

.slider-wrapper {
    position: relative;
    overflow: visible;
    border-radius: 15px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    width: 100%;
    padding: 0;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    height: 300px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ticket-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide:hover .ticket-button {
    opacity: 1;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-btn:hover {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

.slide:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.next-btn:hover {
    background: rgba(255, 69, 0, 0.3);
    border: 1px solid rgba(255, 69, 0, 0.5);
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* 100+ Section */
.number-section {
    background: #000;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-container {
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
}

.number-with-images {
    position: relative;
    max-width: 100%;
    margin: 0 auto 30px auto;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.number-side-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.number-side-image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    pointer-events: auto;
    animation: float 3s ease-in-out infinite;
}

.number-side-image:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateY(-3px) rotate(-1deg);
    }
    75% {
        transform: translateY(-7px) rotate(0.5deg);
    }
}

.number-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 100+ Side Images Positioning */
.left-number-images .number-side-image:nth-child(1) {
    top: 10px;
    left: 10px;
    width: 120px;
    height: 90px;
    z-index: 1;
}

.left-number-images .number-side-image:nth-child(2) {
    bottom: 10px;
    left: 20px;
    width: 80px;
    height: 60px;
    animation-delay: 0.5s;
}

.right-number-images .number-side-image:nth-child(1) {
    top: 15px;
    right: 10px;
    width: 70px;
    height: 50px;
    animation-delay: 1s;
}

.right-number-images .number-side-image:nth-child(2) {
    bottom: 15px;
    right: 20px;
    width: 75px;
    height: 55px;
    animation-delay: 1.5s;
}

.center-number {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.number-image {
    max-width: 80%;
    height: 150px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.video-with-images {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.side-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.side-image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    pointer-events: auto;
    animation: float 3s ease-in-out infinite;
}

.side-image:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

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

/* Scattered Image Positioning */
.left-side .side-image:nth-child(1) {
    top: 10px;
    left: 10px;
    width: 100px;
    height: 75px;
    z-index: 1;
}

.left-side .side-image:nth-child(2) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 60px;
    height: 45px;
    animation-delay: 0.7s;
}

.left-side .side-image:nth-child(3) {
    bottom: 15px;
    left: 20px;
    width: 65px;
    height: 50px;
    animation-delay: 1.2s;
}

.right-side .side-image:nth-child(1) {
    top: 10px;
    right: 10px;
    width: 70px;
    height: 55px;
    animation-delay: 0.3s;
}

.right-side .side-image:nth-child(2) {
    top: 45%;
    right: 20px;
    transform: translateY(-50%);
    width: 60px;
    height: 45px;
    animation-delay: 0.9s;
}

.right-side .side-image:nth-child(3) {
    bottom: 15px;
    right: 20px;
    width: 65px;
    height: 50px;
    animation-delay: 1.6s;
}

.center-video {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

/* 100,000 Smiles Section */
.smiles-section {
    background: #000;
    padding: 60px 0;
    color: white;
    width: 100%;
}

.smiles-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.smiles-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.smiles-description {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 100%;
}

/* Image Collage Section */
.collage-section {
    background: #000;
    padding: 0;
    width: 100%;
}

.collage-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.collage-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.collage-item:nth-child(1) {
    height: 180px;
    grid-row: span 1;
}

.collage-item:nth-child(2) {
    height: 220px;
    grid-row: span 1;
}

.collage-item:nth-child(3) {
    height: 160px;
    grid-row: span 1;
}

.collage-item:nth-child(4) {
    height: 200px;
    grid-row: span 1;
}

.collage-item:nth-child(5) {
    height: 240px;
    grid-row: span 1;
}

.collage-item:nth-child(6) {
    height: 190px;
    grid-row: span 1;
}

.collage-item:nth-child(7) {
    height: 210px;
    grid-row: span 1;
}

.collage-item:nth-child(8) {
    height: 170px;
    grid-row: span 1;
}

.collage-item:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    padding: 40px 0 20px 0;
    color: white;
    width: 100%;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 30px;
}

.brand-banner {
    background: #ff1493;
    color: white;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.brand-subtitle {
    color: #cccccc;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-nav li {
    position: relative;
}

.footer-nav li::before {
    content: "•";
    color: #cccccc;
    margin-right: 5px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff1493;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-divider {
    height: 1px;
    background: #333;
    margin: 20px 0;
}

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

.footer-copyright p {
    color: white;
    font-size: 12px;
    margin: 0;
}

/* ===========================================
   TABLET AND DESKTOP STYLES
   =========================================== */

@media screen and (min-width: 768px) {
    /* Navigation Bar - Tablet */
    .navbar {
        top: 15px;
        left: 30px;
        right: 30px;
        width: calc(100% - 60px);
        padding: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        width: auto;
        gap: 30px;
    }
    
    .nav-links.left {
        justify-content: flex-start;
    }
    
    .nav-links.right {
        justify-content: flex-end;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 0;
    }
    
    .dropdown-menu {
    position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        text-align: left;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .logo {
        position: static;
        transform: none;
        margin: 0 30px;
    }
    
    .logo-text {
    display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 14px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }
    
    /* Hero Section - Tablet */
    .hero-title {
        font-size: 72px;
    }
    
    /* Team Limitless Section - Tablet */
    .team-limitless-section {
        height: 80vh;
        padding: 0;
    }
    
    .content-overlay {
        padding: 0 40px;
    }
    
    .main-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
    }
    
    .left-content {
        text-align: left;
        order: 1;
        max-width: 35%;
    }
    
    .center-content {
        order: 2;
    }
    
    .right-content {
        order: 3;
        max-width: 35%;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .stats-section {
        flex-direction: column;
    }
    
    .stat-number, .vertical {
        writing-mode: vertical-rl;
        font-size: 36px;
    }
    
    /* Slider Section - Tablet */
    .slide {
        flex: 0 0 45%;
    }
    
    /* 100+ Section - Tablet */
    .number-with-images {
        height: 250px;
    }
    
    .number-image {
        height: 180px;
        max-width: 60%;
    }
    
    .video-with-images {
        height: 300px;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
    
    /* Collage Section - Tablet */
    .collage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    /* Navigation Bar - Desktop */
    .navbar {
        top: 20px;
        left: 60px;
        right: 60px;
        width: calc(100% - 120px);
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    /* Hero Section - Desktop */
    .hero-title {
        font-size: 120px;
    }
    
    /* Team Limitless Section - Desktop */
    .team-limitless-section {
        height: 100vh;
    }
    
    .content-overlay {
        padding: 0 60px;
    }
    
    .main-title {
        font-size: 64px;
    }
    
    .about-us-circle {
        width: 200px;
        height: 200px;
    }
    
    .center-text {
        font-size: 18px;
    }
    
    .stats-section {
        flex-direction: row;
        height: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .stat-item, .pink-section, .dark-section {
        padding: 40px 30px;
        flex: 1;
        width: 100%;
    }
    
    .stat-number, .vertical {
        font-size: 48px;
    }
    
    /* Slider Section - Desktop */
    .slide {
        flex: 0 0 100%;
        height: 400px;
    }
    
    /* 100+ Section - Desktop */
    .number-with-images {
        height: 300px;
    }
    
    .number-image {
        height: 250px;
        max-width: 50%;
    }
    
    .video-with-images {
        height: 400px;
    }
    
    .video-wrapper iframe {
        height: 400px;
    }
    
    /* Collage Section - Desktop */
    .collage-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding: 0;
    }
    
    .collage-item:nth-child(1) {
        height: 280px;
    }
    
    .collage-item:nth-child(2) {
        height: 320px;
    }
    
    .collage-item:nth-child(3) {
        height: 260px;
    }
    
    .collage-item:nth-child(4) {
        height: 300px;
    }
    
    .collage-item:nth-child(5) {
        height: 340px;
    }
    
    .collage-item:nth-child(6) {
        height: 290px;
    }
    
    .collage-item:nth-child(7) {
        height: 310px;
    }
    
    .collage-item:nth-child(8) {
        height: 270px;
    }
    
    /* Footer - Desktop */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-nav ul {
        gap: 30px;
    }
    
    .footer-nav a {
        font-size: 14px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Large Desktop */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 140px;
    }
    
    .main-title {
        font-size: 72px;
    }
    
    .collage-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ===========================================
   MOBILE RESPONSIVENESS - CLEAN & SIMPLE
   =========================================== */

/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 25px;
    height: 20px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-logo .logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-logo .logo-text {
    font-size: 12px;
    line-height: 1.2;
}

.mobile-logo .logo-main {
    font-size: 14px;
    font-weight: 900;
}

.mobile-logo .logo-sub {
    font-size: 12px;
    font-weight: 600;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.close-icon {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff69b4;
    padding-left: 10px;
}

.mobile-nav-link.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.mobile-nav-link.dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-nav-link.dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown {
    margin: 10px 0;
}

.mobile-dropdown-menu {
    margin-top: 15px;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 10px;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.active {
    max-height: 300px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #ccc;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    color: #ff69b4;
    padding-left: 10px;
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Navbar adjustments */
    .navbar {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 15px 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 0;
        border: none;
    }
    
    .nav-container {
        padding: 0 20px;
        justify-content: space-between;
        max-width: none;
    }
    
    /* Logo smaller on mobile */
    .logo-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 8px;
    }
    
    .logo-main {
        font-size: 10px;
    }
    
    .logo-sub {
        font-size: 8px;
    }
    
    .logo-tagline {
        font-size: 6px;
    }
    
    /* Hide upcoming shows section on mobile */
    .upcoming-shows-section {
        display: none;
    }
}

/* ===========================================
   TOURS PAGE STYLES
   =========================================== */

/* Page Header Styles */
.page-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Tours Content */
.tours-content {
    background: #000;
    padding: 80px 0;
    color: white;
}

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

.tour-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.book-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.tour-info {
    padding: 25px;
}

.tour-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-dates {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #ff69b4;
    margin-bottom: 8px;
    font-weight: 600;
}

.tour-cities {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 15px;
    font-weight: 500;
}

.tour-description {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tour-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff69b4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tour Features Section */
.tour-features {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.95));
    padding: 80px 0;
    color: white;
    position: relative;
}

.tour-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 20, 147, 0.15));
    z-index: 1;
}

.tour-features .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 105, 180, 0.15);
    border: 1px solid rgba(255, 105, 180, 0.5);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff69b4;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-item p {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: #000;
    padding: 80px 0;
    color: white;
}

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

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-description {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ff1493;
    transform: translateY(-3px);
}

/* Tours Page Mobile Responsive */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .tours-content {
        padding: 60px 20px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tour-card {
        border-radius: 15px;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-info {
        padding: 20px;
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    .tour-features {
        padding: 60px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .mobile-menu-content {
        padding: 80px 20px 20px;
    }
    
    .mobile-menu-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
        min-height: 50px;
    }
    
    .mobile-logo {
        gap: 8px;
    }
    
    .mobile-logo .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .mobile-logo .logo-text {
        font-size: 10px;
    }
    
    .mobile-logo .logo-main {
        font-size: 12px;
    }
    
    .mobile-logo .logo-sub {
        font-size: 10px;
    }
    
    .mobile-menu-close {
        width: 35px;
        height: 35px;
    }
    
    .close-icon {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-menu-content {
        padding: 70px 15px 15px;
    }
    
    .mobile-menu-header {
        margin-bottom: 25px;
        padding-bottom: 10px;
        min-height: 45px;
    }
    
    .mobile-logo .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .mobile-logo .logo-text {
        font-size: 9px;
    }
    
    .mobile-logo .logo-main {
        font-size: 11px;
    }
    
    .mobile-logo .logo-sub {
        font-size: 9px;
    }
}
.developer-credit {
    margin-top: 10px !important;
    font-size: 12px !important;
    color: #999 !important;
}

.developer-link {
    color: #ff69b4 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ff1493 !important;
    text-decoration: underline;
}