
* {
      box-sizing: border-box;
    }
    /* ===== Mata Temple Theme ===== */
    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: linear-gradient(to right, #fff3e0, #ffe0b2); /* soft cream to light golden */
      color: #4e342e; /* warm brown text for readability */
      text-align: center;
    }

    header {
      background: #d32f2f; /* deep red for Mata */
      color: #fff8e1;
      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: #b71c1c; /* dark red headings */
      border-bottom: 2px solid #ffd54f; /* golden underline */
      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: #5d4037; /* slightly darker brown for list */
    }

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

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

    .card:hover {
      transform: scale(1.05);
    }

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

    .card p {
      margin: 10px;
      font-weight: 500;
      color: #4e342e;
    }

    footer {
      margin-top: 40px;
      padding: 15px;
      background: #d32f2f;
      color: #fff8e1;
    }

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

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