/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Accessibility Styles */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #7C9885;
  outline-offset: 2px;
}

/* Remove focus outline for navigation menu links */
.nav-menu a:focus {
  outline: none;
}

/* Ensure sufficient color contrast */
.nav-menu a:hover,
.nav-menu a:focus {
  color: #8B7B8B;
}

/* Make all SVGs transparent */
svg {
  background-color: transparent !important;
}

img[src*=".svg"] {
  background-color: transparent !important;
}

/* Ensure SVG elements have transparent backgrounds */
.character,
.activity-icon img,
.footer-logo-img {
  background-color: transparent !important;
}

/* Additional SVG transparency rules */
svg * {
  background-color: transparent !important;
}

/* Force transparency on all image elements that are SVGs */
img[src$=".svg"] {
  background: transparent !important;
  background-color: transparent !important;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #6B6B7A;
  background-color: white;
}

/* Font loading optimization */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
  padding: 12px 0;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
}

.announcement-banner.hidden {
  display: none;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  letter-spacing: 0.025em;
}

.banner-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  color: #6c757d;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-close:hover {
  background-color: rgba(108, 117, 125, 0.1);
  color: #495057;
}

.banner-close:focus {
  outline: 2px solid #7C9885;
  outline-offset: 2px;
}

.banner-close svg {
  width: 16px;
  height: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  height: 80px;
  overflow: visible;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #6B6B7A;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #B8A9C9;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #B8A9C9;
}

