/* Modern Lindeneck Theme with DaisyUI 5 & Theme Support */

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

/* DaisyUI Theme Configuration */
:root {
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Hero Section Backgrounds - Light Theme */
[data-theme="light"] .hero-gradient {
  background: linear-gradient(135deg, #fce7f3 0%, #e0e7ff 25%, #dbeafe 50%, #ecfdf5 75%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.aspect-video {
    height: 100%;
}

/* Hero Section Backgrounds - Dark Theme */
[data-theme="dark"] .hero-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero text colors for different themes */
[data-theme="light"] .hero-text {
  color: #1f2937;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .hero-text {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

/* Section Backgrounds - Light Theme */
[data-theme="light"] .section-about {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  position: relative;
}

[data-theme="light"] .section-gallery {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  position: relative;
}

[data-theme="light"] .section-reviews {
  background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%);
  position: relative;
}

[data-theme="light"] .section-services {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  position: relative;
}

[data-theme="light"] .section-contact {
  background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
  position: relative;
}

/* Section Backgrounds - Dark Theme */
[data-theme="dark"] .section-about {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  position: relative;
}

[data-theme="dark"] .section-gallery {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  position: relative;
}

[data-theme="dark"] .section-reviews {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  position: relative;
}

[data-theme="dark"] .section-services {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  position: relative;
}

[data-theme="dark"] .section-contact {
  background: linear-gradient(135deg, #065f46 0%, #059669 100%);
  position: relative;
}

/* Subtle patterns for all sections */
.section-about::before,
.section-gallery::before,
.section-reviews::before,
.section-services::before,
.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.1) 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

[data-theme="dark"] .section-about::before,
[data-theme="dark"] .section-gallery::before,
[data-theme="dark"] .section-reviews::before,
[data-theme="dark"] .section-services::before,
[data-theme="dark"] .section-contact::before {
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
}

/* Enhanced navbar */
.navbar-enhanced {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-enhanced.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .navbar-enhanced {
  background: rgba(31, 41, 55, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar-enhanced.scrolled {
  background: rgba(31, 41, 55, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Glass morphism cards */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

[data-theme="dark"] .glass-card {
  background: rgba(31, 41, 55, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Gallery improvements */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

[data-theme="dark"] .gallery-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Enhanced buttons */
.btn-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  font-weight: 600;
  text-transform: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #7c8bf5 0%, #8a7cb8 100%);
  color: white;
}

/* Swiper carousel customizations */
.swiper {
  border-radius: 20px;
  overflow: hidden;
}

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

.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: 0;
}

.swiper-button-next {
  height: 30px !important;
  width: 30px !important;
  border-radius: 15px !important;
}

.swiper-button-prev {
  height: 30px !important;
  width: 30px !important;
  border-radius: 15px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons !important;
  font-size: 16px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-variant: initial !important;
  line-height: 1 !important;
  font-weight: bold !important;
  color: #000000 !important;
  text-shadow: none !important;
}

[data-theme="dark"] .swiper-button-next,
[data-theme="dark"] .swiper-button-prev {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .swiper-button-next:hover,
[data-theme="dark"] .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .swiper-button-next:after,
[data-theme="dark"] .swiper-button-prev:after {
  color: #ffffff !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #667eea;
  transform: scale(1.2);
}

[data-theme="dark"] .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .swiper-pagination-bullet-active {
  background: #a8b5ff;
}

/* Opening hours table enhancement */
.hours-table-enhanced {
  background: rgba(31, 41, 55, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hours-table-enhanced {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Table row hover effects - theme specific */
[data-theme="light"] .table-row-hover:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .table-row-hover:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Theme toggle enhancements */
.theme-toggle {
  transition: all 0.3s ease;
  position: relative;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
  50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.8), 0 0 60px rgba(118, 75, 162, 0.4); }
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.revealed.delay-1 {
  transition-delay: 0.2s;
}

.scroll-reveal.revealed.delay-2 {
  transition-delay: 0.4s;
}

.scroll-reveal.revealed.delay-3 {
  transition-delay: 0.6s;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .glass-card {
    margin: 0.5rem;
    padding: 1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}