/* 
* Main Stylesheet for domain.com
* Colors:
* - Saffron Glow (#FFB400) - primary branding color
* - Midnight Plum (#3B0A45) - for headings and contrast elements
* - Mint Frost (#CFFFE5) - background highlights
* - Slate Smoke (#5D5E60) - neutral text and UI accents
* - Crimson Drift (#D7263D) - call-to-action highlights
*/

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5D5E60;
  background-color: #fff;
}

a {
  color: #3B0A45;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFB400;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #3B0A45;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1rem;
}

/* Layout & Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

/* Anker-Ziel-Offset für Navigationspunkte */
section[id] {
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-divider {
  height: 4px;
  width: 60px;
  background: #FFB400;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #D7263D;
  color: white;
}

.btn-primary:hover {
  background-color: #b41f33;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(215, 38, 61, 0.2);
}

.btn-secondary {
  background-color: #3B0A45;
  color: white;
}

.btn-secondary:hover {
  background-color: #2a0731;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 10, 69, 0.2);
}

.btn-text {
  color: #D7263D;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D7263D;
  transition: width 0.3s ease;
}

.btn-text:hover::after {
  width: 100%;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FFB400, #D7263D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: #3B0A45;
  transition: all 0.3s ease;
}

.menu-toggle {
  display: none;
}

.main-nav ul {
  display: flex;
}

.main-nav ul li {
  margin-left: 30px;
}

.main-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #3B0A45;
  position: relative;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFB400;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  padding-top: 80px;
}

.hero-section h1 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 10, 69, 0.8), rgba(215, 38, 61, 0.7));
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #CFFFE5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Werte-Icons */
.value-icon-precision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233B0A45'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm1-13h-2v6l5.2 3.2.8-1.3-4-2.4V7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.value-icon-transparency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233B0A45'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.value-icon-efficiency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233B0A45'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5.97 4.06L14.09 7l1.41 1.41L16.91 7l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41zm-6.78 9.94L5 15.75l1.41-1.41 1.41 1.41L12.25 11l1.41 1.41-6.41 6.59z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Services Section */
.services-section {
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
}

.service-card h3 {
  text-align: center;
  margin-bottom: 15px;
}

.service-card p {
  text-align: center;
  margin-bottom: 20px;
}

.service-card .btn-text {
  display: block;
  text-align: center;
  margin-top: auto;
}

/* Why Choose Us Section */
.why-us-section {
  background-color: #fff;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-us-image {
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
}

.why-us-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background-color: #FFB400;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
}

.why-us-icon::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

.why-us-text {
  flex: 1;
}

.why-us-text h4 {
  margin-bottom: 5px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f9f9f9;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 100%;
  padding: 20px;
  display: none;
}

.carousel-item.active {
  display: block;
}

.testimonial-content {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 700;
  color: #3B0A45;
  margin-bottom: 5px;
}

.client-company {
  color: #5D5E60;
  font-size: 0.9rem;
}

.carousel-controls {
  text-align: center;
  margin-top: 20px;
}

.carousel-controls input[type="radio"] {
  display: none;
}

.carousel-control {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #CFFFE5;
  border: 2px solid #FFB400;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="radio"]:checked + .carousel-control {
  background-color: #FFB400;
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  text-align: center;
  padding: 30px;
  background-color: #3B0A45;
  color: white;
}

.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, #3B0A45, #D7263D);
}

.pricing-header h3 {
  color: white;
  margin-bottom: 10px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-period {
  margin-left: 5px;
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pricing-features ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB400;
  font-weight: bold;
}

.pricing-card .btn {
  display: block;
  margin: 0 30px 30px;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #CFFFE5 50%, #D7263D 50%);
  position: relative;
}

.form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-info h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #FFB400;
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-weight: normal;
  flex: 1;
}

.contact-form .btn {
  width: 100%;
  margin-top: 10px;
}

/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-toggle {
  display: none;
}

.accordion-title {
  background-color: #fff;
  padding: 15px 20px;
  display: block;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.accordion-title:after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  background-color: #fff;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-toggle:checked + .accordion-title {
  background-color: #CFFFE5;
}

.accordion-toggle:checked + .accordion-title:after {
  content: '−';
}

.accordion-toggle:checked ~ .accordion-content {
  max-height: 1000px;
  padding: 20px;
}

/* Footer */
.site-footer {
  background-color: #3B0A45;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(135deg, #FFB400, #CFFFE5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.footer-logo-info p {
  opacity: 0.8;
}

.footer-contact h3,
.footer-links h3 {
  color: #FFB400;
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: #CFFFE5;
}

.footer-contact a:hover {
  color: #FFB400;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.6;
}