@import url('https://fonts.googleapis.com/css2?family=Boldonse&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Wavefont:wght@4..1000&display=swap');


/* Base Styles and Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #121212;
    --text-color: #333;
    /* --font-primary: 'Helvetica Neue', Arial, sans-serif; */
    --font-primary: 'Boldonse', Arial, sans-serif;
    --font-secondary: 'Georgia', serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --sidebar-width: 250px;
}

html{
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);

}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

button:hover, .btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    color: white;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: rgba(44, 62, 80, 0.9); */
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header-scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--light-color);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: var(--light-color);
    font-weight: 600;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Sidebar for mobile */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 999;
    transition: var(--transition);
    padding: 100px 20px 20px;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-item {
    margin-bottom: 15px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    color: var(--light-color);
    padding: 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-social {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.sidebar-social a {
    color: var(--light-color);
    margin: 0 10px;
    font-size: 20px;
    transition: var(--transition);
    padding: .5rem; 
}

.sidebar-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
   
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Uncle\ LA 5.jpg') fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.5), rgba(0, 0, 255, 0.5)) ; */
}


.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-color);
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.9;
}

.hero-title-span {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 15px 30px;
}

.hero-btn.secondary {
    background-color: transparent;
    border: 2px solid var(--light-color);
}

.hero-btn.secondary:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Latest News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.news-excerpt {
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p{
    background-color: rgba(255, 255, 255, 0.7);
padding: 1rem;
    backdrop-filter: blur(10px);
    border-radius: 0 30px;

    line-height: 2.3;
    /* filter: blur(10px); */
}


.about-img {
    border-radius: 8px;
    overflow: hidden;
}

.photos-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}

.photo-item {
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
position: relative;
aspect-ratio: 1/1;
}

.photo-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

.photo-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: var(--transition);
}

.photo-item:hover .photo-overlay {
opacity: 1;
}

.photo-item:hover img {
transform: scale(1.1);
}

.photo-zoom {
color: white;
font-size: 24px;
cursor: pointer;
width: 50px;
height: 50px;
background-color: rgba(231, 76, 60, 0.7);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}

.video-item {
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
}

.video-thumbnail {
position: relative;
aspect-ratio: 16/9;
}


.video-thumbnail  iframe {
position: relative;
aspect-ratio: 16/9;
width: 100%;
height: 100%;

}

.video-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}

.video-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
background-color: rgba(231, 76, 60, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
cursor: pointer;
transition: var(--transition);
}

.video-play:hover {
transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
padding: 20px;
}

.video-title {
font-size: 1.2rem;
margin-bottom: 10px;
}

.video-meta {
display: flex;
align-items: center;
color: #777;
font-size: 0.9rem;
}

.video-meta i {
margin-right: 5px;
}

.video-meta span {
margin-right: 15px;
}

.press-list {
list-style: none;
}

.press-item {
background-color: white;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
box-shadow: var(--shadow);
transition: var(--transition);
}

.press-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.press-source {
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 10px;
font-size: 1.1rem;
}

.press-date {
color: #777;
font-size: 0.9rem;
margin-bottom: 10px;
}

.press-title {
font-size: 1.3rem;
margin-bottom: 10px;
}

.press-excerpt {
margin-bottom: 15px;
}

.press-actions {
display: flex;
gap: 15px;
}

.press-link {
display: inline-flex;
align-items: center;
font-weight: 600;
}

.press-link i {
margin-right: 5px;
}




/* Music Merchandise Section Styles */
.merchandise {
    background-color: #121212;
    color: #ffffff;
    padding: 4rem 0; 
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    /* color: #1db954; Spotify-inspired green */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.merch-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.filter-btn {
    background-color: transparent;
    color: #b3b3b3;
    border: 2px solid #b3b3b3;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}




/* Merch Styles */

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.merch-item {
    background-color: #181818;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.merch-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.merch-img {
    position: relative;
    overflow: hidden;
}

.merch-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.merch-img:hover img {
    transform: scale(1.1);
}

.merch-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

.merch-badge.new {
    background-color: #1db954;
    color: #121212;
}

.merch-badge.limited {
    background-color: #ff1d6c;
    color: white;
}

.merch-badge.sale {
    background-color: #ff9900;
    color: #121212;
}

.merch-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.merch-item:hover .merch-actions {
    opacity: 1;
}

.merch-action {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* .merch-action:hover {
    background-color: #1db954;
} */

.merch-info {
    padding: 1rem;
    text-align: center;
}

.merch-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.merch-price {
    color: #e74c3c;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #b3b3b3;
    margin-right: 0.5rem;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    /* background-color: #1db954; */
    /* color: #121212; */
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .merch-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        padding: 0 1rem;
    }

    .merch-img img {
        height: 250px;
    }
}



/* Gallery Section Code */

#gallery{
    margin-top: 100px;
}



.media{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}


.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    padding: 40px 0;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    cursor: grab;
}