/* Instagram link styling in navigation */
.nav-menu a[href*="instagram.com"] {
  position: relative;
  background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.nav-menu a[href*="instagram.com"]:hover {
  background: linear-gradient(45deg, #E4405F, #C13584, #833AB4, #F56040);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.05);
}

.nav-menu a[href*="instagram.com"]::after {
  content: '📷';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  opacity: 0.7;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: white;
  border: none;
  padding: 8px;
  border-radius: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #6B6B7A;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 70vh;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-main {
  margin-bottom: 3rem;
}

.hero-title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Activities title section with characters */
.activities-title-section {
  display: flex;
  align-items: center;
  /* gap: 1rem; */
  justify-content: center;
  margin-bottom: 2rem;
}

.activities-characters {
  position: relative;
  width: 160px;
  height: 200px;
  margin-top: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  margin-bottom: 2.5rem;
}

.main-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

.subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Single CTA button - show on all screens */
.instagram-cta {
  display: inline-block;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(45deg, #B8A9C9, #D4C5E6);
  color: white;
  box-shadow: 0 8px 25px rgba(184, 169, 201, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(184, 169, 201, 0.4);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #7C9885;
  border: 2px solid #7C9885;
}

.cta-button.secondary:hover {
  background: #7C9885;
  color: white;
  transform: translateY(-3px);
}

/* Instagram CTA Button Styling */
.instagram-cta {
  background: linear-gradient(45deg, #E4405F, #C13584, #833AB4, #F56040, #F77737) !important;
  background-size: 300% 300% !important;
  animation: instagram-gradient 3s ease infinite !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 8px 25px rgba(196, 53, 132, 0.4) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.instagram-cta:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(196, 53, 132, 0.6) !important;
  animation-duration: 1.5s !important;
}

.instagram-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Reservation CTA Button Styling */
.reservation-cta {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.reservation-icon {
  flex-shrink: 0;
}

@keyframes instagram-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Character styles */
.character-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.boy-group,
.girl-group {
  display: flex;
  align-items: center;
  z-index: 10;
}

.character {
  height: 200px;
  transition: transform 0.3s ease;
  max-width: 100%;
}

.boy-character,
.girl-character {
  height: 160px;
  z-index: 5;
}

.character:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #E8F0F5 100%);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8B7B8B;
  margin-bottom: 3rem;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #B8A9C9;
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.star {
  color: #F4D03F;
  font-size: 1.2rem;
}

.testimonial-content p {
  color: #7A7A8A;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #B8A9C9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.author-info h4 {
  color: #8B7B8B;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.2rem 0;
}

.author-info span {
  color: #8A8A9A;
  font-size: 0.9rem;
}

/* Activities Section */
.activities {
  padding: 80px 0;
  background-color: white;
}

.activities h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8B7B8B;
  margin-bottom: 3rem;
  font-weight: 600;
}

.activities-content {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.activity-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.activity-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.activity-icon img {
  width: 80px;
  height: auto;
}

.activity-icon img[src*="bear.png"] {
  width: 100px;
  height: auto;
}

.activity-card h3 {
  color: #8B7B8B;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.activity-card p {
  color: #7A7A8A;
  line-height: 1.6;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 1rem;
}

.activity-card p:last-child {
  margin-bottom: 0;
}

.activity-card ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.activity-card li {
  color: #7A7A8A;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.activity-card strong {
  color: #8B7B8B;
  font-weight: 600;
}

/* Better spacing for different content types */
.activity-card p+ul {
  margin-top: 0.5rem;
}

.activity-card ul+p {
  margin-top: 1rem;
}

/* Highlight important information */
.activity-card p:has(strong) {
  background: rgba(184, 169, 201, 0.05);
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 3px solid #B8A9C9;
  margin: 1rem 0;
}

/* Responsive design for activities */
@media (max-width: 768px) {
  .activities-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .activity-card {
    padding: 1.5rem;
  }

  .activity-card h3 {
    font-size: 1.3rem;
  }

  .activity-card p {
    font-size: 0.95rem;
  }
}

/* Lectors Section */
.lectors {
  padding: 80px 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #E8F0F5 100%);
}

.lectors h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8B7B8B;
  margin-bottom: 1rem;
  font-weight: 600;
}

.lectors-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #7A7A8A;
  margin-bottom: 3rem;
  font-weight: 400;
}

.lectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.lector-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.lector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.lector-image {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #B8A9C9;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lector-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lector-info {
  flex: 1;
}

.lector-info h3 {
  color: #8B7B8B;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.lector-description {
  color: #7A7A8A;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.lector-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.specialty {
  background: linear-gradient(135deg, #B8A9C9 0%, #D4C5E6 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive design for lectors */
@media (max-width: 768px) {
  .lectors-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lector-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .lector-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
  }

  .lector-info h3 {
    font-size: 1.5rem;
  }

  .lector-description {
    font-size: 0.95rem;
  }

  .lector-specialties {
    justify-content: center;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #F8F9FA 0%, #E8F0F5 100%);
  padding: 3rem 0 1rem 0;
  border-top: 3px solid #B8A9C9;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section h4 {
  color: #8B7B8B;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #B8A9C9;
  border-radius: 1px;
}

.footer-logo h3 {
  color: #8B7B8B;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.footer-logo p {
  color: #8A8A9A;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.footer-logo-img {
  height: 40px;
  margin-bottom: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-persons {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-person-group {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-person {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7C9885;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-person-group:first-child .contact-person {
  margin-top: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.address-section {
  margin-top: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #7A7A8A;
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.contact-item svg {
  color: #B8A9C9;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item a {
  color: #7A7A8A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #7C9885;
  text-decoration: underline;
}

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  color: #8B7B8B;
  font-weight: 500;
  font-size: 0.9rem;
}

.hours-item .time {
  color: #8A8A9A;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #B8A9C9;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #D4C5E6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(184, 169, 201, 0.3);
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
  text-align: center;
  position: relative;
}

.footer-bottom p {
  color: #8A8A9A;
  font-size: 0.85rem;
  margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact-persons {
    gap: 1.5rem;
  }

  .contact-person-group {
    max-width: 48%;
  }
}

/* Mobile Hero Optimizations */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-image {
    min-height: 60vh;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title-section {
    margin-bottom: 1.5rem;
  }

  .main-title {
    font-size: 2.8rem;
    line-height: 1.1;
  }

  .subtitle {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .main-title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-title-section {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-title-section .hero-title {
    order: 1;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 200px;
  }


  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-persons {
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .contact-person-group {
    max-width: 100%;
    min-width: auto;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .address-section {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-button {
    width: 180px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .activities h2 {
    font-size: 2rem;
  }

  .activity-card {
    padding: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activity-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for images */
.activity-icon img {
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon img {
  transform: scale(1.1);
}