/* =============================================
   FONTS
   K6 Telephone is a downloadable .ttf only —
   not available on any CDN. The closest free
   web font in character (condensed, bold, all-caps,
   slightly geometric) is "Teko" from Google Fonts.
   It is used ONLY for the "Samatulya" brand name.
   Everything else uses Quicksand.
   ============================================= */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&family=Teko:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Funnel Sans&display=swap");
/* =============================================
   BASE
   ============================================= */
body {
  font-family: "Quicksand", sans-serif;
  margin: 0;
  background: #f4f4f4;
}

/* =============================================
   LOGO — Teko only here + footer brand
   ============================================= */
.logo {
  display: flex;
  align-items: center;
  font-family: "Onest", sans-serif;
  font-weight: 100;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: #ffcc00;
  margin-right: 40px;
}

.logo-icon {
  height: 50px;
  width: auto;
  margin-right: 4px;
}

.footer-logo {
  color: #ffcc00;
  font-weight: 100;
  font-size: 24px;
  letter-spacing: -0.5px;
  font-family: "Onest", sans-serif;
}

.footer-brand {
  font-family: "Onest", sans-serif;
  font-weight: 100;
  color: #ffcc00;
  letter-spacing: -0.5px;
}

/* =============================================
   HEADER
   ============================================= */
header {
  background: #243e56;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-nav {
  display: flex;
  align-items: center;
  padding: 10px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #ffcc00;
}

.sub-nav {
  background: #3f5e76;
  padding: 8px 5%;
  font-size: 14px;
}

.sub-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

.sub-nav a:hover {
  color: #ffcc00;
}

/* =============================================
   WEATHER WIDGET
   ============================================= */
.header-widgets {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}

.weather-widget {
  display: flex;
  align-items: center;
  gap: 10px;
}

.weather-display {
  color: #ffcc00;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  min-width: 70px;
}

.city-dropdown-wrapper select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  max-width: 170px;
}

.city-dropdown-wrapper select option {
  background: #243e56;
  color: white;
}

.city-dropdown-wrapper select:focus {
  border-color: #ffcc00;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
}

.hero img {
  width: 100%;
  height: auto;
  border-bottom: 5px solid #996600;
}

.hero h1 {
  font-size: 32px;
  margin-top: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 16px;
  color: #555;
  font-weight: 400;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  scroll-margin-top: 80px;
}

.card {
  background: white;
  padding-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: auto;
}

.card h3 {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}

/* Card with title overlaid on the image */
.card--overlay {
  position: relative;
  padding-bottom: 0;
}

.card--overlay img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
}

.card--overlay h3 {
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.7),
    0 0 12px rgba(0, 0, 0, 0.5);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  margin-top: 60px;
  padding: 50px 0 40px;
  border-top: 3px solid #996600;
  scroll-margin-top: 80px;
}

.contact-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #243e56;
}

.contact-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: #243e56;
  color: white;
  padding: 30px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffcc00;
  color: #243e56;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-title {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 16px;
  font-weight: 400;
}

.contact-detail {
  font-size: 13px;
  margin: 8px 0;
  font-weight: 400;
}

.contact-detail a {
  color: #ffcc00;
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #243e56;
}

.contact-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-fields input,
.contact-fields textarea {
  padding: 10px 14px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-fields input:focus,
.contact-fields textarea:focus {
  border-color: #996600;
}

.contact-submit {
  padding: 11px 28px;
  background: #243e56;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.contact-submit:hover {
  background: #996600;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #243e56;
  color: white;
  padding: 40px 5% 20px;
  border-top: 4px solid #996600;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-socials span {
  margin-left: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-socials span:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 300;
}

.footer-legal a:hover {
  color: #ffcc00;
}

.footer-bottom p {
  font-size: 15px;
  opacity: 0.75;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .top-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .header-widgets {
    margin-left: 0;
  }
  .logo {
    margin-right: 0;
  }
}

/* =============================================
   SERVICE PAGES  (Yoga, Wellness, Pooja)
   ============================================= */

.service-intro {
  max-width: 740px;
  margin: 44px auto;
  text-align: center;
}

.service-intro__lead {
  font-size: 18px;
  line-height: 1.85;
  color: #243e56;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-intro__body {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin: 0;
}

.service-section {
  margin: 50px 0;
}

.service-section__heading {
  font-size: 22px;
  font-weight: 700;
  color: #243e56;
  margin-bottom: 28px;
  border-left: 4px solid #996600;
  padding-left: 14px;
}

/* 3-column offerings grid */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offering-card {
  background: white;
  border-radius: 8px;
  padding: 28px 22px;
  border-top: 3px solid #996600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.offering-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.offering-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #243e56;
  margin: 0 0 10px;
}

.offering-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Pull quote */
.service-quote {
  background: #f9f3e8;
  border-left: 4px solid #996600;
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  margin: 40px 0;
  font-size: 16px;
  font-style: italic;
  line-height: 1.9;
  color: #443322;
}

.service-quote__source {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: #996600;
  letter-spacing: 0.4px;
}

/* Process steps (used on Pooja page) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.step-card {
  background: white;
  border-radius: 8px;
  padding: 24px 16px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.step-number {
  width: 38px;
  height: 38px;
  background: #243e56;
  color: #ffcc00;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #243e56;
  margin: 0 0 8px;
}

.step-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Call to action banner */
.service-cta {
  background: #243e56;
  color: white;
  text-align: center;
  padding: 52px 32px;
  border-radius: 8px;
  margin: 50px 0 30px;
}

.service-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

.service-cta p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 28px;
}

.cta-btn {
  display: inline-block;
  background: #ffcc00;
  color: #243e56;
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   ARTICLES SECTION - Similar to Contact Section
   ============================================= */
.articles-section {
  margin-top: 60px;
  padding: 50px 0 40px;
  border-top: 3px solid #996600;
}

.articles-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #243e56;
}

.section-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.articles-grid .card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.articles-grid .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.card-content {
  padding: 16px;
  background: white;
  border-radius: 0 0 4px 4px;
}

.card-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #243e56;
}

.card-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
