/* ----------------------------------
  ✅ Fonts & Grundlayout
---------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #f7f5f1;
  font-family: 'Playfair Display', serif;
  color: #111;
}

/* ----------------------------------
  ✅ Navigation
---------------------------------- */
.navbar {
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: #f7f5f1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: #111;
  font-family: sans-serif;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ----------------------------------
  ✅ Hero Section (Fullscreen)
---------------------------------- */
.hero {
  height: 100vh; /* volle Bildschirmhöhe */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f5f1;
  padding: 2rem;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100%;
}

.hero-left h1 {
  font-size: 4vw;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0;
}

.hero-right h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  font-family: 'Playfair Display', serif;
  margin: 0;
}


/* ----------------------------------
  ✅ Hero Text Animation
---------------------------------- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left h1,
.hero-right h2 {
  animation: fadeUp 1.2s ease-out both;
}

/* Optional: Verzögerung für staggered effect */
.hero-right h2 {
  animation-delay: 0.3s;
}

#typed-text {
  font-size: 4vw;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin: 0;
  white-space: pre-line;
  overflow: hidden;
  border-right: 2px solid #111;
  animation: blink 0.7s infinite step-end alternate;
}

@keyframes blink {
  0% { border-color: transparent; }
  100% { border-color: #111; }
}



/* ----------------------------------
  ✅ About Section
---------------------------------- */
.about {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.about .container {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.about h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about p {
  font-size: 1rem;
  font-family: sans-serif;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ----------------------------------
  ✅ Services Section
---------------------------------- */
.services {
  width: 100%;
  background-color: #ffffff;
  padding: 6rem 2rem;
}

.services h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  font-family: 'Playfair Display', serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-item {
  border-top: 1px solid #ccc;
  padding-top: 2rem;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: sans-serif;
  color: #444;
}

/* ----------------------------------
  ✅ Packages Section
---------------------------------- */
.packages {
  width: 100%;
  background-color: #ffff;
  padding: 6rem 2rem;
}

.packages h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  font-family: 'Playfair Display', serif;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.package-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 2rem;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.package-card .tagline {
  font-style: italic;
  color: #777;
  margin-bottom: 0.5rem;
}

.package-card .price {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
}

.package-card ul li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #eee;
  font-family: sans-serif;
  color: #333;
}

/* ----------------------------------
  ✅ Vorteile Section
---------------------------------- */
.advantages {
  width: 100%;
  padding: 6rem 2rem;
  background-color: #fff;
}

.advantages-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}

.advantages-intro {
  flex: 1 1 300px;
}

.advantages-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.advantages-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-family: sans-serif;
}

.advantages-list {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.advantage {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon {
  font-size: 1.5rem;
  color: #111;
  font-weight: bold;
  line-height: 1;
}


/* ----------------------------------
  ✅ Static Pages Infos
---------------------------------- */


.static-pages-info {
  padding: 6rem 2rem;
  background-color: #ffffff;
}

.static-pages-info .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.static-pages-info h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-family: 'Playfair Display', serif;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.info-card {
  background-color: #f7f5f1;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  text-align: left;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.info-card p {
  font-family: sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.time-estimates {
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
}

.time-estimates li {
  font-size: 0.9rem;
  font-family: sans-serif;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e0e0e0;
}


/* ----------------------------------
  ✅ Projektseite: Kartenlayout
---------------------------------- */

.project-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-hero h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  margin: 0;
}

.projects {
  padding: 6rem 2rem;
  background-color: #ffffff;
}

.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.project-card {
  display: block;
  background-color: #f7f5f1;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  padding: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0;
}

.project-content {
  padding: 1.2rem;
}

.project-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
}

.project-content p {
  font-family: sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #444;
  margin: 0;
}


/* ----------------------------------
  ✅ Hosting & Domain Block
---------------------------------- */
.hosting-info {
  padding: 6rem 2rem;
  background-color: #fff;
}

.hosting-info .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.hosting-info h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-family: 'Playfair Display', serif;
}

.hosting-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hosting-card {
  background-color: #f7f5f1;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  text-align: left;
}

.hosting-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.hosting-card p {
  font-family: sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.hosting-price {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #111;
  background-color: #eaeaea;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-family: sans-serif;
}


.hosting-card {
  background-color: #f7f5f1;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
  padding-top: 3.5rem; /* Platz für das Preis-Badge oben */
}

.price-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: bold;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}





/* ----------------------------------
  ✅ Footer
---------------------------------- */
.footer {
  background-color: #f7f5f1;
  padding: 3rem 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 1.5rem;
}

.footer-brand p {
  margin: 0;
  font-family: sans-serif;
  color: #555;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: #111;
  font-family: sans-serif;
  position: relative;
  font-size: 0.9rem;
}

.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Optional für Social Icons
.footer-socials a img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover img {
  opacity: 1;
}
*/


/* ----------------------------------
  ✅ Upload Hero
---------------------------------- */
.upload-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.upload-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.upload-hero p {
  font-family: sans-serif;
  font-size: 1rem;
  color: #444;
  max-width: 600px;
}

/* ----------------------------------
  ✅ Upload Steps Grid
---------------------------------- */
.upload-steps {
  padding: 6rem 2rem;
  background-color: #ffffff;
}

.upload-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.upload-step {
  background-color: #f7f5f1;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.upload-step h3 {
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.8rem;
}

.upload-step p {
  font-size: 0.95rem;
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
}

.upload-step code {
  background-color: #eee;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* ----------------------------------
  ✅ Hinweis Block
---------------------------------- */
.upload-note {
  background-color: #f7f7f7;
  padding: 3rem 2rem;
  text-align: center;
}

.upload-note p {
  font-family: sans-serif;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ----------------------------------
  ✅ Impressum
---------------------------------- */

.legal-section {
  padding: 6rem 2rem;
  background-color: #fff;
}

.legal-section .container {
  max-width: 900px;
  margin: 0 auto;
  font-family: sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}

.legal-section h2 {
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}


/* ----------------------------------
  ✅ Änderungsservice
---------------------------------- */


.change-service {
  padding: 6rem 2rem;
  background-color: #fff;
  text-align: center;
}

.change-service h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  font-family: sans-serif;
  color: #444;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.change-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.change-card {
  background-color: #f7f5f1;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
}

.change-card h3 {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.change-tag {
  font-size: 0.9rem;
  font-family: sans-serif;
  color: #777;
  margin-bottom: 1rem;
}

.change-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.change-card ul li {
  font-size: 0.95rem;
  font-family: sans-serif;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}

.price-info {
  font-size: 1.1rem;
  font-weight: bold;
  font-family: sans-serif;
  color: #111;
}






