/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Beautiful Idle Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.02); opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 0 30px rgba(231, 76, 60, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes particles {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Floating particles background */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(231, 76, 60, 0.3);
    border-radius: 50%;
    animation: particles 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 18s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 14s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 16s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; }
.particle:nth-child(10) { left: 5%; animation-delay: 18s; animation-duration: 20s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Navigation with animations */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(231, 76, 60, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    animation: fadeInRight 0.8s ease;
    animation-delay: calc(0.1s * var(--i));
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 5px 10px;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover:before {
    width: 100%;
}

.nav-menu a:hover {
    color: #f39c12;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: #f39c12;
    font-weight: 600;
}

.nav-menu a.active:before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #f39c12;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(231, 76, 60, 0.8) 100%), url('../img/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0 0 10rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}



.hero-content {
    flex: 1;
    padding: 2rem 2rem 2rem 0;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    background: linear-gradient(45deg, #ffffff, #f39c12, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease, shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both, breathe 4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1s ease 0.8s both, floatReverse 8s ease-in-out infinite;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: glow 4s ease-in-out infinite;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    animation: pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Enhanced Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Default section background */
section:not(.hero):not(.about):not(.contact) {
    background: #ffffff;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    animation: slideInFromBottom 1s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.section-title:hover {
    animation: pulse 0.8s ease-in-out;
    cursor: default;
}

/* About Section */
.about {
    background: #f8f9fa;
    position: relative;
    z-index: 3;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-item h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.info-item:hover i {
    color: #e74c3c;
    transform: scale(1.2) rotate(5deg);
}

.date {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.about-image {
    align-self: flex-start;
    margin-top: 4.8rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 4.8rem);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Tours Section */
.tours {
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInFromBottom 0.6s ease;
    animation-delay: calc(0.1s * var(--i));
    position: relative;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: pulse 0.6s ease;
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-carousel {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.tour-carousel::after {
    content: '🔍';
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.tour-card:hover .tour-carousel::after {
    opacity: 1;
}

.tour-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.tour-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tour-image.active {
    opacity: 1 !important;
    z-index: 2;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    z-index: 10;
}

.tour-card:hover .carousel-nav {
    opacity: 1;
}

.prev-btn,
.next-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 11;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(231, 76, 60, 0.8);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    pointer-events: auto;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot.active,
.dot:hover {
    background: #e74c3c;
    transform: scale(1.2);
}

.tour-info {
    padding: 1.5rem;
    position: relative;
}

.tour-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.tour-year {
    color: #e74c3c;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.photo-count {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Performances Section */
.performances {
    background: #f8f9fa;
    position: relative;
    z-index: 3;
}

.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.performance-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease;
    animation-delay: calc(0.1s * var(--i));
}

.performance-card:nth-child(even) {
    animation: fadeInLeft 0.6s ease;
    animation-delay: calc(0.1s * var(--i));
}

.performance-card:nth-child(odd) {
    animation: fadeInRight 0.6s ease;
    animation-delay: calc(0.1s * var(--i));
}

.performance-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: breathe 0.8s ease;
}

.performance-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
    transition: transform 0.3s ease;
}

.performance-card:hover img {
    transform: scale(1.1);
}

.performance-card::before {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.performance-card:hover::before {
    opacity: 1;
}

.performance-info {
    padding: 1.5rem;
}

.performance-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.performance-info p {
    color: #666;
    font-style: italic;
}

/* Achievements Section */
.achievements {
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.achievements-content {
    display: grid;
    gap: 3rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.certificate-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.certificate-card::before {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.certificate-card:hover::before {
    opacity: 1;
}

.certificate-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    transition: all 0.3s ease;
}

.certificate-info {
    padding: 1.5rem;
}

.certificate-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.certificate-info p {
    color: #666;
}

.media-coverage {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.media-coverage h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.media-item img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.media-item::before {
    content: '🔍';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.media-item:hover::before {
    opacity: 1;
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
    position: relative;
    z-index: 3;
}

.gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery .gallery-item-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.gallery .gallery-item-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery .gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery .gallery-item-container:hover .gallery-item {
    transform: scale(1.05);
}

.gallery .gallery-caption {
    padding: 1rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 500;
}

/* Video Gallery Section */
.video-gallery {
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}



.video-item-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-item-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-item:hover {
    filter: brightness(1.1);
    border: 3px solid #e74c3c;
    border-radius: 8px;
}

.video-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.clickable-video {
    position: relative;
}

/* Removed dark overlay effect for clearer video preview */

.video-caption {
    padding: 1.5rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Video controls styling */
.video-item::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.8);
}

.video-item::-webkit-media-controls-play-button,
.video-item::-webkit-media-controls-volume-slider,
.video-item::-webkit-media-controls-timeline,
.video-item::-webkit-media-controls-current-time-display,
.video-item::-webkit-media-controls-time-remaining-display {
    filter: invert(1);
}

/* Prevent video selection and dragging */
.clickable-video, #modalVideo {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    pointer-events: auto;
}

/* Disable video controls context menu */
.clickable-video::-webkit-media-controls,
#modalVideo::-webkit-media-controls {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Additional protection for video containers */
.video-item-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Social Media Section */
.social-media-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.social-media-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    animation: floatReverse 4s ease-in-out infinite;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.platform-link:hover::before {
    left: 100%;
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.platform-link.instagram {
    border-left: 4px solid #E4405F;
}

.platform-link.facebook {
    border-left: 4px solid #1877F2;
}

.platform-link.youtube {
    border-left: 4px solid #FF0000;
}

.platform-link.instagram i {
    color: #E4405F;
    font-size: 1.5rem;
}

.platform-link.facebook i {
    color: #1877F2;
    font-size: 1.5rem;
}

.platform-link.youtube i {
    color: #FF0000;
    font-size: 1.5rem;
}

.social-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-post {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.social-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E4405F, #1877F2, #FF0000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-post:hover::before {
    opacity: 1;
}

.social-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.social-post:hover .social-post-image {
    transform: scale(1.05);
}

.social-post-content {
    padding: 1.5rem;
}

.social-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.platform-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.platform-icon i {
    font-size: 1.2rem;
}

.platform-icon.instagram i {
    color: #E4405F;
}

.platform-icon.facebook i {
    color: #1877F2;
}

.platform-icon.youtube i {
    color: #FF0000;
}

.post-date {
    font-size: 0.8rem;
    color: #999;
}

.social-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.social-post-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.social-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.social-loading i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.social-loading p {
    font-size: 1.1rem;
}



/* Removed incorrect global mobile styles - moved to proper media queries */

/* General Mobile Improvements */
body {
    overflow-x: hidden;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Improve touch targets */
button, a, .clickable-image, .clickable-video {
    min-height: 44px;
    min-width: 44px;
}

/* Better spacing for touch devices */
.tour-card, .performance-card, .gallery-item-container, .video-item-container {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-contact .contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact .contact-details i {
    color: #e74c3c;
    width: 20px;
}

.footer-contact .contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: 0;
}

.footer-contact .contact-details a:hover {
    color: #e74c3c;
}

.footer-social h4 {
    margin-bottom: 1rem;
}

.footer-social .social-links {
    justify-content: flex-start;
}

.footer-social .social-links a {
    background: #34495e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-social .social-links a:hover {
    background: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    margin: auto;
}

/* Video modal specific styles */
.modal video.modal-content {
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.read-more{
    margin: auto;
    text-decoration: none;
    color: #E4405F;
    transition: all 0.3s ease;
}

.read-more:hover{
    color: #e74c3c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .modal video.modal-content {
        width: 95%;
        max-height: 70vh;
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #e74c3c;
}

#caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.4;
    z-index: 10001;
}

#videoCaption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.4;
    z-index: 10001;
}

/* Animations */
/* Removed fadeInUp and fadeInRight as they are now included in the beautiful idle animations */

/* Animation keyframes */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.tour-card,
.performance-card,
.certificate-card,
.gallery-item-container {
    animation: slideInFromBottom 0.6s ease forwards;
}

.tour-card:nth-child(even),
.performance-card:nth-child(even),
.certificate-card:nth-child(even) {
    animation-delay: 0.1s;
}

.tour-card:nth-child(3n),
.performance-card:nth-child(3n),
.certificate-card:nth-child(3n) {
    animation-delay: 0.2s;
}

/* Additional Animation Enhancements */

/* Remove animations from professional background icons */
.info-item i, .contact-info i {
    transition: color 0.3s ease;
}

.info-item:hover i, .contact-info:hover i {
    color: #e74c3c;
}

/* Enhanced gallery items */
.gallery-item-container {
    animation: fadeInUp 0.6s ease;
    animation-delay: calc(0.05s * var(--i));
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Performance optimizations */
.hero, .hero::before, .floating-particles {
    will-change: transform;
}

.tour-card, .performance-card, .gallery-item {
    will-change: transform, box-shadow;
}

/* Add subtle text shadow to titles for better readability */
.hero h1, .section-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhance social links with animations */
.social-links a {
    transition: all 0.3s ease;
    /* animation: float 3s ease-in-out infinite;
    animation-delay: calc(0.2s * var(--i)); */
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #e74c3c;
}

/* Add breathing animation to important buttons */
.hero-buttons .btn-primary {
    animation: pulse 2s ease-in-out infinite, breathe 4s ease-in-out infinite;
}

/* Enhance form elements if they exist */
input, textarea, button {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.2);
}

/* Add stagger animation delays */
.nav-menu li:nth-child(1) { --i: 0; }
.nav-menu li:nth-child(2) { --i: 1; }
.nav-menu li:nth-child(3) { --i: 2; }
.nav-menu li:nth-child(4) { --i: 3; }
.nav-menu li:nth-child(5) { --i: 4; }
.nav-menu li:nth-child(6) { --i: 5; }

.gallery-item-container:nth-child(1) { --i: 0; }
.gallery-item-container:nth-child(2) { --i: 1; }
.gallery-item-container:nth-child(3) { --i: 2; }
.gallery-item-container:nth-child(4) { --i: 3; }
.gallery-item-container:nth-child(5) { --i: 4; }
.gallery-item-container:nth-child(6) { --i: 5; }
.gallery-item-container:nth-child(7) { --i: 6; }
.gallery-item-container:nth-child(8) { --i: 7; }
.gallery-item-container:nth-child(9) { --i: 8; }
.gallery-item-container:nth-child(10) { --i: 9; }
.gallery-item-container:nth-child(11) { --i: 10; }
.gallery-item-container:nth-child(12) { --i: 11; }
.gallery-item-container:nth-child(13) { --i: 12; }
.gallery-item-container:nth-child(14) { --i: 13; }
.gallery-item-container:nth-child(15) { --i: 14; }
.gallery-item-container:nth-child(16) { --i: 15; }
.gallery-item-container:nth-child(17) { --i: 16; }
.gallery-item-container:nth-child(18) { --i: 17; }

/* Hide floating particles on mobile for better performance */
.floating-particles {
    display: none;
}


/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.98) 0%, rgba(231, 76, 60, 0.98) 100%);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        display: block;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 2rem 0 2rem;
        flex-direction: column;
        text-align: center;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-image img {
        width: 200px;
        height: 200px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-image img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: auto;
    }
    
    /* Tours Section Mobile */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Performances Section Mobile */
    .performances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Gallery Section Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Video Gallery Mobile */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Achievements Section Mobile */
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievements-content {
        gap: 2rem;
    }
    
    /* Footer Mobile Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact .contact-details p {
        justify-content: center;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-image img {
        width: 150px;
        height: 150px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Single column layouts for small screens */
    .performances-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-image img {
        width: 200px;
        height: 200px;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Footer Small Screen Improvements */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-info h3 {
        font-size: 1.5rem;
    }
    
    .footer-contact h4,
    .footer-social h4 {
        font-size: 1.2rem;
    }
    
    .footer-contact .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact .contact-details i {
        width: auto;
        margin-right: 0.5rem;
    }
    
    .footer-social .social-links {
        gap: 1rem;
        justify-content: center;
        flex-direction: row;
    }
    
    .footer-social .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.9rem;
    }
}

/* Desktop Hero Padding */
@media (min-width: 769px) {
    .hero {
        padding: 80px 8rem 0 15rem;
    }
}

/* Responsive Design for Social Media Section */
@media (max-width: 768px) {
    .social-platforms {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .platform-link {
        padding: 0.8rem 1.5rem;
    }
    
    .social-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-post-content {
        padding: 1rem;
    }
    
    .social-post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}