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

body {
  font-family: "Outfit", sans-serif;
}

/* ================= NAVBAR ================= */

.navbar {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}

.logo .deba {
  color: #d9d9d9;
}

.logo .studio {
  color: #2ecc71;
}

/* Menu Desktop */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2ecc71;
}

/* Right Side */
.right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Globe */
.globe {
  font-size: 20px;
  cursor: pointer;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  background: #000;
  height: 2px;
  margin-bottom: 6px;
  transition: 0.3s;
}

/* 2 long lines */
.hamburger span:nth-child(1),
.hamburger span:nth-child(2) {
  width: 100%;
}

/* 3rd shorter right aligned */
.hamburger span:nth-child(3) {
  width: 60%;
  align-self: flex-end;
}

/* ================= HERO ================= */

.hero {
  margin-top: 100px;
  height: calc(100vh - 100px);
  width: 100%;
}

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

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .navbar {
    padding: 0 25px;
  }

  .nav-links {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 25px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= ABOUT SECTION ================= */

.about {
  padding: 140px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #111;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.about strong {
  font-weight: 600;
  color: #111;
}

/* Fade Animation */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= ABOUT STATS ================= */

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
  text-align: center;
}

.stat h3 {
  font-size: 42px;
  font-weight: 600;
  color: #2ecc71;
  /* Grün wie STUDIO */
  margin-bottom: 10px;
}

.stat p {
  font-size: 15px;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 500px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 120px 20px;
  background: #111;
  color: white;
  text-align: center;
  position: relative;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  animation: fadeSlide 0.8s ease;
}

.testimonial.active {
  display: block;
}

.stars {
  margin-bottom: 25px;
}

.stars i {
  color: #2ecc71;
  margin: 0 4px;
}

.testimonial p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #ddd;
}

.testimonial h4 {
  font-weight: 400;
  color: #aaa;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= SERVICES ================= */

.services {
  padding: 140px 20px;
  background: #f9f9f9;
}

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

.services h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 80px;
  text-align: center;
  color: #111;
}

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

.service-box {
  background: white;
  padding: 50px 40px;
  border-radius: 8px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0%;
  background: #2ecc71;
  transition: 0.4s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-box:hover::before {
  width: 100%;
}

.service-icon {
  font-size: 32px;
  color: #2ecc71;
  margin-bottom: 25px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #111;
}

.service-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services h2 {
    margin-bottom: 60px;
  }
}

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 140px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.faq-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.faq-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #111;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  color: #2ecc71;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
}

.faq-item.active .faq-icon i {
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ================= CTA BANNER ================= */

.cta-banner {
  padding: 140px 20px;
  background: #111;
  text-align: center;
  color: white;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta-banner p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 50px;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #2ecc71;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #27ae60;
  transform: translateY(-3px);
}

/* ================= CONTACT ================= */

.contact-section {
  padding: 140px 20px;
  background: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.contact-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

input,
textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  transition: 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2ecc71;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.15);
}

.contact-button {
  grid-column: span 2;
  padding: 16px;
  background: #2ecc71;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-button:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width,
  .contact-button {
    grid-column: span 1;
  }
}

/* ================= FOOTER ================= */

.footer {
  background: #111;
  color: white;
  padding: 80px 20px 40px;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

/* Logo */
.footer-logo {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-logo .deba {
  color: #d9d9d9;
}

.footer-logo .studio {
  color: #2ecc71;
}

/* Socials */
.footer-socials a {
  color: white;
  margin-left: 20px;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #2ecc71;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin-right: 25px;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #2ecc71;
}

.footer-copy {
  font-size: 14px;
  color: #777;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }

  .footer-socials a {
    margin: 0 10px;
  }
}

.about,
.testimonials,
.services,
.faq-section,
.cta-banner,
.contact-section {
  scroll-margin-top: 120px;
}

html {
  scroll-behavior: smooth;
}

/* ================= LANGUAGE SWITCHER ================= */

.language-switcher {
  position: relative;
}

.language-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  min-width: 140px;
  display: none;
  flex-direction: column;
  animation: fadeInLang 0.2s ease;
  z-index: 2000;
}

.language-dropdown a {
  padding: 10px 20px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  transition: 0.2s ease;
}

.language-dropdown a:hover {
  background: #f4f4f4;
  color: #2ecc71;
}

.language-dropdown.active {
  display: flex;
}

@keyframes fadeInLang {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= LEGAL DRAWER ================= */

.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 4000;
}

.legal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.legal-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  height: 85vh;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -20px 70px rgba(0, 0, 0, 0.25);
  transition: 0.55s cubic-bezier(0.22, 0.8, 0.22, 1);
  z-index: 4001;
  display: flex;
  flex-direction: column;
}

.legal-drawer.active {
  bottom: 0;
}

/* HEADER FIXED */
.legal-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
}

.legal-header h3 {
  font-size: 20px;
  font-weight: 600;
}

.legal-close {
  border: none;
  background: #f3f3f3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: 0.25s;
}

.legal-close:hover {
  background: #2ecc71;
  color: white;
}

/* CONTENT SCROLL */
.legal-content {
  padding: 25px;
  overflow-y: auto;
  line-height: 1.8;
  color: #444;
}

.legal-content h2 {
  margin: 20px 0 10px;
  font-size: 22px;
}

.legal-content h3 {
  margin-top: 30px;
  font-size: 18px;
}

.legal-content h4 {
  margin-top: 20px;
  font-size: 16px;
}

.legal-content p {
  margin: 10px 0;
}

.legal-content ul {
  padding-left: 18px;
  margin: 10px 0;
}
