/* ===================================
   UROLOGIE COESFELD - MODERNES DESIGN
   =================================== */

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

:root {
  --primary-color: #0084d6;
  --secondary-color: #00a8e8;
  --accent-color: #ff6b6b;
  --dark-color: #1a1a2e;
  --light-color: #f5f5f5;
  --text-color: #333;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  scroll-behavior: smooth;
  min-height: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 2px 8px rgba(0, 132, 214, 0.3));
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

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

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

nav a:hover::after {
  width: 100%;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  background-color: var(--primary-color);
  background-image: url("dr.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  min-height: 350px;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-bg.is-active {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 132, 214, 0.62), rgba(0, 177, 194, 0.5));
  pointer-events: none;
  z-index: 1;
  transition: background-color 1s ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-intro > .hero-content > p {
  display: none;
}

.hero-text-slider {
  min-height: 120px;
  margin-bottom: 2rem;
}

.hero-intro .hero-text-slider {
  min-height: 86px;
  margin-bottom: 0;
}

.hero-description {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-description.is-active {
  display: block;
  opacity: 0.95;
}

.hero-quote {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-quote.is-active {
  display: block;
  opacity: 1;
}

.hero-quote.is-active .hero-description {
  display: block;
  opacity: 0.95;
}

.hero-quote .hero-description {
  margin-bottom: 0.75rem;
}

.welcome-hero .hero-quote .hero-description,
.welcome-hero .hero-quote-author {
  font-size: 1.55rem;
}

.hero-quote-author {
  font-size: 1.05rem;
  opacity: 0.9;
}

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

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== STARTSEITE WILLKOMMEN ===== */
.welcome-page {
  min-height: calc(100vh - 132px);
  padding: 28px 2rem 64px;
  background:
    linear-gradient(135deg, rgba(224, 250, 253, 0.96), rgba(122, 222, 232, 0.72) 48%, rgba(0, 151, 173, 0.82)),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #f2fdff 0%, #c4f4f8 45%, #54cedd 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.welcome-card {
  width: min(900px, 100%);
  background: #ffffff;
  border-top: 5px solid #00a8c8;
  box-shadow: 0 22px 48px rgba(0, 95, 120, 0.2);
}

.welcome-content {
  padding: 38px 42px 14px;
}

.welcome-content h1 {
  color: #003b71;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #8d8d8d;
}

.welcome-content p {
  max-width: 760px;
  font-size: 1rem;
  margin-bottom: 0;
}

.welcome-content k {
  display: block;
  max-width: 760px;
  color: #003b71;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}

.welcome-content k span {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
}

.practice-intro {
  max-width: 820px;
  margin: 1.4rem 0 1.8rem;
}

.practice-intro h2 {
  color: #008fbd;
  font-size: 1.55rem;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1.7rem;
}

.practice-intro p {
  max-width: none;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.welcome-content a {
  color: #005b92;
}

.welcome-section {
  margin-top: 58px;
}

.welcome-section h2 {
  color: #003b71;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.welcome-section-muted {
  margin-left: -42px;
  margin-right: -42px;
  padding: 42px;
  background: linear-gradient(135deg, #eefcff, #dcf8fb);
}

.welcome-hours {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(140px, 1fr);
  gap: 0.55rem 2rem;
  max-width: 560px;
}

.welcome-hours-layout {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(210px, 280px);
  gap: 1.35rem;
  align-items: start;
}

.news-highlight {
  max-width: 260px;
  padding: 1rem 1.1rem;
  border: 2px solid #00a8c8;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5fdff 0%, #e7f9fc 100%);
  box-shadow: 0 10px 22px rgba(0, 95, 120, 0.1);
}

.news-highlight-badge {
  display: inline-block;
  margin-bottom: 0.55rem !important;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #003b71;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: newsBlink 1.15s ease-in-out infinite;
}

.news-highlight h3 {
  margin: 0 0 0.65rem;
  color: #003b71;
  font-size: 0.96rem;
  line-height: 1.3;
}

.news-highlight-text,
.news-highlight-note {
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.45;
}

.news-highlight-text {
  margin-bottom: 0.65rem !important;
  font-weight: 700;
}

.news-highlight-note {
  color: #24516b;
}

@keyframes newsBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.98);
  }
}

.welcome-appointment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  background: #003b71;
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 59, 113, 0.22);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome-appointment-button:hover {
  background: #00a8c8;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 168, 200, 0.26);
}

/* ===== SLIDERS SECTION ===== */
.sliders-section {
  padding: 60px 2rem;
  background: white;
}

.sliders-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.slider-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slider-card:hover {
  transform: translateY(-10px);
}

.slider-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.slider-card:hover .slider-background {
  transform: scale(1.05);
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 132, 214, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.3s ease;
  z-index: 2;
}

.slider-card:hover .slider-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 132, 214, 0.5));
}

