:root {
  --primary: #E67E22;
  --primary-light: #F39C12;
  --primary-dark: #d67118;
  --text-main: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --bg-color: #f8f9fa;
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.divider.center {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 15px auto 30px;
  border-radius: 2px;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 5%;
  background-color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.logo-link:hover .logo-img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #34495e;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li a:hover::after {
  width: 100%;
}

.mobile-only { display: none; }
.desktop-only { display: inline-block; justify-self: end; }
.menu-overlay { display: none; }
.hamburger { display: none; }

@media (max-width: 1024px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; margin-top: 20px; }

  .logo-img {
    height: 48px;
    max-width: 65vw;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    justify-self: end;
    grid-column: 3;
  }

  .hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 1.3rem;
  }

  .nav-links .mobile-only .lang-switcher a {
    width: 42px;
    height: 42px;
    font-size: 1.3rem !important;
  }

  .menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.hero {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 80px 20px 0;
}

.hero-content {
  max-width: 850px;
  z-index: 2;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  color: var(--primary-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.15;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 45px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.cta-button {
  display: inline-block;
  text-decoration: none;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.5);
}

.about-section {
  padding: 100px 5%;
  background-color: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1150px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: 12%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
  border: 4px solid var(--white);
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
}

.about-content {
  text-align: left;
}

.about-content .subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--text-main);
}

.about-content .divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 15px 0 25px;
  border-radius: 2px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

@media (max-width: 600px) {
  .about-content { text-align: center; }
  .about-content .divider { margin: 15px auto 25px; }
}

.services {
  padding: 100px 5%;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-color) 0%, #FFF5E6 100%);
}

.services h2 {
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.service-card {
  background-color: var(--white);
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
  position: relative;
  border: 1px solid rgba(230, 126, 34, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.icon {
  font-size: 3rem;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  flex-grow: 1;
}

.card-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-top: 1px solid #EDF2F7;
  padding-top: 25px;
  margin-top: auto;
}

.duration {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price {
  font-weight: bold;
  color: var(--text-main);
  font-size: 1.15rem;
  text-align: right;
}

.price-eur {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: right;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 3.8rem; }
  .hero-content p { font-size: 1.25rem; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 4.5rem; }
}

.contact {
  background: linear-gradient(135deg, var(--text-main) 0%, #1A252F 100%);
  color: var(--white);
  padding: 80px 5% 30px;
  border-top: 5px solid var(--primary);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.contact-column h2, .contact-column h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  color: #CBD5E1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-items p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.info-items a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.info-items a:hover {
  color: var(--primary-light);
}

.opening-hours {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-hours ul {
  list-style: none;
  padding: 0;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #E2E8F0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.opening-hours span {
  color: var(--primary-light);
  font-weight: 500;
}

.contact-map h3 {
  margin-bottom: 15px;
}

.map-responsive {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  line-height: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact { padding-top: 50px; }
  .contact-container { gap: 30px; text-align: center; }
  .info-items p { justify-content: center; }
  .opening-hours li { font-size: 0.9rem; }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-color);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lang-switcher a {
  text-decoration: none !important;
  font-size: 1.15rem !important;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-links li .lang-switcher a::after {
  display: none !important;
}

.lang-switcher a:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 14px rgba(230, 126, 34, 0.25);
  background-color: var(--white);
}

.gallery-hero {
  background: linear-gradient(135deg, var(--text-main) 0%, #1A252F 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.gallery-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.gallery-hero .subtitle {
  color: var(--primary-light);
  margin-bottom: 15px;
}

.gallery-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.gallery-hero p {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.gallery-section {
  padding: 80px 5% 100px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5E6 45%, #FFEDD5 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: #e2e2e2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 55, 72, 0.85) 0%, rgba(45, 55, 72, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: var(--white);
}

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

.gallery-item .overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  transform: translateY(15px);
  transition: transform 0.4s ease 0.05s;
}

.gallery-item .overlay p {
  font-size: 0.95rem;
  color: #E2E8F0;
  transform: translateY(15px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .overlay h3,
.gallery-item:hover .overlay p {
  transform: translateY(0);
}

.gallery-item .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.4);
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    grid-auto-rows: 180px;
  }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-hero h1 { font-size: 2rem; }
  .gallery-item .overlay { padding: 15px; }
  .gallery-item .overlay h3 { font-size: 1rem; }
  .gallery-item .overlay p { font-size: 0.8rem; }

  .gallery-item .overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(45, 55, 72, 0.75) 0%, transparent 60%);
  }
  .gallery-item .overlay h3,
  .gallery-item .overlay p {
    transform: translateY(0);
  }
  .gallery-item .zoom-icon { display: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 20, 30, 0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .lightbox { padding: 15px; }
  .lightbox-btn { width: 42px; height: 42px; font-size: 1.2rem; }
  .lightbox-close { top: 15px; right: 15px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
