* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

#hero {
  width: 100%;
  position: relative;
}
#hero-image {
  width: 100%;
}
#hero-black {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
#hero-heading {
  font-size: 50px;
}
#hero-text {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
.card-top-heading {
  font-size: 30px;
  padding: 20px 0px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  border-radius: 4px;
  border: 2px solid #0078d4;
  background-color: #f8f8f8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  object-position: center;
}

.card-content {
  padding: 10px;
  text-align: end;
}

.card-title {
  font-size: 20px;
  color: #333;
  text-align: start;
}
.card-content p {
  font-size: smaller;
  text-align: start;
  padding-top: 8px;
}

.card-link {
  text-align: end;
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #0078d4;
  transition: all 0.3s, ease-in-out;
}

.card-link:hover {
  background-color: #0078d4c9;
  color: white;
}
/* 12-Jyotirling-temples */

/* Hero Section */
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

/* Tab Navigation */
.tab-nav {
  background: #f5f5f5;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.tab-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tab-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.tab-nav a:hover {
  background: #e0e0e0;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  margin-bottom: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.section h2 {
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* Timing Section */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.timing-card {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 5px;
}

.timing-card h3 {
  color: #666;
  margin-bottom: 10px;
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}

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

/* How to Reach Section */
.transport-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.transport-card {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 5px;
}

/* Festival List */
.festival-list {
  list-style: none;
}

.festival-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 300px;
  }

  .tab-nav ul {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab-nav a {
    padding: 8px 15px;
    font-size: 14px;
  }

  .container {
    padding: 10px;
  }

  #hero-heading {
    font-size: 20px;
  }
  #hero-text p {
    font-size: x-small;
  }
  .card-top-heading {
    font-size: 25px;
    padding: 10px 0px;
  }
}
.temple-name {
  font-size: 30px;
  padding: 20px 0px;
}
.temple-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
}

.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}
