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


/* ===== SIMPLE LANGUAGE SWITCHER ===== */
.language-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.globe-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.globe-icon:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.globe-icon svg {
    width: 24px;
    height: 24px;
    fill: #2c3e50;
    transition: all 0.3s ease;
}

.globe-icon:hover svg {
    fill: #3498db;
    transform: scale(1.1);
}

.language-menu {
    position: absolute;
    top: 54px;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.language-switcher:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.2s ease;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
}

.language-option:first-child {
    border-radius: 12px 12px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 12px 12px;
}

.language-option:hover {
    background: #f8f9fa;
    color: #3498db;
    transform: translateX(4px);
}

.language-option.current {
    background: #3498db;
    color: white;
}

.language-option.current:hover {
    background: #2980b9;
    transform: translateX(4px);
}

.flag {
    font-size: 18px;
    margin-right: 8px;
}

/* Mobile adaptations */
@media screen and (max-width: 768px) {
    .language-switcher {
        top: 15px;
        left: 15px;
    }
    
    .globe-icon {
        width: 40px;
        height: 40px;
    }
    
    .globe-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .language-menu {
        top: 50px;
    }
    
    .language-option {
        padding: 14px 16px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .language-switcher {
        top: 10px;
        left: 10px;
    }
    
    .globe-icon {
        width: 36px;
        height: 36px;
    }
    
    .globe-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .language-menu {
        top: 46px;
        min-width: 120px;
    }
}



/* Base Styles */
:root {
  --primary: #1a6b8f;
  --primary-light: #3a8baf;
  --primary-dark: #0a4b6f;
  --secondary: #FABE22;
  --accent: #f7fff7;
  --dark: #2d3142;
  --light: #f7fff7;
  --teal: #FABE22;
  --turquoise: #55bcc9;
  --wood: #8a6552;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Modern Split Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.hero-left {
  width: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.hero-right {
  width: 50%;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 500px;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-author {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--dark);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-light:hover {
  background-color: white;
}

/* Book Summary with Split Design */
.book-summary {
  padding: 6rem 0;
  background-color: var(--light);
  position: relative;
}

.book-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: var(--primary-light);
  z-index: 0;
}

.summary-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.summary-image {
  flex: 1;
  max-width: 350px;
}

.book-3d {
  width: 100%;
  height: auto;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s ease;
}

.book-3d:hover {
  transform: perspective(1000px) rotateY(-5deg);
}

.summary-content {
  flex: 2;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.summary-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.summary-quote {
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
  padding-left: 1rem;
  margin: 2rem 0;
}

/* Book Details with Modern Tabs */
.book-details {
  padding: 6rem 0;
  background-color: white;
  position: relative;
}

.book-details::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: rgba(78, 205, 196, 0.1);
  z-index: 0;
}

.tabs {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--primary-light);
}

.tab-button {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.tab-button.active {
  color: var(--primary);
  border-bottom: 3px solid var(--secondary);
}

.tab-button:hover:not(.active) {
  color: var(--primary-light);
}

.tab-content {
  background-color: white;
  border-radius: 0 0 8px 8px;
}

.tab-panel {
  display: none;
  padding: 1rem 0;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.tab-panel h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tab-panel p {
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Quotes with Cards */
.quotes {
  padding: 6rem 0;
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.quotes::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.quotes::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.quotes .section-title {
  color: white;
  text-align: center;
}

.quotes .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}

.quote-card {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.quote-card::before {
  content: """;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.quote-text {
  font-style: italic;
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.quote-page {
  text-align: right;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

/* Target Audience with Modern Cards */
.target-audience {
  padding: 6rem 0;
  background-color: white;
}

.target-audience .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.target-audience .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--primary);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.audience-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.audience-card p {
  color: var(--dark);
}

/* Call to Action with Split Design */
.cta {
  padding: 6rem 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.cta-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
  padding-right: 3rem;
}

.cta-image {
  flex: 1;
  text-align: center;
}

.cta-book {
  max-width: 300px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  
  .hero-left, .hero-right {
    width: 100%;
    height: 50vh;
  }
  
  .hero-left {
    background-color: var(--primary-dark);
    padding: 3rem 1rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .summary-container {
    flex-direction: column;
    text-align: center;
  }
  
  .summary-image {
    margin: 0 auto 2rem;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cta-container {
    flex-direction: column;
  }
  
  .cta-content {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .cta::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.1;
  }
  
  .cta {
    background-color: var(--light);
  }
  
  .cta-title {
    color: var(--primary-dark);
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
  }
  
  .cta-text {
    color: var(--dark);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
  }
  
  .btn {
    font-size: 1rem;
    padding: 15px 30px;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .tab-buttons {
    flex-direction: column;
    border-bottom: none;
  }
  
  .tab-button {
    border-bottom: 1px solid var(--primary-light);
    padding: 15px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .tab-button.active {
    border-bottom: 1px solid var(--secondary);
    border-left: 3px solid var(--secondary);
    background-color: white;
    color: var(--primary-dark);
    font-weight: 700;
  }
  
  .quotes-grid, .audience-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .quote-card {
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .quote-text {
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .quote-page {
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .audience-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-top-width: 5px;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
}
/* Footer Mobile Responsive Styles - Für styles.css */

/* Desktop Footer Layout (Standard) */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Mobile Footer Layout */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .footer-logo {
        order: 1;
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        order: 2;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin: 0.5rem 0;
    }
    
    .footer-link {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }
    
    .copyright {
        order: 3;
        font-size: 0.8rem !important;
        margin-top: 0.5rem;
    }
}

/* Sehr kleine Bildschirme */
@media screen and (max-width: 480px) {
    .footer-links {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center;
    }
    
    .footer-link {
        display: block;
        text-align: center;
        min-width: auto;
    }
}
