/* ==================== */
/* Globale Styles       */
/* ==================== */

.phone-image {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
}

.section-heading {
  font-size: 64px;
  margin-bottom: 24px;
  text-align: center;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .feature-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.feature-card {
  background-color: #121212;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-card:hover {
  background-color: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-card .emoji {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: #ccc;
  font-size: 15px;
}

/* ==================== */
/* Intro Sektion        */
/* ==================== */

.features-intro {
  padding: 80px 20px;
  text-align: center;
}

.features-intro h1 {
  font-size: 84px;
  margin-bottom: 12px;
}

.features-intro h2 {
  font-size: 48px;
  margin-bottom: 12px;
}

.features-intro p {
  color: #999;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================== */
/* Blocking Features Sektion       */
/* =============================== */

.blocking-features {
  padding: 80px 20px;
}

.blocking-features h3 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.blocking-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.blocking-image {
  flex: 1 1 300px;
  text-align: center;
}

.picker-screenshot {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.blocking-cards {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.blocking-card {
  background-color: #121212;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #fff;
}

.blocking-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blocking-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

/* ========================= */
/* Physical Key Sektion      */
/* ========================= */
.key-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;

  max-width: 1200px;       /* Begrenzte Gesamtbreite */
  margin: 0 auto;          /* Zentriert die Sektion */
  padding-left: 40px;      /* Optional, wenn du noch mehr Rand willst */
  padding-right: 40px;
}

  
.key-section .key-text {
  flex: 1 1 300px;
}

.key-section .key-text h2.section-heading {
  font-size: 64px;
  margin-bottom: 16px;
  color: #fff;
  text-align: left;
}

.key-section .key-text .section-subtext {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

.key-section .key-image {
  flex: 1 1 300px;
  text-align: center;
}

@media (max-width: 800px) {
  .key-section {
    flex-direction: column;
    text-align: center;
  }

  .key-section .key-text h2.section-heading {
    text-align: center;
    font-size: 48px;
  }

  .key-section .key-text .section-subtext {
    text-align: center;
    margin: 0 auto;
  }
}


/* ====================================== */
/* Info-Sektionen (Clock, Preset, Schedule) */
/* ====================================== */

.info-section {
  padding: 80px 20px;
}

.info-section .info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.info-section img.phone-image {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
}

.info-section .info-text {
  flex: 1 1 320px;
  color: #ccc;
}

.info-section .section-heading {
  margin-bottom: 24px;
}

.sub-feature-group {
  display: flex;
  text-align: left;
  flex-wrap: wrap;
  gap: 40px;
}

.sub-feature-group.column-layout {
  text-align: center;
  flex-direction: column;
  gap: 32px;
}

.sub-feature {
  flex: 1 1 220px;
}

.sub-feature h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #fff;
}

.sub-feature p {
  font-size: 15px;
  margin: 4px 0;
  color: #ccc;
}

/* Nur für die Clock-Sektion */
.clock-text {
  padding-left: 8px; /* exakt gleicher linker Abstand wie .section-heading */
}

@media (max-width: 800px) {
.clock-text {
    padding-left: 0; /* für Mobilgeräte zentriert */
  }
}

/* ======================== */
/* Preset Sektion           */
/* ======================== */

#preset-section {
  padding-left: 100px;
  padding-right: 100px;
}

#preset-section .info-content {
  flex-direction: column;
  align-items: center;
}

#preset-section .info-text {
  text-align: center;
  padding-left: 250px;
  padding-right: 250px;
}

#preset-section .info-text h3 {
  font-size: 36px;
  text-align: center;
  margin: 0 0 24px;
}

#preset-section .info-text p {
  margin-bottom: 16px;
}

#preset-section .preset-facts {
  display: flex;
  gap: 40px;
  margin-top: 8px;
  flex-wrap: wrap;
}

#preset-section .preset-images {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

#presets-section .preset-images img.phone-image {
  margin-right: 0;
}

#preset-section .fact {
  text-align: center;
  flex: 1 1 100px;
}

#preset-section .fact-number {
  font-size: 32px;
  color: #77DB89;
  margin-bottom: 4px;
}

#preset-section .fact-desc {
  color: #999;
  font-size: 14px;
}


/* ======================== */
/* Schedule Sektion         */
/* ======================== */

#schedules-section .schedule-facts {
  display: flex;
  gap: 40px;
  margin-top: 8px;
  flex-wrap: wrap;
}

#schedules-section .schedule-images {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

#schedules-section .info-content {
  flex-direction: column;
  align-items: center;
}

#schedules-section .info-text {
  text-align: center;
  padding-left: 250px;
  padding-right: 250px;
}

#schedules-section .fact {
  text-align: center;
  flex: 1 1 100px;
}

#schedules-section .fact-number {
  font-size: 32px;
  color: #77DB89;
  margin-bottom: 4px;
}

#schedules-section .fact-desc {
  color: #999;
  font-size: 14px;
}
 
/* ======================== */
/* Privacy First Sektion    */
/* ======================== */

.privacy-first {
  padding: 80px 20px;
}

.privacy-first h3 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.privacy-cards {
  display: grid;
  /* Passe den Min-Wert an, um die Kartbreite zu ändern.
     Ändere den margin-Wert für den Abstand zum Rand. */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-card {
  background-color: #121212;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #fff;
}

.privacy-card .emoji {
  font-size: 32px;
  margin-bottom: 12px;
}

.privacy-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.privacy-card p {
  margin: 0;
  color: #ccc;
  font-size: 15px;
}

@media (max-width: 768px) {
  #preset-section,
  #schedules-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  #preset-section .info-text,
  #schedules-section .info-text {
    padding-left: 0;
    padding-right: 0;
  }
}