.carousel:active {
    cursor: grabbing;
}

.carousel-item {
    position: absolute;
    width: 320px;
    height: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    display: none;
}

.item-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.rating span {
    margin-right: 5px;
}

.stars {
    color: #ffcc00;
    letter-spacing: 2px;
}

.price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
}

.navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    width: 20px;
    background-color: #ff6b00;
    border-radius: 10px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-size: 18px;
    color: #333;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Preview modal styles */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.preview-modal.active {
    opacity: 1;
    visibility: visible;
}








.preview-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}

.preview-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.preview-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.preview-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.preview-details {
    display: flex;
    justify-content: space-between;
    color: #666;
    display: none;
}

.close-preview {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    color: #333;
}

/* Swipe indicator */
.swipe-indicator {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.swipe-left {
    left: 30px;
}

.swipe-right {
    right: 30px;
}

.swipe-active {
    opacity: 1;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Preview button on carousel items */
.preview-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    opacity: 0;
}

.carousel-item:hover .preview-button {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 280px;
        height: 320px;
    }
    
    .preview-content {
        max-width: 95%;
    }
    
    .preview-info {
        padding: 15px;
    }
}






/* Contact Section */
.contact {
background-color: var(--light-color);
padding: 80px 0;

}

.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info {
background-color: white;
border-radius: 8px;
padding: 30px;
box-shadow: var(--shadow);
}

.contact-item {
margin-bottom: 25px;
display: flex;
align-items: flex-start;
}

.contact-icon {
width: 50px;
height: 50px;
background-color: rgba(231, 76, 60, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary-color);
font-size: 20px;
margin-right: 20px;
}

.contact-text h4 {
margin-bottom: 5px;
}

.contact-text p {
color: #555;
margin-bottom: 0;
}

.social-links {
display: flex;
gap: 15px;
margin-top: 30px;
}

.social-link {
width: 40px;
height: 40px;
background-color: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}

.social-link:hover {
background-color: var(--secondary-color);
transform: translateY(-3px);
}
.social-link:hover i {
color: white;
}

.contact-form {
background-color: white;
border-radius: 8px;
padding: 30px;
box-shadow: var(--shadow);
}

.contact-form input{
margin-top: 20px;

    display: block;
    flex: 1;
padding: 15px;
width: 300px;
/* border: none; */
border-radius: 4px 0 0 4px;
/* border-width: 10px; */
border-color: #e74c3c;
font-size: 1rem;
/* width: 40vw; */
}

.form-group{
    padding: 1rem;
}

.form-group select{
    display: block;
    border-color: #e74c3c;
    font-size: 1rem;
border-radius: 4px 0 0 4px;
padding: 15px;
margin-top: 20px;
}


.form-group textarea{
    display: block;
    border-color: #e74c3c;
    font-size: 1rem;
border-radius: 4px 0 0 4px;
padding: 15px;
margin-top: 20px;
width: 50vw;
}



/* Events styling section */

