body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f8f8;
}
header {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: italic;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}
header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 2.5rem;
}
nav {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 0, 0, 0.1);
    height: 100px;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 1;
    min-width: 0;
    padding: 0.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

.nav-btn {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-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 ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: fadeInLogo 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    object-fit: cover;
    max-width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.logo img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-nav-btn {
    color: #fff;
    text-decoration: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-btn::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.mobile-nav-btn:hover::before {
    left: 100%;
}

.mobile-nav-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding-left: 2.5rem;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav-btn:last-child {
    border-bottom: none;
}

.hero {
    background-image: url('./images/sp.jpeg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.hero h2 {
    font-size: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInDownh2 1s ease-in-out;
    animation-fill-mode: forwards;
}
.hero2 {
    background-image: url('./images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
}
.hero3 {
    background-image: url('./images/post-gig.jpeg');
    background-size: cover;
    background-position: top center -200px;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
}

@keyframes fadeInDownh2 {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

section {
    padding: 2rem;
    text-align: center;
}
section {
    background-color: #fff;
    margin-bottom: 1rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section img:not(.gallery-photo):not(.product-card img) {
  position: relative;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  width: 150px; /* Adjust size as needed */
  height: auto;
  border-radius: 15%;
  animation: fadeInDown .8s ease-in-out;
  box-shadow: none;
  transition: none;
}
section:hover:not(#gallery-content) {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
footer a {
    margin: 0 10px;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #2c3e50;
}
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the columns */
    margin-top: -50px;
    margin-bottom: 50px;
}
.image-column {
    flex: 1 1 45%; /* Adjust the flex-basis to 45% to ensure two columns */
    padding: 10px;
    max-width: 300px; /* Ensure the columns do not exceed a certain width */
}
.image-column img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5%;
}

/* Default desktop styles (already included above) */
/* Contact Section Styles */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 2rem;
    color: #2c3e50;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    text-align: left;
    flex: 1;
}

.contact-details h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.contact-details a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.contact-details a:hover {
    color: #1a252f;
}

.booking-info {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 73, 94, 0.03));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.booking-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.booking-info strong {
    color: #2c3e50;
}

/* Mobile styles */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
        position: relative;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo {
        flex: 1;
        justify-content: center;
    }
    
    .logo img {
        width: 70px;
        height: 70px;
        animation: fadeInLogo 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-toggle {
        display: flex;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }
    
    .mobile-nav.active {
        display: flex;
        z-index: 1001;
    }
    
    /* Hamburger animation */
    .mobile-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h2 {
        font-size: 2.25rem;
    }
    
    .hero3 {
        background-image: url('./images/post-gig.jpeg');
        background-size: cover;
        background-position: center;
        height: 50vh;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        position: relative;
    }
    
    .hero4 {
        background-image: url('./images/DaronAndGrant.jpeg');
        background-size: cover;
        background-position: center;
        height: 50vh;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        position: relative;
    }
    
    iframe {
        width: 100%;
        align-items: center;
    }
    
    /* Contact Section Mobile Styles */
    .contact-container {
        padding: 1rem;
    }
    
    .contact-container h2 {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-methods {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        min-width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .booking-info {
        padding: 1rem;
    }
    
    .booking-info p {
        font-size: 0.95rem;
    }
}

/* Store-specific styles */
.store-hero {
    background-image: url('./images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.store-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.store-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.1), rgba(52, 73, 94, 0.05));
    z-index: 1;
}

.store-hero h1 {
    font-size: 3.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    animation: fadeInDownh2 1s ease-in-out;
    animation-fill-mode: forwards;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.store-hero p {
    font-size: 1.3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 300;
    opacity: 0.9;
}

#store-products {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    position: relative;
}

#store-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(52, 73, 94, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(44, 62, 80, 0.3);
    color: #2c3e50;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-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 ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 50px rgba(44, 62, 80, 0.1);
    border-color: rgba(44, 62, 80, 0.2);
}

.product-card.hidden {
    display: none !important;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 0;
    animation: none;
    transform: none;
    position: static;
    left: auto;
    top: auto;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-info .description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.buy-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3), 0 0 20px rgba(44, 62, 80, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.buy-now-btn:hover::before {
    left: 100%;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.buy-now-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Store mobile styles */
@media (max-width: 768px) {
    .store-hero {
        height: 40vh;
    }
    
    .store-hero h1 {
        font-size: 2.8rem;
    }
    
    .store-hero p {
        font-size: 1.1rem;
    }
    
    #store-products {
        padding: 3rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .product-card {
        margin: 0 0.5rem;
    }
    
    .product-card img {
        height: 220px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-info .price {
        font-size: 1.4rem;
    }
    
    .buy-now-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: calc(100% - 2rem);
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .filter-buttons {
        gap: 0.8rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
        justify-content: center;
    }

    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        flex: 0 0 auto;
        min-width: auto;
        white-space: nowrap;
    }
}

/* Gallery Styles */
.gallery-hero {
    background-image: url('./images/band-pic.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
}

.gallery-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.gallery-hero h1 {
    font-size: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    animation: fadeInDownh2 1s ease-in-out;
    animation-fill-mode: forwards;
}

.gallery-hero p {
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
    animation: fadeInDownh2 1.2s ease-in-out;
    animation-fill-mode: forwards;
}

#gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

#gallery-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

#gallery-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Completely isolated gallery system */
#gallery-content .photo-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
    padding: 0 !important;
    list-style: none !important;
}

#gallery-content .gallery-photo {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    cursor: pointer !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    background: none !important;
    vertical-align: top !important;
    line-height: 0 !important;
    font-size: 0 !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
}

/* Gallery images with noticeable hover animation - completely isolated */
#gallery-content .photo-grid .gallery-photo:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2) !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    z-index: 1 !important;
}

/* Remove any potential interference */
#gallery-content .gallery-photo * {
    all: unset !important;
}

/* Mobile responsive for isolated gallery */
@media (max-width: 768px) {
    #gallery-content .gallery-photo {
        height: 200px !important;
    }
}



/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    max-width: 80%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-hero p {
        font-size: 1rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    

    
    #gallery-content {
        padding: 1rem;
    }
    
    #gallery-content h2 {
        font-size: 2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        bottom: 10px;
        padding: 8px 15px;
    }
}

