* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
  }
  
  body {
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

   /* Hero Section */
   .hero {
    display: flex;
    color: white;
    justify-content: center; 
    align-items: center;  
    text-align: center; 
    height: 100vh;
  }
 
  
  /* Overlay for readability */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Centrale Sans', Arial, sans-serif;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5; 
  }
  
  .shop-now {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    background-color: #edab03;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .shop-now:hover {
    background-color: #f0c040; 
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
 
  