/* Coming Soon Page */
.coming-soon{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#111;
  color:white;
  text-align:center;
}

.coming-box h1{
  font-size:60px;
  margin-bottom:10px;
}

.coming-box p{
  font-size:18px;
  margin-bottom:30px;
  opacity:0.8;
}

.coming-btn{
  background:#ffffff;
  color:#000;
  padding:12px 30px;
  font-size:18px;
  text-decoration:none;
  border-radius:6px;
  transition:0.3s;
}

.coming-btn:hover{
  background:#ffcc00;
}

/* ========== HOME PAGE ========== */
.home-welcome__title {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--sp-base);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.home-welcome__text {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: var(--sp-base);
  max-width: 640px;
}

.home-welcome__text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-welcome__toggle {
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  background: none;
  border: none;
  margin-bottom: var(--sp-base);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* PM Section */
.home-pm-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-padding) 24px;
}

.home-pm-section__title {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--sp-lg);
  line-height: 1.3;
}

.home-pm-image {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
}

.home-pm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Home sections */
.home-events,
.insta-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-padding) 24px;
}

.home-events__title,
.insta-section__title {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-lg);
}

.insta-card {
  width: 100%;
}

.insta-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.insta-card__caption {
  font-size: var(--fs-sm);
  color: var(--color-text-dim);
  line-height: 1.6;
  padding: var(--sp-base) 0;
  max-width: 560px;
}

/* About Gujarat */
.about-gujarat {
  background: var(--color-cream);
  padding: var(--section-padding) 0;
}

.about-gujarat__title {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-lg);
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.gujarat-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}

.gujarat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gujarat-card:hover img { transform: scale(1.04); }

.gujarat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gujarat-card__label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gujarat-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.gujarat-card__area {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
}

/* ========== CHECKDAM PAGE ========== */
.checkdam-search {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-base);
}

@media (min-width: 600px) {
  .checkdam-search {
    grid-template-columns: 1fr 200px auto;
    align-items: end;
  }
}

.checkdam-count {
  font-size: var(--fs-sm);
  color: var(--color-gray);
  margin: var(--sp-base) 0;
}

/* ========== TICKETS PAGE ========== */
.ticket-section {
  margin-bottom: var(--sp-3xl);
}

.ticket-section__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-base);
}

.ticket-cta {
  position: sticky;
  bottom: 0;
  padding: var(--sp-base) 24px;
  background: var(--color-white);
  border-top: 1px solid var(--color-input-bg);
  z-index: 10;
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ========== MUSEUM TOUR PAGE ========== */
.tour-card {
  display: flex;
  gap: var(--sp-lg);
  padding: var(--sp-lg) 0;
  cursor: pointer;
  transition: background var(--transition-fast);
  border-bottom: 1px solid var(--color-input-bg);
  -webkit-tap-highlight-color: transparent;
}

.tour-card:hover { background: rgba(0,0,0,0.015); }

.tour-card__image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: 6px;
}

.tour-card__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== AUDIO DETAIL PAGE ========== */
.audio-detail__hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.audio-detail__info { padding: var(--sp-xl) 0; }

.audio-detail__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-sm);
}

.audio-detail__desc {
  font-size: var(--fs-base);
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-bottom: var(--sp-xl);
  max-width: 600px;
}

/* ========== FULL AUDIO PLAYER PAGE ========== */
.full-player {
  padding: var(--sp-3xl) 0;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.full-player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: var(--sp-2xl) 0;
}

.full-player__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.full-player__btn:hover { transform: scale(1.08); background: var(--color-primary-dark); }
.full-player__btn svg { width: 28px; height: 28px; }

.full-player__btn--skip {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--color-text);
}

.full-player__btn--skip:hover { background: var(--color-input-bg); }

.full-player__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--color-input-bg);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.full-player__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
}

.full-player__time {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--color-gray);
  margin-top: 8px;
}

/* ========== CONTACT PAGE ========== */
.contact-form {
  max-width: 600px;
}

.contact-form .btn { margin-top: var(--sp-lg); }

/* ========== MAP PAGE ========== */
.map-iframe-wrap {
  width: 100%;
  height: 550px;
  margin: var(--sp-xl) 0;
  border-radius: 8px;
  overflow: hidden;
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== SUCCESS PAGE ========== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: var(--sp-3xl);
  text-align: center;
}

.success-page svg {
  width: 64px;
  height: 64px;
  color: #0CAE3A;
  margin-bottom: var(--sp-lg);
}

.success-page__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-sm);
}

.success-page__text {
  font-size: var(--fs-base);
  color: var(--color-gray);
}
