/* ----------------------------
   :root (Global Variables)
---------------------------- */ :root {
  /* Color Palette */
  --cursor-color: #FF7900;
  --cursor-outline-color: #333333;
  --cursor-active-color: darkorange;
  --cursor-outline-hover: #555555;
  --text-color: #333;
  --bg-color: #E0D1BF;
  --menu-color: orange;
  --white: #ffffff;
  --shadow-color: rgba(241, 241, 244, 0.72);
  /* Sizes */
  --cursor-size: 8px;
  --cursor-outline-size: 30px;
  /* Fonts */
  --font-main: 'Inter', sans-serif;
  --font-size: 16px;
  /* Animation */
  --transition-speed: 0.15s;
}
/* ----------------------------
   General Reset & Base Styles
---------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--text-color);
  background-color: transparent;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
body {
  position: relative;
}
a {
  color: var(--cursor-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--cursor-active-color);
}
img {
  max-width: 100%;
  height: auto;
}
/* ----------------------------
   Custom Cursor Styles
---------------------------- */
@media (pointer: fine) {
  body {
    cursor: none; /* Hide standard cursor on desktop */
  }
  .cursor, .cursor-outline {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  .cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background-color: var(--cursor-color);
    transition: transform var(--transition-speed) ease-out;
  }
  .cursor-outline {
    width: var(--cursor-outline-size);
    height: var(--cursor-outline-size);
    border: 1px solid var(--cursor-outline-color);
    transition: transform 0.3s ease-out;
  }
  .cursor.active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--cursor-active-color);
  }
  .cursor-outline.active {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: var(--cursor-active-color);
  }
}
@media (pointer: coarse) {
  .cursor, .cursor-outline {
    display: none; /* Hide custom cursor on touch devices */
  }
}
/* ----------------------------
   Header & Navigation Styles
---------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
}
.logo {
  min-width: 80px;
  max-width: 180px;
  height: auto;
margin: 40px;
  z-index: 2;
}
.logo img {
  width: 100%;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}
.navigation-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.language-navigation {
  margin-bottom: 15px;
}
.language-navigation nav {
  display: flex;
  gap: 10px;
  font-size: 12px;
}
.language-navigation a {
  color: var(--cursor-outline-color);
  text-decoration: none;
  padding: 0 5px;
}
.main-navigation nav {
  display: flex;
  gap: 20px;
  font-size: 16px;
	margin: 40px;
}
.main-navigation a {
  color: var(--cursor-outline-color);
  text-decoration: none;
  position: relative;
  padding: 0 10px;
  transition: color 0.2s ease;
}
.main-navigation a:hover {
  color: var(--cursor-color);
}
.main-navigation a:not(:last-child)::after {
  content: "|";
  color: #666;
  position: absolute;
  right: -12px;
}
/* Mobile Navigation Button */
.mobile-nav-button {
  display: none;
  position: fixed;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  width: 40px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-nav-button .bar {
  width: 100%;
  height: 3px;
  background-color: var(--cursor-outline-color);
  transition: all 0.3s ease;
}
/* ----------------------------
   Background & Glass Effects
---------------------------- */
#myVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  width: 100%; /* Volle Breite */
  min-height: 100vh; /* Dynamische Höhe auf allen Seiten */
  position: absolute;
  top: 0;
  left: 0;
}
.glass-main {
  width: 100%;
  min-height: 100vh; /* Sicherstellen, dass es den gesamten Viewport ausfüllt */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* ----------------------------
   Main Content Sections
---------------------------- */
main {
  position: relative;
  min-height: 100vh;
}
section {
  padding: 40px 5%;
  margin-bottom: 80px;
}
/* Hero Section */
.hero, .home {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.welcome-message {
  position: absolute;
  top: 40vh;
  left: 50px;
  width: 60%;
  max-width: 800px;
}
.welcome-message h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--cursor-outline-color);
}
.welcome-message h2 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}
/* CTA Button */
.cta-button {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background-color: var(--cursor-color);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.cta-button:hover {
  background-color: var(--cursor-outline-hover);
  transform: scale(1.05);
}
.cta-button:active {
  transform: scale(0.95);
}
/* About Section */
.about-section {
  background-color: var(--bg-color);
  margin-top: 100vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 5%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-section .introduction {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
}
.experience-stats {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cursor-color);
}
.stat-label {
  font-size: 1rem;
  color: var(--cursor-outline-color);
}
/* Heading Styles */
.introduction h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--cursor-color);
}
.introduction h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--cursor-color);
}
/* Paragraph Styling */
.introduction p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}
/* Drop Cap Effect */
.drop-cap {
  text-indent: 0;
  font-size: 1.5rem;
  line-height: 1.6;
}
.drop-cap-letter {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--cursor-color);
  float: left;
  margin-right: 10px;
}
/* Pull Quote */
.pull-quote {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 20px 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-left: 5px solid var(--cursor-color);
  font-style: italic;
}
/* ----------------------------
   Testimonials Section Styles
---------------------------- */
.testimonials {
  padding: 80px 5% 60px;
  text-align: center;
}
.testimonials h2 {
  font-size: 2.2rem;
  color: var(--cursor-color);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}
