/* Generated by KI Map System */
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #00364f;
  --secondary: #f29400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Classic Layout - Serif Font */
body.layout-classic {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

body.layout-classic h1,
body.layout-classic h2,
body.layout-classic h3,
body.layout-classic p {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: all 0.3s;
  background: var(--primary);
}

.site-header.scrolled {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header .logo {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.site-header.scrolled .logo {
  color: var(--primary);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header nav a {
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 500;
  color: white;
  transition: color 0.2s;
}

.site-header.scrolled nav a {
  color: #333;
}

.site-header nav a:hover {
  color: rgba(255,255,255,0.7);
}

.site-header.scrolled nav a:hover {
  color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
}

.site-header.scrolled .menu-toggle {
  color: #333;
}

.menu-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #333;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .site-header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    align-items: flex-start;
  }
  
  .site-header nav.open {
    right: 0;
  }
  
  .site-header nav.open .menu-close {
    display: block;
  }
  
  .site-header nav a {
    color: #333;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  
  .site-header nav a:hover {
    color: var(--primary);
  }
  
  .site-header nav .btn {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }
}

/* Hero */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 100px 24px 60px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero .welcome-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero .btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s;
  margin: 8px;
}

.hero .btn:hover {
  transform: scale(1.05);
}

.hero .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
}

/* Stats Bar */
.stats-bar {
  background: #111;
  padding: 32px 24px;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-bar .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stats-bar .stat-label {
  font-size: 0.875rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
section {
  padding: 80px 24px;
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 48px;
}

/* Minimalist Layout Typography */
body.layout-minimalist section h2 {
  font-weight: 300;
}

body.layout-minimalist h3,
body.layout-minimalist .service-card h3,
body.layout-minimalist .feature-card h3,
body.layout-minimalist .visit-section h3,
body.layout-minimalist .contact-section h3 {
  font-weight: 400;
}

/* Minimalist Layout - Square shapes, no rounded corners */
body.layout-minimalist .service-card {
  border-radius: 0;
  box-shadow: none;
}

body.layout-minimalist .service-card .number {
  border-radius: 0;
}

body.layout-minimalist .feature-card .icon {
  border-radius: 0;
}

body.layout-minimalist .about-feature .icon {
  border-radius: 0;
}

body.layout-minimalist .testimonial-card {
  border-radius: 0;
}

body.layout-minimalist .gallery-grid img {
  border-radius: 0;
}

body.layout-minimalist .contact-box,
body.layout-minimalist .visit-card {
  border-radius: 0;
}

body.layout-minimalist .contact-form input,
body.layout-minimalist .contact-form textarea,
body.layout-minimalist .contact-form button {
  border-radius: 0;
}

body.layout-minimalist .btn {
  border-radius: 0;
}

body.layout-minimalist .about-grid img {
  border-radius: 0;
  box-shadow: none;
}

.section-gray {
  background: #f9fafb;
}

.section-badge {
  display: inline-block;
  padding: 4px 16px;
  background: color-mix(in srgb, var(--primary) 15%, white);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  margin-bottom: 16px;
}

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

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-text {
  font-size: 1.1rem;
  color: #666;
  white-space: pre-line;
}

.about-features {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature .icon {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--primary) 15%, white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

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

.service-card .number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-card img {
  width: calc(100% + 48px);
  margin: -24px -24px 16px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track > * {
  flex: 0 0 calc(33.333% - 11px);
  scroll-snap-align: start;
  box-sizing: border-box;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: white;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

@media (max-width: 768px) {
  .carousel-track > * {
    flex: 0 0 100%;
  }
  .carousel-track.testimonials-carousel > * {
    flex: 0 0 100%;
  }
}

.carousel-track.testimonials-carousel > * {
  flex: 0 0 calc(50% - 8px);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 24px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--primary) 15%, white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: #666;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #f9fafb;
  padding: 24px;
  border-radius: 8px;
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 12px;
}

.testimonial-card .text {
  font-style: italic;
  color: #666;
  margin-bottom: 16px;
}

.testimonial-card .name {
  font-weight: 600;
}

.testimonial-card .role {
  font-size: 0.875rem;
  color: #999;
}

/* CTA */
.cta-section {
  text-align: center;
  color: white;
  padding: 80px 24px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-section .btn {
  display: inline-block;
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s;
}

.cta-section .btn:hover {
  transform: scale(1.05);
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.visit-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.visit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opening-hours .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

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

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

/* Freetext */
.freetext-section {
  padding: 80px 24px;
}

.freetext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.freetext-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.freetext-centered h2,
.freetext-grid h2 {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .freetext-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Contact */
.contact-section {
  background: color-mix(in srgb, var(--primary) 10%, white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-box {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-box h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.contact-box p {
  margin-bottom: 16px;
}

.contact-box a {
  color: var(--primary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info .item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info .icon {
  color: var(--primary);
}

/* Form */
.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* Video Section */
.video-section {
  padding: 80px 24px;
  background: #f9fafb;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-single {
  max-width: 900px;
  margin: 0 auto;
}


.video-item {
  margin-bottom: 0;
}

.video-title {
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  color: #333;
}

/* Footer */
footer {
  background: var(--secondary);
  color: white;
  padding: 48px 24px 32px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

footer h4 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

footer .description {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

footer .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

footer .links a:hover {
  color: white;
}

footer .social-links {
  display: flex;
  gap: 16px;
}

footer .social-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer .social-links a:hover {
  color: white;
}

footer .copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-page h1 {
  color: var(--primary);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}

.legal-page p {
  margin-bottom: 16px;
  color: #666;
}

.legal-page a {
  color: var(--primary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--secondary);
  color: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

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

.cookie-banner-icon {
  flex-shrink: 0;
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-banner-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cookie-banner-link {
  color: var(--primary);
  font-size: 0.875rem;
  text-decoration: underline;
  display: inline-block;
  margin-top: 4px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner .btn-decline {
  background: white;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
}

.cookie-banner .btn-accept {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  .hero h1 { font-size: 2rem; }
  
  /* Hero Split Layout - Stack vertically on mobile */
  .hero-split .container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .hero-split .container > div:first-child {
    order: 1;
  }
  
  .hero-split .container > div:last-child {
    order: 2;
    margin-top: 32px;
  }
  
  .hero-split .container > div:first-child > div {
    justify-content: center;
  }
  
  .hero-split h1 {
    font-size: 2.5rem;
  }
  .hero p { font-size: 1rem; }
  
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .about-grid,
  .services-grid,
  .testimonials-grid,
  .features-grid,
  .visit-grid,
  .contact-grid,
  footer .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Wave Dividers */
.wave-divider {
  margin-top: -1px;
  margin-bottom: -1px;
  line-height: 0;
  overflow: hidden;
}

/* Elegant Layout - Left-aligned hero */
.hero-left-aligned {
  text-align: left;
}

/* Elegant Layout - Rounded cards */
body.layout-elegant .service-card,
body.layout-elegant .feature-card,
body.layout-elegant .testimonial-card,
body.layout-elegant .contact-box,
body.layout-elegant .visit-card {
  border-radius: 16px;
}

body.layout-elegant .btn {
  border-radius: 16px;
}

body.layout-elegant .about-grid img {
  border-radius: 16px;
}

body.layout-elegant .gallery-grid img {
  border-radius: 16px;
}

@media (max-width: 768px) {
  .hero-left-aligned {
    padding: 80px 16px 40px !important;
  }
  .hero-left-aligned h1 {
    font-size: 2rem !important;
  }
}