/**
 * Legal Pages Styles (Impressum, Datenschutz, AGB)
 * GEORGE tecoil Theme
 */

/* ==========================================================================
   Hero Section - Legal Pages
   ========================================================================== */

.legal-page {
  overflow-x: hidden;
}

.hero-legal {
  background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
  min-height: 60vh;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-legal .hero-split-inner {
  display: flex;
  align-items: center;
}

.hero-legal .hero-col.text {
  max-width: 800px;
}

.hero-legal .title-yellow {
  background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
}

.hero-legal .sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 600px;
}

/* ==========================================================================
   Legal Content Section
   ========================================================================== */

.section-legal {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-legal .section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-legal .section-head .title-yellow {
  background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
}

.section-legal .section-head p {
  color: #5c6b7a;
  font-size: 1.1rem;
}

/* Legal Content Box */
.legal-content {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Headings inside legal content */
.legal-content h2 {
  color: #002d53;
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fdc300;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

/* Paragraphs */
.legal-content p {
  color: #5c6b7a;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}

.legal-content strong {
  color: #002d53;
  font-weight: 700;
}

/* Links */
.legal-content a {
  color: #002d53;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #fdc300;
}

/* Contact Box */
.contact-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 4px solid #fdc300;
}

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

.contact-box p:last-child {
  margin-bottom: 0;
}

/* Legal Date */
.legal-date {
  margin-top: 40px;
  font-size: 14px;
  color: #999;
}

/* Lists inside legal content */
.legal-content ul,
.legal-content ol {
  color: #5c6b7a;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* H3 Headings for Datenschutz */
.legal-content h3 {
  color: #002d53;
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 30px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
}

/* Highlight Box (for important notices) */
.highlight-box {
  background: rgba(253, 195, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0 30px;
  border-left: 4px solid #fdc300;
}

.highlight-box p {
  margin-bottom: 8px;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .hero-legal {
    padding: 100px 0 60px;
    min-height: 50vh;
  }

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

  .hero-legal .sub {
    font-size: 1.1rem;
  }

  .section-legal {
    padding: 60px 0;
  }

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

  .legal-content {
    padding: 30px 20px;
    border-radius: 15px;
    margin-top: 30px;
  }

  .legal-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .legal-content p {
    font-size: 15px;
  }

  .contact-box {
    padding: 20px;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .hero-legal {
    padding: 90px 0 50px;
    min-height: 40vh;
  }

  .hero-legal .title-yellow {
    font-size: 2rem;
  }

  .hero-legal .sub {
    font-size: 1rem;
  }

  .section-legal .section-head .title-yellow {
    font-size: 1.75rem;
  }

  .legal-content {
    padding: 25px 15px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .legal-content p {
    font-size: 14px;
  }
}

/* ==========================================================================
   Impressum Page Specific
   ========================================================================== */

.impressum-page .legal-content {
  /* Can add specific overrides for Impressum if needed */
}

/* ==========================================================================
   Datenschutz Page Specific
   ========================================================================== */

.datenschutz-page .legal-content {
  /* Can add specific overrides for Datenschutz if needed */
}

/* ==========================================================================
   AGB Page Specific
   ========================================================================== */

.agb-page .legal-content {
  /* Can add specific overrides for AGB if needed */
}
