body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.temple {
  text-align: center;
  font-size: 18px;
  margin-bottom: 5px;
  color: #3b73b5;
  font-weight: bold;
}

.title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #3b73b5;
  padding-bottom: 10px;
}

.section {
  margin-bottom: 30px;
}

.section h3 {
  color: #333;
  margin-bottom: 10px;
  border-left: 4px solid #3b73b5;
  padding-left: 10px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  padding: 4px 0;
}

.kn {
  font-family: 'Noto Sans Kannada', 'Tunga', sans-serif;
}

.print-btn {
  background-color: #3b73b5;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.print-btn:hover {
  background-color: #0056b3;
}

.photo-section {
  text-align: center;
  margin: 50px 0;
}

.photo-section h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #444;
}

.photo-row.single img {
  width: 280px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 0 10px;
}

.photo-grid img {
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photo-grid img:hover,
.photo-row.single img:hover {
  transform: scale(1.03);
}
