body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffd8d8;
    color: #333;
  }
  
  .hero {
    background: url('https://via.placeholder.com/1200x600?text=Glow+Hair+Salon') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
  }
  
  .overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #c2185b;
  }
  
  .content {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .section {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e91e63;
  }
  
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .card {
    background: #cc6969;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .visit-card {
    background: #fce4ec;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
  }
  
  
  footer {
    text-align: center;
    background: #eee;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
  }
  