
:root{
  --primary: #004d40;
  --bg-start: #e0f7fa;
  --bg-end: #b2ebf2;
  --accent: #FFD700;
  --text: #333;
  --card-bg: #ffffff;
  --muted-bg: #fafafa;
}

*{box-sizing:border-box}

    /* ===== Shiva Temple Theme ===== */
    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: linear-gradient(to right, #e3f2fd, #eceff1); /* light blue-gray peaceful gradient */
      color: #263238;
      text-align: center;
    }

    header {
      background: #263238;
      color: #ffffff;
      padding: 20px 0;
      font-size: 1.8em;
      font-weight: bold;
      letter-spacing: 1px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    section {
      margin: 40px auto;
      max-width: 900px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    h2 {
      color: #1a237e;
      border-bottom: 2px solid #90a4ae;
      display: inline-block;
      padding-bottom: 5px;
      margin-bottom: 15px;
    }

    p {
      font-size: 1.05em;
      line-height: 1.6em;
    }

    ul.features {
      list-style: none;
      padding: 0;
    }

    ul.features li {
      padding: 10px 0;
      font-size: 1.1em;
      color: #37474f;
    }

    .section-title {
      color: #1a237e;
      background: #cfd8dc;
      padding: 10px;
      border-radius: 8px;
      width: fit-content;
      margin: 30px auto 15px;
    }

    .gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 10px;
    }

    .gallery-item {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      width: 220px;
      transition: transform 0.3s;
    }

    .gallery-item:hover {
      transform: scale(1.05);
    }

    .gallery-item img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .caption {
      padding: 10px;
      font-weight: 500;
    }

    footer {
      margin-top: 40px;
      padding: 15px;
      background: #263238;
      color: white;
    }

    footer a {
      color: #90caf9;
      text-decoration: none;
      font-weight: bold;
    }

    footer a:hover {
      text-decoration: underline;
    }

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(to right, var(--bg-start), var(--bg-end));
  color: var(--text);
  text-align: center;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

header {
  background: var(--primary);
  color: white;
  padding: 20px;
  font-size: 32px;
  font-weight: bold;
  font-family: cursive;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
}

.section-title {
  font-size: 28px;
  font-family: cursive;
  margin-top: 20px;
  color: var(--primary);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 12px;
  font-weight: bold;
  background: var(--muted-bg);
  text-align: left;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.videos video {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  background: #000;
  display: block;
}

footer {
  background: #333;
  color: white;
  padding: 20px;
  margin-top: 40px;
  font-size: 18px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px){
  header{font-size: 22px; padding: 16px;}
  .section-title{font-size: 20px}
  .gallery img{height: 160px}
  .caption{font-size:14px}
}