
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f4f4fa;
  color: #333;
  line-height: 1.6;
}


header {
  background: #fff8e7;
  color: #4a148c;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #ede7f6;
  padding: 15px 0;
}

nav ul li a {
  color: #5e35b1;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
  background-color: #d1c4e9;
  color: #1a237e;
}

/* Hero Section */
.hero {
  width: 80%;
  max-height: 300px;
  overflow: hidden;
  margin: 0 auto;
}

.hero img {
  width: 70%;
  display: block;
  border-bottom: 4px solid #4a148c;
}

/* Grid Layout (Clothing & Crafts) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 30px 20px;
}

.grid div {
  background: #fff8e7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Music & Dance Section */
section video {
  display: block;
  margin: 30px auto;
  max-width: 90%;
  border: 4px solid #00c853;
  border-radius: 10px;
}

/* Articles */
article {
  background: #fff;
  margin: 20px;
  padding: 20px;
  border-left: 5px solid #00c853;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: bold;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 1rem;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #6200ea;
  box-shadow: 0 0 6px rgba(98, 0, 234, 0.4);
  outline: none;
}

form button {
  background: #6200ea;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

form button:hover {
  background: #ffd600;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .grid {
    padding: 20px 10px;
  }

  form {
    margin: 20px 10px;
  }
}