.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--cursor-color);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}
.testimonial-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cursor-color);
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-quote {
  position: relative;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-color);
  line-height: 1.6;
}
.testimonial-quote::before {
  content: """;
font-size: 3rem;
  color: var(--cursor-color);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}
.testimonial-author {
  font-weight: 600;
  color: var(--cursor-color);
  margin-bottom: 5px;
}
.testimonial-company {
  font-size: 0.9rem;
  opacity: 0.8;
}
/* Testimonials Section (Slider alternative) */
.testimonials-section {
  padding-top: 60px;
  background-color: var(--bg-color);
}
.testimonials-section h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--cursor-outline-color);
}
.slider-wrap {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}
.slider {
  position: relative;
  width: 100%;
  left: 50px;
}
.slider-item {
  width: 530px;
  padding: 20px 0 25px 30px;
  border-radius: 10px;
  background-color: var(--white);
  display: flex;
  justify-content: flex-start;
  position: absolute;
  opacity: 1;
  z-index: 3;
  box-shadow: 0 4px 9px var(--shadow-color);
  left: 0;
  top: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.animation-card_image {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 9px var(--shadow-color);
  background-color: var(--white);
  overflow: hidden;
}
.animation-card_image img {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  object-fit: cover;
}
.animation-card_content {
  width: 100%;
  max-width: 374px;
  margin-left: 26px;
}
.animation-card_content_title {
  color: #4a4545;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
  line-height: 1.4;
  margin: 0;
}
.animation-card_content_description {
  color: #696d74;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 10px 0 0 0;
}
.animation-card_content_city {
  font-size: 12px;
  margin: 15px 0 0 0;
  font-weight: 500;
  text-transform: uppercase;
  color: #696d74;
}
/* Portfolio Preview */
.portfolio-preview {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.projects {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  border-radius: 5px;
  z-index: 2;
}
#viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#grid-container {
  position: absolute;
  width: 300%;
  height: 300%;
  top: -100%;
  left: -100%;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(20, 1fr);
  grid-gap: 40px;
  cursor: grab;
  transform-origin: center;
}
.grid-item {
  width: 150px;
  height: 150px;
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.grid-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.grid-container-dragging {
  cursor: grabbing;
}
/* Section for Service Introduction */
.store-introduction {
  padding: 100px 20px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
  backdrop-filter: blur(10px); /* Background blurring */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  color: #fff;
  font-size: 1.6rem;
  border-radius: 20px; /* Optional: rounded corners for glass effect */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37); /* Optional: shadow for depth */
}
.store-introduction h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--cursor-color); /* Consistent use of primary accent color */
}
.store-introduction p {
  font-size: 1.2rem;
  color: #ddd; /* Lighter gray for description */
}
/* Main Section for Service Packages */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
}
.product-item {
  background-color: var(--white); /* Consistent use of white background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--shadow-color); /* Unified shadow color */
  text-align: center;
  transition: transform 0.3s ease;
}
.product-item:hover {
  transform: translateY(-10px);
}
.product-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.product-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cursor-color); /* Accent color for titles */
}
.product-item p {
  font-size: 1rem;
  color: #666; /* Dark gray for descriptions */
  margin-bottom: 10px;
}
.product-item .price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cursor-color); /* Adjust price color */
  margin-bottom: 15px;
}
.product-item button {
  padding: 10px 20px;
  background-color: var(--cursor-color); /* Accent color as background */
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.product-item button:hover {
  background-color: darkorange; /* Darker shade for hover effect */
}
/* Combo Package Styles */
.product-item.combo {
  background-color: #f0f8ff;
  border: 2px solid var(--cursor-color); /* Border color to match accent color */
}
.product-item.combo h3 {
  color: var(--cursor-color);
}
/* Contact Form Section */
.contact-form-section {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  width: 100%;
}
.contact-form h2 {
  color: var(--cursor-outline-color);
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-form label {
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 5px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--cursor-outline-color);
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease-in-out;
  margin-bottom: 15px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--cursor-color);
  outline: none;
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form button {
  background-color: var(--cursor-color);
  color: white;
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
.contact-form button:hover {
  background-color: var(--cursor-active-color);
}
.contact-form button:focus {
  outline: none;
}
/* Footer */
footer {
  background-color: var(--cursor-outline-color);
  color: var(--white);
  padding: 30px 5%;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: var(--white);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--cursor-color);
}
/* Responsive Media Queries */
@media (max-width: 1200px) {
  .welcome-message {
    width: 75%;
  }
  .welcome-message h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 992px) {
  .slider-item {
    width: 450px;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .mobile-nav-button {
    display: flex;
  }
  .navigation-container {
    position: fixed;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 200px 20px 20px;
    transition: right 0.3s ease;
    flex-direction: column;
    align-items: center;
  }
  .navigation-container.active {
    right: 0;
  }
  .main-navigation nav {
    flex-direction: column;
    gap: 15px;
  }
  .main-navigation a:not(:last-child)::after {
    display: none;
  }
  .language-navigation {
    margin-bottom: 30px;
  }
  .welcome-message {
    width: 75%;
  }
  .welcome-message h1 {
    font-size: 2rem;
  }
  .welcome-message h2 {
    font-size: 1rem;
  }
  .experience-stats {
    gap: 30px;
  }
  .slider-item {
    width: 85%;
    max-width: 400px;
  }
  .projects {
    font-size: 30px;
  }
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
  header .main-navigation nav {
    display: block;
    text-align: left;
  }
  header .main-navigation nav a {
    margin: 10px 0;
  }
  .product-list {
    padding: 20px;
  }
  .glass-main {
    width: 100%;
  }
  .introduction h1 {
    font-size: 2rem;
  }
  .introduction h2 {
    font-size: 1.5rem;
  }
  .introduction p {
    font-size: 1rem;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form input, .contact-form select, .contact-form textarea {
    padding: 10px;
  }
  .contact-form button {
    padding: 10px;
  }
  .testimonials {
    padding: 60px 4% 40px;
  }
  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
	
}
@media (max-width: 576px) {
  .logo {
	marign-top: 20px;
    width:50%;
  }
  .welcome-message h1 {
    font-size: 1.8rem;
  }
  .slider-item {
    padding: 15px;
  }
  .animation-card_content {
    margin-left: 15px;
  }
  .contact-form h2 {
    font-size: 20px;
  }
  .contact-form label {
    font-size: 14px;
  }
  .contact-form input, .contact-form select, .contact-form textarea {
    font-size: 14px;
  }
  .contact-form button {
    font-size: 14px;
    padding: 12px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-item {
    padding: 25px;
  }
}
/* About page specific styles */
.about-container {
  padding: 120px 5% 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-header h1 {
  font-size: 3rem;
  color: var(--cursor-color);
  margin-bottom: 20px;
}
.about-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.about-image {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 40px;
  border: 4px solid var(--cursor-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content h2 {
  color: var(--cursor-color);
  font-size: 1.8rem;
  margin: 30px 0 15px;
  position: relative;
  padding-bottom: 10px;
}
.about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--cursor-color);
}
.about-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.drop-cap {
  position: relative;
  margin-bottom: 25px;
}
.drop-cap-letter {
  float: left;
  font-size: 4rem;
  line-height: 0.8;
  padding-right: 8px;
  padding-top: 4px;
  color: var(--cursor-color);
  font-weight: 700;
}
.pull-quote {
  font-size: 1.3rem;
  font-style: italic;
  border-left: 4px solid var(--cursor-color);
  padding-left: 20px;
  margin: 30px 0;
  color: var(--cursor-color);
  line-height: 1.6;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  margin: 25px 0;
}
.skill-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.skill-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}
.timeline {
  position: relative;
  margin: 30px 0 40px;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--cursor-color);
}
.timeline-item {
  position: relative;
  padding-bottom: 25px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--cursor-color);
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.timeline-date {
  font-weight: 600;
  color: var(--cursor-color);
  margin-bottom: 5px;
}
.timeline-title {
  font-weight: 600;
  margin-bottom: 5px;
}
.hobby-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hobby-section h3 {
  color: var(--cursor-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.contact-cta {
  text-align: center;
  margin-top: 60px;
}
.contact-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--cursor-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.contact-button:hover {
  background-color: var(--cursor-active-color);
  transform: scale(1.05);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-container {
    padding: 100px 4% 40px;
  }
  .about-header h1 {
    font-size: 2.5rem;
  }
  .about-content {
    padding: 30px 25px;
  }
  .about-image {
    width: 280px;
    height: 280px;
  }
  .pull-quote {
    font-size: 1.1rem;
    margin: 25px 0;
  }
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .about-container {
    padding: 80px 4% 30px;
  }
  .about-header h1 {
    font-size: 2rem;
  }
  .about-content h2 {
    font-size: 1.5rem;
  }
  .about-image {
    width: 220px;
    height: 220px;
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-gallery {
    grid-template-columns: 1fr;
  }
}
/* Contact Page Specific Styles */
.contact-container {
  padding: 120px 5% 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 80px;
}
.contact-header h1 {
  font-size: 3rem;
  color: var(--cursor-color);
  margin-bottom: 20px;
}
.contact-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 40px;
}
.contact-form-title {
  font-size: 1.8rem;
  color: var(--cursor-color);
  margin-bottom: 25px;
  font-weight: 600;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group textarea, .form-group select {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--cursor-color);
  box-shadow: 0 0 0 2px rgba(var(--cursor-color-rgb), 0.2);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.radio-option {
  display: flex;
  align-items: center;
}
.radio-option input[type="radio"] {
  margin-right: 10px;
}
.checkbox-group {
  margin-bottom: 20px;
}
.checkbox-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.checkbox-option input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}
.checkbox-option label {
  font-size: 0.9rem;
  line-height: 1.5;
}
.checkbox-option a {
  color: var(--cursor-color);
  text-decoration: none;
}
.checkbox-option a:hover {
  text-decoration: underline;
}
.submit-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--cursor-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.submit-button:hover {
  background-color: var(--cursor-active-color);
  transform: scale(1.05);
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
}
.contact-card-title {
  font-size: 1.4rem;
  color: var(--cursor-color);
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.contact-card-title svg {
  margin-right: 10px;
}
.contact-card-content {
  color: var(--text-color);
  line-height: 1.6;
}
.contact-card-content a {
  color: var(--cursor-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-card-content a:hover {
  color: var(--cursor-active-color);
  text-decoration: underline;
}
.office-hours {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-top: 10px;
}
.map-container {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  width: 325px;
  max-width: 450px;
  position: relative;
}
.map-placeholder {
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.social-icon:hover {
  background: var(--cursor-color);
  transform: scale(1.1);
}
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-color);
}
.social-icon:hover svg {
  fill: white;
}
.faq-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 40px;
  margin-top: 60px;
}
.faq-title {
  font-size: 2rem;
  color: var(--cursor-color);
  margin-bottom: 30px;
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-question {
  font-size: 1.2rem;
  color: var(--cursor-color);
  margin-bottom: 10px;
  font-weight: 600;
}
.faq-answer {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}
/* Responsive Adjustments */
@media (max-width: 1200px) {
  .contact-layout {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-container {
    padding: 100px 4% 40px;
  }
  .contact-header h1 {
    font-size: 2.5rem;
  }
  .contact-form-container, .contact-card {
    padding: 25px;
  }
  .faq-section {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .contact-container {
    padding: 80px 4% 30px;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
  .contact-header p {
    font-size: 1rem;
  }
  .submit-button {
    width: 100%;
    padding: 12px;
  }
}
/* Service-Seite spezifische Styles */
.services-container {
  padding: 120px 5% 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 80px;
}
.services-header h1 {
  font-size: 3rem;
  color: var(--cursor-color);
  margin-bottom: 20px;
}
.services-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-content {
  padding: 25px;
}
.service-title {
  font-size: 1.5rem;
  color: var(--cursor-color);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-description {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.service-features {
  margin-bottom: 20px;
}
.service-features ul {
  list-style-type: none;
  padding: 0;
}
.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 0.9rem;
}
.service-features li::before {
  content: "•";
  color: var(--cursor-color);
  font-size: 1.2rem;
  position: absolute;
  left: 5px;
  top: -2px;
}
.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cursor-color);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
}
.price-currency {
  font-size: 1rem;
  margin-right: 5px;
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: normal;
  margin-left: 5px;
}
.service-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-button {
  padding: 12px 25px;
  background-color: var(--cursor-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.service-button:hover {
  background-color: var(--cursor-active-color);
  transform: scale(1.05);
}
.service-timeframe {
  color: var(--text-color);
  font-size: 0.85rem;
  opacity: 0.8;
}
.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--cursor-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}
.testimonial-snippet {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px;
  border-radius: 8px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-color);
  margin-top: 15px;
  position: relative;
}
.testimonial-snippet::before {
  content: """;
font-size: 2rem;
  color: var(--cursor-color);
  position: absolute;
  top: -5px;
  left: 5px;
  opacity: 0.3;
}
.service-contact {
  text-align: center;
  margin: 80px 0 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
}
.service-contact h2 {
  color: var(--cursor-color);
  margin-bottom: 15px;
}
.service-contact p {
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}
.contact-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--cursor-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-button:hover {
  background-color: var(--cursor-active-color);
  transform: scale(1.05);
}
/* Responsive Anpassungen */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  }
}
@media (max-width: 768px) {
  .services-container {
    padding: 100px 4% 40px;
  }
  .services-header h1 {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  .service-title {
    font-size: 1.3rem;
  }
  .service-price {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .services-container {
    padding: 80px 4% 30px;
  }
  .services-header h1 {
    font-size: 2rem;
  }
  .services-header p {
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-button {
    padding: 10px 20px;
  }
  .service-contact {
    padding: 30px 20px;
  }
}
/* Infinites Projekt-Grid Styles - angepasst an bestehendes Design */
.infinite-projects-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 120px 0 0 0;
}
.infinite-projects-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  grid-template-rows: repeat(3, 300px);
  gap: 40px;
  transform-origin: center;
  cursor: grab;
}
.infinite-projects-grid.grabbing {
  cursor: grabbing;
}
.project-item {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.project-item img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  display: block;
}
.project-info {
  padding: 15px;
  height: 30%;
  background-color: rgba(255, 255, 255, 0.15);
}
.project-info h3 {
  margin: 0 0 5px 0;
  color: var(--cursor-color);
  font-size: 1.1rem;
}
.project-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.9;
}
/* Die Projekt-Placeholders werden nur einmal geladen und dann virtuell wiederholt */
.placeholder {
  display: none;
}