/* Massage Video Marktplatz - Stylesheet */

:root {
  --primary: #1899CD;
  --primary-dark: #1476a3;
  --orange: #FF8C00;
  --orange-dark: #e67e00;
  --secondary: #f5f5f0;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--secondary);
}

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

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px 0;
  margin-bottom: 40px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.header-logo {
  height: 50px;
  width: auto;
  transition: opacity 0.3s;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-left p {
  color: var(--text-light);
  font-size: 14px;
  margin-left: 5px;
}

.header-right {
  display: flex;
  gap: 10px;
}

/* Hero Section */
.hero {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text);
}

.hero p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 25px;
}

/* Section Divider */
.section-divider {
  background: var(--white);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  border-left: 5px solid var(--primary);
}

.section-divider h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary);
}

.section-divider p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

/* Products Section */
.products-header {
  margin-bottom: 30px;
}

.products-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.products-header p {
  color: var(--text-light);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1899CD 0%, #1476a3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--white);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.product-content {
  padding: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.product-image-title {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-style: italic;
}

.product-instructor {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
}

.product-description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-footer {
  border-top: 1px solid var(--border);
  padding-top: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.product-price-old {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: line-through;
}

.button-group {
  display: flex;
  gap: 8px;
}

/* Buttons */
.btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  flex: 1;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 14px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-small {
  padding: 8px 12px;
  font-size: 13px;
}

.btn-header {
  padding: 10px 20px;
}

/* Footer */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 30px 0;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.footer-section {
  text-align: center;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text);
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 14px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 0;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

.modal-body {
  padding: 20px;
}

.modal-body iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.no-results p {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .hero {
    padding: 30px 20px;
  }
  
  .hero h2 {
    font-size: 24px;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
/* Footer Styles */
.footer {
  background: #004c4c;
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Newsletter Section */
.footer-newsletter {
  max-width: 500px;
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-input-group input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #333333;
  border-radius: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 15px;
}

.newsletter-input-group input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  background: #222222;
}

.newsletter-input-group input[type="email"]::placeholder {
  color: #888888;
}

.newsletter-input-group button {
  padding: 12px 30px;
  background: #FF8C00;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-input-group button:hover {
  background: #ff9d1a;
}

.newsletter-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.newsletter-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.newsletter-checkbox label {
  flex: 1;
  cursor: pointer;
}

.checkbox-text {
  display: block;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.checkbox-privacy {
  display: block;
  color: #888888;
  font-size: 11px;
  line-height: 1.4;
}

.checkbox-privacy a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-privacy a:hover {
  text-decoration: underline;
}

/* Contact Section */
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact .contact-icon {
  font-size: 20px;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary);
}

/* Links Section */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-newsletter {
    max-width: 100%;
  }
  
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .newsletter-input-group button {
    width: 100%;
  }
}
	  
/* ============================================ */
/* SNIPPET 3: CSS-Code für Erfolgsbox */
/* ============================================ */
/* Fügen Sie diesen Code am ENDE Ihrer assets/css/style.css ein */

/* Newsletter Success Box */
.newsletter-success-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 25px 0;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  animation: slideDown 0.5s ease-out;
}

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

.success-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.success-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.success-text {
  flex: 1;
}

.success-text h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.success-text p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  opacity: 0.95;
}

.success-close {
  position: absolute;
  top: -5px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.success-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .success-content {
    flex-direction: column;
    text-align: center;
  }
  
  .success-text h2 {
    font-size: 22px;
  }
  
  .success-text p {
    font-size: 13px;
  }
  
  .success-close {
    top: 10px;
    right: 10px;
  }
}

