body, html {
    background-color: #000000 !important;
    color: #fff;
    font-family: 'Anton', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Loading Skeleton Animations */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #333 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */
.gallery-header {
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

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

.gallery-nav h1 {
    margin: 0;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #FD5A46 !important;
    text-align: center;
    flex-grow: 1;
}

.back-button {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.back-button:hover {
    color: #FD5A46;
    background: rgba(253, 90, 70, 0.1);
    transform: translateX(-3px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 16px;
}

.theme-toggle:hover {
    background: rgba(253, 90, 70, 0.8);
    transform: translateY(-2px);
}

.booking-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    background-color: #FD5A46;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.booking-link:hover {
    background-color: #e54a36;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 90, 70, 0.3);
}

/* Loading Container */
.loading-container {
    padding: 2rem;
}

.skeleton-grid {
    column-count: 2;
    column-gap: 1rem;
}

.gallery-item-skeleton {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: linear-gradient(90deg, #1a1a1a 25%, #333 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    break-inside: avoid;
}

/* Gallery Container */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.gallery-grid {
    column-count: 2;
    column-gap: 1rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(253, 90, 70, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.gallery-item:hover img {
    filter: brightness(0.8);
}

.gallery-item-overlay {
    display: none !important;
}

.gallery-item:hover .gallery-item-overlay {
    display: none !important;
}

/* Lightbox Styles */
.lightbox-overlay {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    width: 350px;
    height: 250px;
    max-width: 90vw;
    max-height: 40vh;
    background: rgba(20, 20, 20, 0.98);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #222;
}

.lightbox-overlay .lightbox-image {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    background: #181818;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    border: 1.5px solid #333;
    padding: 0;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(253, 90, 70, 0.8);
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(253, 90, 70, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-info {
    margin-top: 1rem;
    text-align: center;
    max-width: 100%;
}

.lightbox-caption {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.lightbox-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.lightbox-share {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.lightbox-share:hover {
    background: #FD5A46;
    transform: translateY(-2px);
}

.lightbox-counter {
    color: #ccc;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Light Theme */
body[data-theme="light"] {
    background-color: #f8f9fa !important;
    color: #333 !important;
}

[data-theme="light"] .gallery-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .gallery-nav h1 {
    color: #FD5A46;
}

[data-theme="light"] .back-button {
    color: #333;
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .back-button:hover {
    color: #FD5A46;
    background: rgba(253, 90, 70, 0.1);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

[data-theme="light"] .gallery-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .gallery-item:hover {
    box-shadow: 0 12px 30px rgba(253, 90, 70, 0.15);
}

[data-theme="light"] .gallery-item-skeleton {
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
}

/* Responsive Design */
@media (min-width: 768px) {
    .gallery-grid, .skeleton-grid {
        column-count: 3;
        column-gap: 1.5rem;
    }
    
    .gallery-container {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid, .skeleton-grid {
        column-count: 4;
    }
}

@media (min-width: 1400px) {
    .gallery-grid, .skeleton-grid {
        column-count: 5;
        column-gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-nav {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .gallery-nav h1 {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .booking-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev, .lightbox-next {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        padding: 1rem;
    }
    
    .lightbox-container {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
}

@media (max-width: 900px) {
    .lightbox-container {
        max-width: 85vw;
        max-height: 60vh;
        padding: 2vw 1vw 1vw 1vw;
        border-radius: 12px;
    }
    .lightbox-image {
        max-width: 80vw;
        max-height: 40vh;
        border-radius: 8px;
        padding: 1vw;
    }
}

@media (max-width: 600px) {
    .lightbox-container {
        width: 90vw;
        height: 25vh;
        max-width: 95vw;
        max-height: 30vh;
        border-radius: 8px;
        padding: 2vw 1vw;
    }
    .lightbox-overlay .lightbox-image {
        border-radius: 6px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.gallery-item:focus {
    outline: 3px solid #FD5A46;
    outline-offset: 2px;
}

.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus,
.lightbox-share:focus {
    outline: 2px solid #FD5A46;
    outline-offset: 2px;
}

/* Explicit Dark Theme Styles */
[data-theme="dark"] {
    background-color: #181818 !important;
    color: #fff !important;
}
[data-theme="dark"] .gallery-header {
    background-color: rgba(24, 24, 24, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .gallery-nav h1 {
    color: #fff !important;
}
[data-theme="dark"] .back-button {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .back-button:hover {
    color: #FD5A46 !important;
    background: rgba(253, 90, 70, 0.08) !important;
}
[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}
[data-theme="dark"] .gallery-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}
[data-theme="dark"] .gallery-item:hover {
    box-shadow: 0 12px 30px rgba(253, 90, 70, 0.25) !important;
}
[data-theme="dark"] .gallery-item-skeleton {
    background: linear-gradient(90deg, #232323 25%, #181818 50%, #232323 75%) !important;
    background-size: 200% 100% !important;
}

#gallery-title, .gallery-header h1, .gallery-nav h1 {
    color: #FD5A46 !important;
}

/* Exclusive Navigation Button */
.exclusive-gradient-text {
    font-size: clamp(1.3rem, 3vw, 2.2rem) !important;
    font-family: 'Anton', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    background: linear-gradient(270deg, #ff0080, #ff8c00, #40e0d0, #ff0080) !important;
    background-size: 400% 400% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    animation: gradientShift 4s ease-in-out infinite !important;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5) !important;
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 1.2rem !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
}

.exclusive-gradient-text:visited,
.exclusive-gradient-text:active,
.exclusive-gradient-text:focus {
    color: transparent !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
.exclusive-gradient-text:hover {
    filter: brightness(1.2) saturate(1.3) !important;
    text-shadow: 0 0 48px #ff0080, 0 0 24px #ff0080, 0 0 12px #ff0080 !important;
    transform: scale(1.05) translateY(-2px) !important;
    background-color: transparent !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navigation {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 0.2rem 0.3rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

.nav-link.active,
.nav-link:hover {
    background-color: #FD5A46;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 90, 70, 0.3);
}

.nav-link:focus {
    outline: 2px solid #FD5A46;
    outline-offset: 2px;
}

.navigation .exclusive-gradient-text {
  font-size: clamp(1.3rem, 3vw, 2.2rem) !important;
  font-family: 'Anton', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
  background: linear-gradient(270deg, #ff0080, #ff8c00, #40e0d0, #ff0080) !important;
  background-size: 400% 400% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  animation: gradientShift 4s ease-in-out infinite !important;
  text-shadow: 0 0 20px rgba(255, 0, 128, 0.5) !important;
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 1.2rem !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
}

.navigation .exclusive-gradient-text:visited,
.navigation .exclusive-gradient-text:active,
.navigation .exclusive-gradient-text:focus {
  color: transparent !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.navigation .exclusive-gradient-text:hover {
  filter: brightness(1.2) saturate(1.3) !important;
  text-shadow: 0 0 48px #ff0080, 0 0 24px #ff0080, 0 0 12px #ff0080 !important;
  transform: scale(1.05) translateY(-2px) !important;
  background-color: transparent !important;
}

@media (max-width: 700px) {
    .navigation {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.7rem 0.5rem;
        gap: 0.2rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 0.7rem;
        margin: 0.1rem 0.1rem;
    }
} 