.slider-content h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
  opacity: 0;
}

.slider-card:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.left {
  left: 15px;
}

.slider-arrow.right {
  right: 15px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 2rem;
  background: var(--light-color);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 1rem auto;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 2rem;
  background: white;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-page .hero + .services .services-container > h2:first-child,
.about-page .hero + .services .services-container > div:first-of-type,
.about-page .team + .services,
.about-page .team + .services + section {
  display: none;
}

.about-page .hero + .services .section-title {
  margin-top: 0 !important;
}

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

.service-item {
  background: var(--light-color);
  padding: 40px 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s;
}

.service-item:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  border-left-color: var(--secondary-color);
}

.service-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-item ul {
  list-style: none;
  color: #666;
  font-size: 0.95rem;
}

.service-item li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: 80px 2rem;
  background: var(--light-color);
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.team-member {
  text-align: center;
}

.member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
}

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

.team-member h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-bio {
  color: #666;
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 2rem;
  background: white;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--light-color);
  padding: 40px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 132, 214, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 40px;
  border-radius: 10px;
}

.contact-info-box h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.info-item-content h4 {
  margin-bottom: 0.3rem;
}

.info-item-content p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  cursor: pointer;
  font-weight: normal;
}

/* ===== OPENING TIMES ===== */
.opening-hours {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  margin-top: 2rem;
}

.opening-hours h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.day {
  font-weight: 600;
  color: var(--primary-color);
}

.time {
  color: #666;
}

/* ===== FOOTER ===== */
footer {
  background: #ffffff;
  color: var(--text-color);
  padding: 50px 2rem 20px;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
}

.welcome-page + footer {
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: #003b71;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-color);
}

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

.footer-bottom a {
  color: #003b71;
}

/* ===== SLIDER RESPONSIVE ===== */
@media (max-width: 1000px) {
  .sliders-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .slider-card {
    height: 300px;
  }

  .slider-content h3 {
    font-size: 1.5rem;
  }

  .slider-content p {
    font-size: 0.9rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-card:hover .slider-arrow {
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .slider-card {
    height: 250px;
  }

  .slider-content h3 {
    font-size: 1.2rem;
  }

  .slider-content p {
    font-size: 0.85rem;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .sliders-section {
    padding: 40px 1rem;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

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

  .hero-text-slider {
    min-height: 150px;
  }

  .hero-intro .hero-text-slider {
    min-height: 112px;
  }

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

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

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 1rem;
    left: auto;
    width: min(280px, calc(100vw - 2rem));
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow);
    z-index: 1001;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .contact-info {
    display: none;
  }

  .header-container {
    position: relative;
    padding: 0.7rem 1rem;
  }

  .logo-img {
    height: 78px;
  }

  .welcome-page {
    min-height: calc(100vh - 101px);
    padding: 20px 1rem 40px;
  }

  .welcome-content {
    padding: 28px 24px 10px;
  }

  .welcome-content h1 {
    font-size: 1.75rem;
  }

  .welcome-section {
    margin-top: 42px;
  }

  .welcome-section h2 {
    font-size: 1.35rem;
  }

  .welcome-section-muted {
    margin-left: -24px;
    margin-right: -24px;
    padding: 30px 24px;
  }

  .welcome-hours {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .welcome-hours-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .welcome-hours span:nth-child(2n) {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    gap: 0.75rem;
  }

  .hero {
    min-height: 300px;
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

  .contact-info-box {
    padding: 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-banner-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px 20px;
  background: #ffffff;
  color: var(--dark-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-color);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-accept {
  border: 0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  background: var(--primary-color);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-decline {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: var(--dark-color);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-decline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cookie-accept:hover {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-banner-actions {
    justify-content: space-between;
  }
}
