/* General Styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* General Sections */
section {
  padding: 80px 20px; /* More vertical spacing */
}

/* Individual Sections (if needed) */
.about,
.tools,
.videos,
.community,
.call-to-action,
.privacy {
  padding: 80px 20px;

  margin: 0 auto; /* Centers the content */
  padding: 0 20px; /* Provides some space on the sides */
  text-align: center; /* Centers the text */
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Fixed Menu */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0); /* Default transparent background */
  backdrop-filter: blur(0px); /* No blur by default */
  -webkit-backdrop-filter: blur(0px); /* For Safari */
  color: white;
  transition: background 0.3s ease, backdrop-filter 0.3s ease; /* Smooth transition */
}

.hero-header.scrolled {
  background: rgba(0, 0, 0, 0.2); /* Slightly transparent background */
  backdrop-filter: blur(10px); /* Blur when scrolling */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.app-name {
  font-size: 1.8rem;
  font-weight: bold;
}

.social-links {
  display: flex;
  gap: 10px; /* Space between icons */
}

.social-links img {
  width: 24px; /* Icon size */
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease; /* Animation on hover */
}

.social-links img:hover {
  transform: scale(1.2); /* Enlargement on hover */
}

/* Media (Image + Video) */
.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Behind the content and header */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Visible by default */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Behind the content */
  border-radius: 0; /* No rounded corners */
}

/* Show video when loaded */
.hero-video.loaded {
  display: block;
}

/* Hero Content */
.hero-content {
  z-index: 1; /* Ensures content is above video */
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-button {
  background: #6c63ff;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
}

.hero-button:hover {
  background: #5548c5;
}

/* Product Section */
.product {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product h2 {
  text-align: center;
  margin-bottom: 40px;
}

.product-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.product-item img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

.product-item .text {
  flex: 1;
  padding: 20px;
}

.product-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-item.reverse {
  flex-direction: row-reverse;
}

/* Menüs Sektion */
.menus {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto; /* Zentriert die Sektion */
  text-align: center; /* Zentriert den Text */
}

/* Menüpunkte */
.menus h2 {
  margin-bottom: 40px; /* Abstand nach unten */
}

.menus h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Produkt-Item innerhalb der Menüs Sektion */
.menus .product-item {
  display: flex;
  align-items: center;
  justify-content: center; /* Zentriert den Inhalt */
  margin-bottom: 40px; /* Abstand zwischen den Items */
}

/* Produkt-Item Text */
.menus .product-item .text {
  flex: 1;
  padding: 20px;
}

/* Bilder innerhalb der Menüs Sektion */
.menus .product-item img {
  max-width: 30%;
  height: auto;
  border-radius: 10px;
  margin-left: 20px; /* Abstand links vom Text */
}

/* Reverse die Richtung von Bild und Text */
.menus .product-item.reverse {
  flex-direction: row-reverse; /* Bild nach rechts verschieben */
}

.menus .product-item .text {
  text-align: left; /* Text linksbündig für mehr Struktur */
}


/* About Section */
.about {
  margin: 20px auto;
  max-width: 1200px;
  text-align: center;
  padding: 20px;
}

.about h2 {
  margin-bottom: 20px; 
}

.about p {
  margin-bottom: 20px; 
}

/* Love Section */
.love {
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  padding: 20px;
}

.love h2 {
  margin-bottom: 20px; 
}

.love p {
  margin-bottom: 20px; 
}

.bullet-list {
  list-style: none; 
  padding: 0;
  margin: 20px 0;
  text-align: left; 
}

.bullet-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.bullet-icon {
  font-size: 1.5rem; 
  margin-right: 10px; 
}

/* Tools Section */
.tools {
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

.tool-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tool {
  text-align: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tool img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.tool h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.tool p {
  font-size: 1rem;
  color: #555;
}

/* Videos Section */
.videos {
  padding: 40px 20px;
  text-align: center;
}

.video-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

video {
  border-radius: 10px;
}

/* Community Section */
.community {
  padding: 60px 20px; /* Sufficient space for text and button */
  text-align: center;
  background: #f9f9f9;
  position: relative; /* Standard positioning */
}

.community h2 {
  margin-bottom: 20px; /* Space between title and button */
}

.community p {
  margin-bottom: 20px; /* Space between text and button */
}

.community-button {
  display: inline-block; /* Correct block display for buttons */
  padding: 10px 20px;
  font-size: 1.2rem;
  text-decoration: none;
  background: #6c63ff;
  color: white;
  border-radius: 5px;
}

.community-button:hover {
  background: #5548c5;
}

/* Call-to-Action Section */
.call-to-action {
  padding: 60px 20px; /* Sufficient space top and bottom */
  text-align: center;
  position: relative; /* Standard positioning */
}

.call-to-action h2 {
  margin-bottom: 20px; /* Space between title and button */
}

.call-to-action p {
  margin-bottom: 20px; /* Space between text and button */
}

.call-to-action a {
  display: inline-block; /* Correct block display for buttons */
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  background: #6c63ff;
  color: white;
  border-radius: 5px;
}

.call-to-action a:hover {
  background: #5548c5;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 40px 20px;
  font-size: 0.9rem;
  line-height: 1.6;
}

footer a {
  color: #f1d600; /* Link color */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-top {
  text-align: center;
  margin-bottom: 40px;
}

.footer-top p {
  margin-bottom: 10px;
}

.footer-content {
  display: flex; /* Flexbox for side-by-side layout */
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1; /* Each column takes equal space */
  padding: 10px;
}

.footer-column h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-column p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
}

.logo-section {
  margin-bottom: 20px;
}

.footer-logo {
  max-height: 50px;
  margin: 0 auto;
}

/* Platform Note Section */
.platform-note {
    text-align: center;
    font-style: italic;
    margin-top: 10px;
    color: #f1d600;
}
