/* ===== Tantric Experiences – Custom Styles ===== */

/* --- Fonts --- */
@font-face {
  font-family: 'Aboreto';
  src: url('/fonts/Aboreto-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald Light';
  src: url('/fonts/Oswald-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-accent: #31A8C5;
  --color-accent-rgb: 49, 168, 197;
  --color-text: #333;
  --color-muted: #7A7A7A;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Questrial', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --max-width: 1140px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: rgba(var(--color-accent-rgb), 0.7);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
}

/* --- Typography --- */
h1, .hero-title {
  font-family: 'Oswald Light', 'Bebas Neue', sans-serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -1.6px;
  line-height: 1.2;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title .subtitle {
  display: block;
  font-size: 1.5rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  padding: 0.75em 2em;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: rgba(var(--color-accent-rgb), 0.85);
  color: #fff;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  font-size: 1.1rem;
  padding: 0.6em 1.5em;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 24px;
  position: relative;
}

.logo {
  position: absolute;
  left: 24px;
}

.logo img {
  width: 80px;
  height: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  font-family: 'Aboreto', var(--font-heading);
  font-size: 0.95rem;
  color: #222;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 24px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: #fff;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* --- Mid Banner --- */
.mid-banner {
  min-height: 500px;
  background: url('/images/mid-section-bg.jpg') top center / cover no-repeat;
  margin-top: 21px;
}

/* --- About --- */
.about {
  padding: 60px 0 40px;
}

.about-content {
  max-width: 780px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content p + p {
  margin-top: 1.25rem;
}

.about-content a {
  color: var(--color-accent);
  font-weight: 600;
}

/* --- Landscape Banner --- */
.landscape-banner {
  margin: 0;
}

.full-width-img {
  width: 100%;
  height: auto;
}

/* --- Calendar --- */
.calendar {
  padding: 70px 0 60px;
}

.calendar-intro {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.calendar-intro + .calendar-intro {
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}

/* Accordion */
.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.accordion-header:hover {
  color: var(--color-accent);
}

.accordion-icon {
  font-family: monospace;
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 200px;
  padding: 0 0 1.25rem 40px;
}

.accordion-body p {
  padding: 0.25rem 0;
  font-size: 1rem;
  color: var(--color-muted);
}

.accordion-body a {
  color: var(--color-accent);
}

/* --- Services --- */
.services {
  padding: 60px 0 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-card-body {
  padding: 1.25rem 1rem;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

/* --- SDC Banner --- */
.sdc-banner {
  padding: 40px 0 0;
  text-align: center;
}

.sdc-badge {
  display: inline-block;
}

/* --- Contact --- */
.contact {
  padding: 90px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 2rem 0;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.contact-info > p {
  margin-bottom: 1.5rem;
}

.contact-info > p a {
  color: var(--color-accent);
}

.contact-map {
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* Contact Form */
.contact-form {
  margin-top: 0.5rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--color-accent);
}

.form-row textarea {
  resize: vertical;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  cursor: pointer;
}

.privacy-check input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

/* --- Footer --- */
.footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
}

.footer-nav a:hover {
  color: #fff;
}

.copyright {
  font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .header-inner {
    justify-content: flex-start;
    padding: 0.75rem 24px;
  }

  .logo {
    position: static;
    margin-right: auto;
  }

  .logo img {
    width: 60px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    order: -1;
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .hero {
    padding-top: 120px;
  }

  .mid-banner {
    min-height: 300px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
