/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  --croatian-red: #8B0000;
  --croatian-blue: #003366;
  --croatian-gold: #FFD700;
  --charcoal: #2B2B2B;
  --light-grey: #E8E8E8;
  --warm-white: #FAFAFA;
}

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

/* Screen reader only content for accessibility */
.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;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  overflow-x: hidden;
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bg-light {
  background-color: var(--light-grey);
}

/* Color Classes */
.red {
  color: var(--croatian-red);
}

.blue {
  color: var(--croatian-blue);
}

.gold {
  color: var(--croatian-gold);
}

.gray {
  color: #666;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.btn-primary {
  background-color: var(--croatian-red);
  color: white;
}

.btn-primary:hover {
  background-color: #660000;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--charcoal);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

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

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

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

.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--croatian-red);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 1.5rem;
  height: 2px;
  background-color: var(--charcoal);
  transition: all 0.2s ease;
}

.mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid #e5e5e5;
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}

.mobile-link:hover {
  background-color: var(--light-grey);
  color: var(--croatian-red);
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero-image.jpg');
  background-size: cover;
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  max-width: 100%;
}

.about-paragraph {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stats-grid {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  height: 24rem;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.small-images img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 12rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.service-description {
  color: #666;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  color: #888;
  font-size: 0.875rem;
}

.service-features li {
  margin-bottom: 0.25rem;
}

/* Repertoire Section */
.repertoire-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.repertoire-main .card,
.repertoire-main-full .card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.repertoire-main-full {
  grid-column: 1 / -1;
}

.repertoire-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.repertoire-icon {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.repertoire-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.repertoire-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.repertoire-categories {
  margin-bottom: 1rem;
}

.category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.category-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.category-title {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.category-description {
  font-size: 0.875rem;
  color: #666;
}

.repertoire-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.repertoire-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-card {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.special-requests {
  background-color: white;
  border: 2px solid var(--croatian-gold);
  padding: 1rem;
  border-radius: 0.5rem;
}

.special-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.special-description {
  color: #666;
  font-size: 0.875rem;
}

/* Gallery Section */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.gallery-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close svg {
  width: 2rem;
  height: 2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
  padding: 1rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-nav svg {
  width: 2rem;
  height: 2rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: white;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1rem 1rem;
  border-radius: 0.5rem;
}

.lightbox-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lightbox-description {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.lightbox-counter {
  font-size: 0.75rem;
  opacity: 0.75;
  margin: 0;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Mobile responsiveness for lightbox */
@media (max-width: 768px) {
  .lightbox-info {
    font-size: 0.875rem;
  }
  
  .lightbox-title {
    font-size: 1.25rem;
  }
  
  .lightbox-nav {
    padding: 0.75rem;
  }
  
  .lightbox-nav svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .lightbox-close svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
  aspect-ratio: 16/9;
  background-color: #f3f4f6;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.news-publication,
.news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.news-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc2626;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-link:hover {
  color: #991b1b;
}

.link-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.news-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.news-contact-text {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.news-contact-link {
  color: #dc2626;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-contact-link:hover {
  color: #991b1b;
  text-decoration: underline;
}

/* Mobile responsiveness for news section */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .news-content {
    padding: 1.25rem;
  }
  
  .news-title {
    font-size: 1.125rem;
  }
  
  .news-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--croatian-gold);
}

.testimonial-text {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.author-avatar.red {
  background-color: var(--croatian-red);
}

.author-avatar.blue {
  background-color: var(--croatian-blue);
}

.author-avatar.gold {
  background-color: var(--croatian-gold);
  color: var(--charcoal);
}

.author-avatar.green {
  background-color: #10b981;
}

.author-avatar.purple {
  background-color: #8b5cf6;
}

.author-avatar.orange {
  background-color: #f59e0b;
}

.author-avatar.pink {
  background-color: #ec4899;
}

.author-avatar.teal {
  background-color: #14b8a6;
}

.author-avatar.indigo {
  background-color: #6366f1;
}

.author-avatar.brown {
  background-color: #a16207;
}

.author-name {
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.author-event {
  color: #888;
  font-size: 0.875rem;
  margin: 0;
}

/* Contact Section */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 68rem;
  margin: 0 auto 3rem;
}

.email-highlight, .phone-highlight {
  background-color: white;
  border: 2px solid rgba(0, 115, 176, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.email-icon, .phone-icon {
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.email-icon {
  background-color: var(--croatian-blue);
}

.phone-icon {
  background-color: var(--croatian-red);
}

.email-icon svg, .phone-icon svg {
  width: 2rem;
  height: 2rem;
}

.email-title, .phone-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.email-link, .phone-link {
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
  transition: color 0.2s ease;
}

.email-link {
  color: var(--croatian-blue);
}

.phone-link {
  color: var(--croatian-red);
}

.email-link:hover {
  color: var(--croatian-red);
}

.phone-link:hover {
  color: var(--croatian-blue);
}

.email-note {
  color: #374151;
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}

.contact-info {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.contact-icon.red {
  background-color: var(--croatian-red);
}

.contact-icon.gold {
  background-color: var(--croatian-gold);
  color: var(--charcoal);
}

.contact-icon.facebook {
  background-color: #1877F2;
  color: white;
}

.contact-icon.youtube {
  background-color: #ff0000;
}

.contact-icon.gray {
  background-color: #666;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-title {
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-detail {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-sub {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

.contact-link {
  color: var(--croatian-blue);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--croatian-red);
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--croatian-gold);
  margin-bottom: 1rem;
}

.footer-description {
  color: #ccc;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.social-link.facebook {
  background-color: #1877f2;
  color: white;
}

.social-link.facebook:hover {
  background-color: #1f4a8c;
}

.social-link.youtube {
  background-color: #dc2626;
}

.social-link.youtube:hover {
  background-color: #b91c1c;
}

.social-link.email {
  background-color: #666;
}

.social-link.email:hover {
  background-color: #555;
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.footer-section-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--croatian-gold);
}

.footer-link-button {
  background: none;
  border: none;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  display: flex;
  align-items: center;
}

.footer-link-button:hover {
  color: var(--croatian-gold);
}

.external-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: #ccc;
  margin: 0;
}

.footer-accent {
  color: var(--croatian-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }

  .hero-background {
    background-position: 50% 35%;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .section-title {
    font-size: 2.5rem;
  }

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

  .stats-grid {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .repertoire-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .repertoire-stats {
    flex-direction: row;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .email-highlight {
    flex-direction: column;
    text-align: center;
  }

  .email-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-background {
    background-position: 50% 45%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

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

@media (max-width: 390px) {
  .hero-background {
    background-position: 50% 55%;
  }
}

@media (max-width: 360px) {
  .hero-background {
    background-position: 50% 60%;
  }
}

@media (max-height: 600px) {
  .hero-background {
    background-position: 50% 20%;
  }
}

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