/* Events Section Styles */
.events {
    background-color: #121212;
    color: #ffffff;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.filter-btn {
    background-color: transparent;
    color: #b3b3b3;
    border: 2px solid #b3b3b3;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #e74c3c;
    color: #121212;
    /* border-color: #1db954; */
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.event-card {
    background-color: #181818;
    border-radius: 10px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.event-date {
    background-color: var(--secondary-color);
    color: #121212;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.event-day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.event-info {
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
    color: #b3b3b3;
    margin-bottom: 0.5rem;
}

.event-location i,
.event-time i {
    margin-right: 0.5rem;
    color: #fff;
}

.event-action {
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.event-action .btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.event-action .btn:hover {
    background-color: #e74c3c;
}

.load-more {
    text-align: center;
    margin-top: 2rem;
}

.load-more .btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid #e74c3c;
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.load-more .btn:hover {
    background-color: #e74c3c;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
    }

    .event-day {
        font-size: 2rem;
        margin-right: 0.5rem;
    }

    .event-month {
        font-size: 0.9rem;
    }
}



/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .event-filter {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .events {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .event-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 70%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    .event-day {
        font-size: 2rem;
        margin-right: 0.5rem;
    }

    .event-month {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .events {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .filter-btn {
        width: 90%;
        padding: 0.4rem 0.75rem;
        font-size: 0.9rem;
    }

    .event-card {
        text-align: center;
    }

    .event-location,
    .event-time {
        justify-content: center;
    }

    .event-location i,
    .event-time i {
        display: none;
    }

    .event-action .btn {
        width: 100%;
    }

    .load-more .btn {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .event-info {
        padding: 1rem;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .event-location,
    .event-time {
        font-size: 0.9rem;
    }
}















.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular::before {
    content: 'Special Offer';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e74c3c;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.plan-name {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.plan-price {
    color: #e74c3c;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1rem;
    color: #718096;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    color: #4a5568;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

.cta-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius:0px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}



.toggle-container {
    text-align: center;
    margin-bottom: 40px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4c51bf;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.billing-text {
    color: #718096;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}







/* Newsletter */
.newsletter {
background-color: var(--primary-color);
color: var(--light-color);
padding: 80px 0;
}

.newsletter-container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.newsletter-title {
font-size: 2rem;
margin-bottom: 20px;
}

.newsletter-description {
max-width: 600px;
margin-bottom: 30px;
}

.newsletter-form {
display: flex;
width: 100%;
max-width: 500px;
}

.newsletter-input {
flex: 1;
padding: 15px;
border: none;
border-radius: 4px 0 0 4px;
font-size: 1rem;
}

.newsletter-btn {
/* padding: 0 25px; */
border-radius: 0 4px 4px 0;
}

/* Footer */
.footer {
background-color: var(--dark-color);
color: var(--light-color);
padding: 80px 0 0;
width: 100%;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
}

.footer-widget h4 {
font-size: 1.3rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}

.footer-widget h4:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background-color: var(--secondary-color);
}

.footer-widget p {
color: #aaa;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
color: #aaa;
display: inline-flex;
align-items: center;
}

.footer-links a:hover {
color: var(--secondary-color);
}

.footer-links i {
margin-right: 10px;
}

.footer-social {
margin-top: 20px;
display: flex;
gap: 15px;
}

.copyright {
text-align: center;
padding: 20px 0;
margin-top: 60px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #aaa;
font-size: 0.9rem;
}
.credit{
text-align: center;
padding-bottom: 20px;
}
.credit a {
text-align: center;

margin-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #e74c3c;
font-size: 0.9rem;
}


/* New Modal Code */

/* Existing modal styles, adding specific enhancements */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}


.modal-close:hover {
    color: #fff; 
    background: #e74c3c;
}



/* Modal Recent */


/* Remove or comment out the general modal class */
/* .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
} */

/* Replace with specific modal classes */
#media-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

#media-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none; /* Add this */
}

.preview-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Add this */
}

/* Update modal content styles */
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

/* Ensure other elements remain clickable */
.modal:not(.active) {
    pointer-events: none;
}




.zoomed-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.zoomed-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    margin-bottom: 15px;
}

.zoomed-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 95%;
    }
}











/* Preloader */
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--dark-color);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;


}

.preloader-text{
    color: #fff;
    font-size: 2rem;
}

.spinner {
width: 50px;
height: 50px;
margin-top:7rem;
margin-left: -6.5rem;
border: 5px solid rgba(255, 255, 255, 0.1);
border-top-color: var(--secondary-color);
border-radius: 50%;
animation: spin 1s infinite linear;
}

@keyframes spin {
to {
transform: rotate(360deg);
}
}

/* Media Queries */
@media (max-width: 992px) {
.hero-title {
font-size: 3rem;
}

.about-container,
.contact-container {
grid-template-columns: 1fr;
}

.about-img {
order: -1;
}

.event-card {
grid-template-columns: 100px 1fr auto;
}

.gallery-container {
height: 400px;
}
}

@media (max-width: 768px) {
.section {
padding: 60px 0;
}

.nav-list {
display: none;
}

.mobile-toggle {
display: block;
}

.hero-title {
font-size: 2.5rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.hero-cta {
flex-direction: column;
}

.event-card {
grid-template-columns: 1fr;
}

.event-date {
padding: 10px;
display: flex;
flex-direction: row;
justify-content: flex-start;
gap: 10px;
}

.event-action {
padding: 0 20px 20px;
}
}

@media (max-width: 576px) {
.section-title {
font-size: 2rem;
}

.album-links {
flex-direction: column;
gap: 10px;
}

.album-link {
width: 100%;
text-align: center;
}

.newsletter-form {
flex-direction: column;
}

.newsletter-input {
border-radius: 4px;
margin-bottom: 10px;
}

.newsletter-btn {
border-radius: 4px;
}
}
