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

/* ===== BODY ===== */
body {
  font-family: "Poppins", "Comic Sans MS", sans-serif;
  background: linear-gradient(180deg, #fff9f2 0%, #fff2e0 100%);
  color: #333;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(to right, #ff7b00, #ffb84d);
  color: white;
  text-align: center;
  padding: 25px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  text-decoration: underline;
  color: #fff8e7;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
  background-image: 
    linear-gradient(rgba(255, 145, 77, 0.6), rgba(255, 145, 77, 0.6)),
    url("/brightstaracting/gallery/star.6.jpg?v=2");
  background-size: cover;
  background-position: center;
  color: white;
  border-bottom: 4px solid #ffb380;
  animation: fadeInHero 1s ease;
}

@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 20px auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== BUTTONS ===== */
.btn {
  background: #ff914d;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.btn:hover {
  background: #ffb380;
  transform: scale(1.07);
}

/* ===== CARD SECTION ===== */
.card {
  background: #fff;
  border-radius: 15px;
  width: 85%;
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.card h3 {
  color: #ff7b00;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ===== GALLERY STYLES ===== */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 25px;
}

.gallery img {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
footer {
  background: #ff7b00;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 50px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .card {
    width: 90%;
    padding: 20px;
  }

  .gallery img {
    width: 90%;
  }
}
