/*
Theme Name: Astra Child SafeTradeBot JS v3
Template: astra
Version: 1.0.0
Author: SafeTradeBot Team
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@400;600&display=swap');

/* Platzhalter für eigenes Styling */
/* === SERVICES SECTION === 

.services-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px;
  align-items: stretch;
}

.service-box {
  background: #0d1117;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}
*/
/* Services Grid - Vertikal erzwingen
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  width: 100%;
  background-color: #111827;
  color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
} */

/* === Override Astra & erzwinge vertikale Services-Anordnung === 
.services-section .container .services-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.services-grid .service-box {
  width: 100% !important;
  display: block !important;
  background-color: #111827;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}*/

/*
Theme Name: Astra Child Safetradebot JS v3
Template: astra


@import url('../astra/style.css');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: block !important;
}

.hero-section,
.services-section,
.why-us-section,
.cta-section,
.contact-section {
  display: block;
  width: 100%;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
*/




/* === Layout-Container vertikal === */
body .site-content > .ast-container {
  display: block !important;
}

/* === Abschnitte untereinander statt nebeneinander === */
.hero-section,
.services-section,
.why-us-section,
.cta-section,
.contact-section {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}

/* === Kachel-Layout (Services) === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === Service-Kacheln (Boxen) === */
.service-box {
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #1e293b;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  border-color: transparent; /* Kein harter Rand */
  box-shadow:
    0 0 12px 4px rgba(88, 166, 255, 0.15),
    0 0 24px 8px rgba(88, 166, 255, 0.1),
    0 0 36px 12px rgba(88, 166, 255, 0.08);
}

/*
.service-box:hover {
  border: 1px solid #58a6ff;
  box-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
}
*/

/* === Gradient-Text Styling === */
.gradient-text {
  background: linear-gradient(90deg, #58a6ff, #6f86d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* === Button Styles === */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 10px 0 0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: linear-gradient(90deg, #4facfe, #6f86d6);
  color: #fff;
}

.btn-secondary {
  border: 2px solid #6f86d6;
  color: #6f86d6;
  background: transparent;
}

/* === Kontaktformular Layout (Optional) === */
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.cta-form button {
  background: #58a6ff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}