/* Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base Body Styles */
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Button Styling */
  button {
    background-color: #4CAF50;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 400;
    transition: all 0.3s ease;
  }
  button:hover {
    background-color: #45a049;
    transform: scale(1.05);
    cursor: pointer;
  }
  
  /* Navigation */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  .logo {
    font-size: 1.5em;
    font-weight: 600;
    color: #4CAF50;
    text-decoration: none;
  }
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
  }
  .nav-links {
    display: flex;
    gap: 20px;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  .nav-links a:hover {
    color: #4CAF50;
  }
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
    .nav-links {
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: rgba(26, 26, 26, 0.9);
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 20px 0;
      display: none;
    }
    .nav-links.active {
      display: flex;
    }
  }
  
  /* Header */
  header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/Weihnachtsmarkt.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  header h1 {
    font-size: 4em;
    font-weight: 600;
    margin-bottom: 20px;
  }
  header p {
    font-size: 1.5em;
    margin-bottom: 40px;
  }
  .cta-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 400;
    transition: all 0.3s ease;
  }
  .cta-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
  }
  
  /* Header Text Animation */
  header h1 span, header p span {
    position: relative;
    display: inline-block;
  }
  header h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #4CAF50;
    transition: width 0.8s ease, left 0.8s ease;
  }
  header p span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.8s ease, left 0.8s ease;
  }
  header h1 span.animated::after, header p span.animated::after {
    width: 100%;
    left: 0;
  }
  @media (prefers-reduced-motion: reduce) {
    header h1 span::after, header p span::after {
      transition: none;
    }
  }
  
  /* General Section Styling */
  .section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
  }
  .section h2 {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 30px;
    text-align: center;
  }
  .section p {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  /* Sections with Images */
  .with-image {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .with-image .text-content {
    flex: 1;
  }
  .with-image .image-content {
    flex: 1;
  }
  .with-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .product-card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-10px);
  }
  .product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .product-card h3 {
    color: #D4AF37;
    margin-bottom: 10px;
  }
  
  /* Benefits List */
  .benefits {
    list-style: none;
    margin: 20px 0;
  }
  .benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
  }

  /* Important details list */
  .important-details {
    list-style: none;
    margin: 20px 0;
  }
  
  .important-details li {
    margin-bottom: 5px;
  }
  
  /* Footer */
  footer {
    background: #151515;
    padding: 20px;
    font-size: 0.9em;
    color: #888;
  }
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .legal-links,
  .social-links {
    text-align: center;
  }
  .footer-content a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
  }
  .footer-content a:hover {
    color: #D4AF37;
  }
  
  /* Age Verification Popup */
  #age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  #age-verification-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
  }
  
  /* Modal Popup */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
  }
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    color: #333;
    cursor: pointer;
  }
  .close:hover {
    color: #ff5555;
  }
  iframe#hanfappembed {
    width: 100%;
    height: 1000px;
    border: none;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .with-image {
      flex-direction: column;
    }
    header h1 {
      font-size: 2.5em;
    }
    header p {
      font-size: 1.2em;
    }
    .section {
      padding: 40px 5%;
    }
    .section h2 {
      font-size: 2em;
    }
  }
  