/* General Layout */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #fff7f9;
  color: #222;
}

/* Header */
header {
  background: linear-gradient(90deg, #ff7eb3, #ff758c);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

header .logo h1 {
  margin: 0;
  font-size: 2em;
  letter-spacing: 1px;
}

header .logo p {
  margin: 5px 0 10px;
  font-size: 1em;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #222;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(80%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 80%;
}

.hero-text h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.1em;
}

/* Featured Section */
main {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 15px;
}

section h2 {
  border-left: 5px solid #ff5f8d;
  padding-left: 10px;
  color: #ff3c6a;
}

.featured article {
  background: #fff;
  border-radius: 10px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.featured article img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.featured .content {
  flex: 1;
  padding: 20px;
}

.featured h3 {
  margin-top: 0;
  color: #ff3c6a;
}

.featured p {
  line-height: 1.6;
}

.featured a {
  display: inline-block;
  margin-top: 10px;
  color: #ff3c6a;
  text-decoration: none;
  font-weight: 600;
}

/* Latest Buzz */
.latest .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.latest article {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.latest h4 {
  color: #ff3c6a;
  margin-top: 0;
}

footer {
  background: linear-gradient(90deg, #ff7eb3, #ff758c);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
