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

    body {
      font-family: 'Nunito Sans', sans-serif;
      background: #fff;
      color: #111;
    }

    header {
      background: #FF8243;
      color: #000;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      font-size: 1.7rem;
      font-weight: bold;
    }

    nav a {
      color: #000;
      margin-left: 1.5rem;
      text-decoration: none;
      font-weight: 600;
    }

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

    .hero-carousel {
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;
      color: #FF8243;
      position: relative;
      text-align: center;
      overflow: hidden;
    }

    .slide {
      display: none;
      flex-direction: column;
      gap: 1rem;
    }

    .slide h2 {
      font-size: 2.5rem;
    }

    .slide p {
      font-size: 1.1rem;
    }

    .slide.active {
      display: flex;
      animation: fadeIn 1s ease-in-out;
    }
	
	

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

    .carousel-buttons {
      position: absolute;
      bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 2rem;
    }

    .carousel-buttons button {
      background: rgba(255, 215, 0, 0.2);
      border: 2px solid #FF8243;
      color: #FF8243;
      font-size: 2rem;
      padding: 0.4rem 1rem;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .carousel-buttons button:hover {
      background: rgba(255, 215, 0, 0.4);
    }

    .store-banner {
      background-image: url('');
      background-size: cover;
      background-position: center;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .store-content {
      background: rgba(0, 0, 0, 0.7);
      padding: 2.5rem 3.5rem;
      border-radius: 12px;
      text-align: center;
    }

    .store-content h2 {
      color:#FF8243;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .store-btn {
      background: #FF8243;
      color: #000;
      padding: 1rem 2.5rem;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 40px;
      transition: background 0.3s ease;
      display: inline-block;
    }

    .store-btn:hover {
      background: #e6c200;
    }

    footer {
      background: #000;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #FF8243;
    }

    @media (max-width: 600px) {
      .slide h2 {
        font-size: 1.7rem;
      }
      .store-content {
        padding: 2rem;
      }
      .store-content h2 {
        font-size: 1.5rem;
      }
    }

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}
