/* ============================================
   TAROT WORKSHOP PAGE — All Styles
   Using exact CSS from WordPress site
   ============================================ */

/* --- Hero Section --- */
.tarot-hero {
  min-height: 75vh;
  background-color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  overflow: visible;
  color: #3a3a3a;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  padding: 40px 10px 20px;
}

.tarot-hero > .tarot-background-shape {
  position: absolute;
  z-index: 1;
}

.tarot-hero > #tarot-circle1,
.tarot-hero > #tarot-circle2,
.tarot-hero > #tarot-circle3 {
  border-radius: 50%;
}

.tarot-hero > #tarot-circle1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199, 157, 94, 0.1), transparent 70%);
  top: -100px;
  right: -100px;
  animation: tarot-float 20s infinite ease-in-out alternate;
}

.tarot-hero > #tarot-circle2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 201, 160, 0.15), transparent 70%);
  bottom: -200px;
  left: -200px;
  animation: tarot-float 25s infinite ease-in-out alternate-reverse;
}

.tarot-hero > #tarot-circle3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(179, 139, 77, 0.12), transparent 70%);
  top: 30%;
  left: 20%;
  animation: tarot-float 15s infinite ease-in-out alternate;
}

.tarot-hero > #tarot-shape1 {
  width: 160px;
  height: 260px;
  background: rgba(230, 216, 200, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(210, 180, 150, 0.18);
  box-shadow: 0 8px 30px rgba(180, 140, 110, 0.06);
  top: 5%;
  right: 6%;
  animation: tarot-card-float1 28s infinite ease-in-out;
}

.tarot-hero > #tarot-shape2 {
  width: 130px;
  height: 210px;
  background: rgba(226, 210, 195, 0.18);
  border-radius: 10px;
  border: 1px solid rgba(210, 180, 150, 0.15);
  box-shadow: 0 6px 25px rgba(180, 140, 110, 0.05);
  bottom: 8%;
  right: 20%;
  animation: tarot-card-float2 35s infinite ease-in-out;
}

.tarot-hero > #tarot-shape3 {
  width: 180px;
  height: 290px;
  background: rgba(230, 216, 200, 0.16);
  border-radius: 14px;
  border: 1px solid rgba(210, 180, 150, 0.12);
  box-shadow: 0 10px 35px rgba(180, 140, 110, 0.05);
  top: 35%;
  left: 3%;
  animation: tarot-card-float3 32s infinite ease-in-out;
}

@keyframes tarot-card-float1 {
  0%   { transform: rotate(-5deg) translate(0, 0); }
  25%  { transform: rotate(12deg) translate(15px, -30px); }
  50%  { transform: rotate(25deg) translate(-10px, -50px); }
  75%  { transform: rotate(8deg) translate(-20px, -20px); }
  100% { transform: rotate(-5deg) translate(0, 0); }
}

@keyframes tarot-card-float2 {
  0%   { transform: rotate(10deg) translate(0, 0); }
  25%  { transform: rotate(-8deg) translate(-20px, -25px); }
  50%  { transform: rotate(-20deg) translate(10px, -45px); }
  75%  { transform: rotate(-5deg) translate(25px, -15px); }
  100% { transform: rotate(10deg) translate(0, 0); }
}

@keyframes tarot-card-float3 {
  0%   { transform: rotate(5deg) translate(0, 0); }
  25%  { transform: rotate(-10deg) translate(20px, -35px); }
  50%  { transform: rotate(-25deg) translate(-5px, -55px); }
  75%  { transform: rotate(-12deg) translate(-15px, -25px); }
  100% { transform: rotate(5deg) translate(0, 0); }
}

@keyframes tarot-float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* tarot-spin removed — replaced by tarot-card-drift animations */

/* Workshop Content */
.workshop-container {
  text-align: center;
  margin: 30px auto 50px;
  max-width: 900px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  z-index: 10;
}

.decorative-stars-top {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 28px;
  color: #d8b4a0;
  letter-spacing: 30px;
}

.workshop-title {
  font-size: 45px;
  margin-bottom: 5px;
  color: #8b4f4f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.workshop-subtitle {
  font-size: 22px;
  color: #b46746;
  font-weight: 400;
  margin: 0 0 30px;
  font-style: italic;
}

.workshop-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b46746, transparent);
  margin: 0 auto 30px;
}

.workshop-tagline {
  font-size: 24px;
  color: #8b4f4f;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.workshop-description {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.7;
  max-width: 700px;
  margin: 0px auto;
  background: rgba(255, 244, 239, 0.5);
  padding: 25px;
  border-radius: 10px;
  box-shadow: rgba(180, 103, 70, 0.1) 0px 5px 15px;
  font-weight: 500;
}

.decorative-stars-bottom {
  margin-top: 30px;
  font-size: 20px;
  color: #d8b4a0;
}

/* ============================================
   OFFERINGS SECTION
   ============================================ */
.sound-offerings-preview {
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(to left, #FFF6F2 0%, #FFF6F2 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.1);
  max-width: 1200px;
}

.offerings-preview-heading {
  text-align: center;
  font-size: 28px;
  color: #8b4f4f;
  margin: 0 0 30px 0;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-weight: 600;
}

.offerings-preview-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.offering-preview-item {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(180, 103, 70, 0.08);
  border: 1px solid #f0ddd0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(180, 103, 70, 0.12);
}

.offering-image-container {
  width: 30%;
  min-width: 240px;
  overflow: hidden;
}

.offering-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offering-preview-item:hover .offering-image {
  transform: scale(1.05);
}

.offering-content-wrapper {
  flex: 1;
  display: flex;
}

.offering-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.offering-title {
  color: #8b4f4f;
  font-size: 22px;
  margin: 0 0 15px 0;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-weight: 600;
}

.offering-description {
  color: #5a4a40;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.offering-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.offering-highlights li {
  display: flex;
  align-items: center;
  color: #5a4a40;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.offering-highlights li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #b46746;
  font-weight: 600;
  font-size: 18px;
}

.offering-link-btn {
  display: inline-block;
  background: #b46746;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  align-self: flex-start;
}

.offering-link-btn:hover {
  background: #9e5739;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(180, 103, 70, 0.3);
  color: white;
}

.offering-pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px 20px;
  background: #FFF6F2;
  border-left: 1px solid #f0ddd0;
  min-width: 220px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  background: white;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #f0ddd0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-item:hover {
  border-color: #b46746;
  box-shadow: 0 2px 8px rgba(180, 103, 70, 0.15);
}

.price-item.investment {
  padding: 16px 12px;
}

.investment-label {
  font-size: 13px;
  color: #8b4f4f;
  font-weight: 500;
  margin-bottom: 8px;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #b46746;
}

.local-price-note {
  font-size: 12px;
  color: #b46746;
  margin-top: 10px;
  padding: 8px;
  text-align: center;
  font-style: italic;
}

/* ============================================
   WHAT MAKES SPECIAL — Features Grid
   ============================================ */
.workshop-special-heading {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
  text-align: center;
  margin-bottom: 20px;
  margin-top: -20px;
}

.workshop-special-heading h2 {
  font-size: 27px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.workshop-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 60px;
}

.workshop-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #f0ddd0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.workshop-feature-card:hover {
  transform: translateY(-5px);
}

.workshop-feature-icon {
  margin: 0 auto 25px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(180, 103, 70, 0.15);
}

.workshop-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workshop-feature-card h3 {
  color: #8b4f4f;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.workshop-feature-card p {
  color: #5a4a40;
  margin: 0;
  line-height: 1.6;
  font-size: 15.5px;
  font-weight: 500;
}

/* ============================================
   WORKSHOP SCHEDULE
   ============================================ */
.workshop-schedule-heading {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
  text-align: center;
  margin-bottom: 30px;
}

.workshop-schedule-heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.workshop-schedule {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 60px;
}

.schedule-item {
  background: #fff;
  box-shadow: 0 8px 24px rgba(180, 103, 70, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.schedule-header {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding: 18px 25px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0ddd0;
}

.schedule-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 3px 10px rgba(180, 103, 70, 0.15);
  color: #b46746;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.schedule-meta {
  flex-grow: 1;
}

.schedule-time {
  color: #b46746;
  font-weight: 600;
  font-size: 16px;
}

.schedule-meta h3 {
  color: #8b4f4f;
  margin: 5px 0 0 0;
  font-size: 20px;
  font-weight: 600;
}

.schedule-body {
  padding: 20px 25px 20px 72px;
}

.schedule-body p {
  color: #5a4a40;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.schedule-body strong,
.receive-value strong {
  font-weight: 500;
  color: #4a3830;
}

/* ============================================
   WHAT YOU'LL RECEIVE
   ============================================ */
.workshop-receive-heading {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  text-align: center;
  margin-bottom: 24px;
}

.workshop-receive-heading h3 {
  font-size: 30px;
  font-weight: 600;
  text-transform: none;
  color: #8b4f4f;
  margin: 0;
}

.workshop-receive-table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
  border-collapse: separate;
  border-spacing: 0 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.receive-label {
  background: #fff4ef;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px 0 0 12px;
  color: #b46746;
  text-align: center;
  width: 35%;
}

.receive-value {
  background: #fffaf8;
  padding: 20px 24px;
  font-size: 17px;
  border-radius: 0 12px 12px 0;
  color: #4a3830;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.tarot-faq-section {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Montserrat', Arial, sans-serif;
}

.tarot-section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #8b4f4f;
  max-width: 700px;
  margin: 0 auto 40px;
}

.tarot-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.tarot-faq-item {
  background-color: #FEF4EF;
  border-radius: 10px;
  overflow: hidden;
}

.tarot-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  color: #8b4f4f;
  position: relative;
}

.tarot-faq-toggle {
  width: 20px;
  height: 20px;
  border: 0px solid #8b4f4f;
  position: relative;
  transition: transform 0.3s ease;
  color: #8b4f4f !important;
  flex-shrink: 0;
}

.tarot-faq-toggle::before,
.tarot-faq-toggle::after {
  content: '';
  position: absolute;
  background-color: #8b4f4f;
}

.tarot-faq-toggle::before {
  width: 10px;
  height: 2px;
  top: 8px;
  left: 4px;
}

.tarot-faq-toggle::after {
  width: 2px;
  height: 10px;
  top: 4px;
  left: 8px;
  transition: transform 0.3s ease;
}

.tarot-faq-item.active .tarot-faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.tarot-faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #8b4f4f;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tarot-faq-item.active .tarot-faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.workshop-cta-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #8b4f4f;
  margin-bottom: 25px;
}

.workshop-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tarot-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.tarot-hero-btn--primary {
  background: linear-gradient(135deg, #d4a574, #b46746, #c27d60);
  color: white;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.3);
}

.tarot-hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 103, 70, 0.4);
  color: white;
}

.tarot-hero-btn--outline {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #8b4f4f;
  border: 1.5px solid rgba(180, 103, 70, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tarot-hero-btn--outline:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 103, 70, 0.6);
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.15);
  color: #8b4f4f;
}

/* ============================================
   MEET TYAS SECTION
   ============================================ */
.tyas-hero-unique {
  width: 100%;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

.tyas-bg-unique {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.1);
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.tyas-content-unique {
  display: flex;
  min-height: 500px;
  width: 100%;
}

.tyas-text-unique {
  width: 50%;
  padding: 60px;
  position: relative;
  z-index: 5;
}

.tyas-media-unique {
  width: 50%;
  position: relative;
  overflow: visible;
}

.tyas-video-wrap-unique {
  position: absolute;
  top: -50px;
  bottom: -50px;
  right: -20px;
  width: 350px;
  height: calc(100% + 100px);
  border-top-left-radius: 200px;
  overflow: hidden;
  box-shadow: -10px 10px 40px rgba(180, 103, 70, 0.15);
}

.tyas-video-unique {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.tyas-overlay-unique {
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 0;
  right: -20px;
  background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
  z-index: 2;
  border-top-left-radius: 200px;
}

.tyas-label-unique {
  display: inline-block;
  background-color: rgba(180, 103, 70, 0.1);
  color: #b46746;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tyas-heading-unique {
  font-size: 54px;
  font-weight: 600;
  color: #8b4f4f;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tyas-paragraph-unique {
  font-size: 17px;
  color: #4a2d25;
  margin-bottom: 30px;
  line-height: 1.8;
}

.tyas-button-unique {
  display: inline-block;
  background-color: rgba(180, 103, 70, 0.9);
  color: white !important;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(180, 103, 70, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: none !important;
}

.tyas-button-unique:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.3);
  color: white !important;
  background-color: rgba(180, 103, 70, 1);
}

.arrow-icon-unique {
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.tyas-button-unique:hover .arrow-icon-unique {
  transform: translateX(4px);
}

.tyas-deco-unique {
  position: absolute;
  background-color: rgba(194, 125, 96, 0.15);
  border-radius: 50%;
  z-index: 1;
}

.tyas-deco-1-unique { top: -30px; left: 10%; width: 140px; height: 140px; }
.tyas-deco-2-unique { bottom: -40px; left: 35%; width: 80px; height: 80px; background-color: rgba(139, 79, 79, 0.1); }
.tyas-deco-3-unique { top: 20%; right: 40%; width: 60px; height: 60px; background-color: rgba(139, 79, 79, 0.1); }

.tyas-quote-unique {
  max-width: 800px;
  margin: 60px auto 40px;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.tyas-quote-mark-unique {
  font-size: 120px;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(180, 103, 70, 0.1);
  font-family: Georgia, serif;
}

.tyas-quote-text-unique {
  font-size: 20px;
  line-height: 1.8;
  color: #8b4f4f;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.tyas-quote-author-unique {
  margin-top: 20px;
  font-weight: 600;
  color: #b46746;
  font-size: 16px;
}

.tyas-heart-indicator-unique {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  animation: tyas-bounce-unique 2s infinite;
}

@keyframes tyas-bounce-unique {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.tyas-heart-indicator-unique svg {
  width: 40px;
  height: 40px;
  fill: #b46746;
  opacity: 0.6;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-showcase {
  position: relative;
  height: 100%;
  min-height: 900px;
  overflow: hidden;
  color: #8c5c5c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-showcase .tarot-background-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.location-showcase #tarot-shape1 {
  width: 300px; height: 300px;
  border-radius: 31% 69% 20% 80% / 60% 31% 69% 40%;
  background: rgba(230, 213, 203, 0.6);
  top: 10%; left: 5%; opacity: 0.5;
  animation: tarot-float1 15s infinite alternate ease-in-out;
  max-width: 40%;
}

.location-showcase #tarot-shape2 {
  width: 400px; height: 400px;
  border-radius: 69% 31% 54% 46% / 28% 50% 50% 72%;
  background: rgba(230, 213, 203, 0.3);
  bottom: 2%; right: 5%; opacity: 0.5;
  animation: tarot-float2 12s infinite alternate-reverse ease-in-out;
  max-width: 50%;
}

.location-showcase #tarot-shape3 {
  width: 400px; height: 300px;
  border-radius: 42% 58% 65% 35% / 40% 45% 55% 60%;
  background: rgba(230, 213, 203, 0.4);
  top: 2%; left: 23%; opacity: 0.3;
  animation: tarot-float3 18s infinite alternate ease-in-out;
  max-width: 50%;
}

.location-showcase #tarot-circle1 {
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(230, 213, 203, 0.3);
  top: -250px; left: -100px;
  animation: tarot-pulse1 8s infinite alternate ease-in-out;
  max-width: 60%;
}

.location-showcase #tarot-circle2 {
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(230, 213, 203, 0.2);
  bottom: -200px; right: -150px;
  animation: tarot-pulse2 10s infinite alternate-reverse ease-in-out;
  max-width: 70%;
}

.location-showcase #tarot-circle3 {
  width: 450px; height: 450px; border-radius: 50%;
  background: rgba(230, 213, 203, 0.25);
  top: 30%; right: 25%;
  animation: tarot-pulse3 12s infinite alternate ease-in-out;
  max-width: 50%;
}

@keyframes tarot-float1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(5deg); }
  100% { transform: translate(-20px, -10px) rotate(-5deg); }
}

@keyframes tarot-float2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, 10px) rotate(-3deg); }
  100% { transform: translate(15px, -15px) rotate(3deg); }
}

@keyframes tarot-float3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -15px) rotate(3deg); }
  66% { transform: translate(-10px, 10px) rotate(-2deg); }
  100% { transform: translate(5px, -20px) rotate(5deg); }
}

@keyframes tarot-pulse1 {
  0% { transform: scale(0.9); opacity: 0.2; }
  100% { transform: scale(1.1); opacity: 0.4; }
}

@keyframes tarot-pulse2 {
  0% { transform: scale(0.85); opacity: 0.3; }
  100% { transform: scale(1.15); opacity: 0.5; }
}

@keyframes tarot-pulse3 {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.25; }
  100% { transform: scale(1.1) translate(20px, -20px); opacity: 0.4; }
}

.location-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(140, 92, 92, 0.2);
  border: 1px solid rgba(178, 125, 106, 0.3);
}

.location-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  display: block;
  margin-bottom: 15px;
  color: #b27d6a;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.location-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0 auto 20px;
}

.location-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: 20px;
  color: #8c5c5c;
  position: relative;
  display: inline-block;
}

.location-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b27d6a;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.location-feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px 20px;
  background: rgba(230, 213, 203, 0.3);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(140, 92, 92, 0.1);
  border: 1px solid rgba(178, 125, 106, 0.2);
  text-align: center;
}

.location-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(140, 92, 92, 0.15);
  background: rgba(230, 213, 203, 0.5);
}

.feature-image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(140, 92, 92, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.location-feature:hover .feature-image-container {
  box-shadow: 0 15px 30px rgba(140, 92, 92, 0.3);
}

.location-feature:hover .feature-image {
  transform: scale(1.15);
}

.location-feature h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #8c5c5c;
}

.location-feature p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.location-contact {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(230, 213, 203, 0.3);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(178, 125, 106, 0.2);
}

.address-column, .map-column {
  flex: 1;
  min-width: 300px;
}

.address-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.address-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f4f1;
  color: #8c5c5c;
  font-size: 35px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(140, 92, 92, 0.1);
}

.address-column h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #8c5c5c;
}

.address-column address {
  font-style: normal;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 16px;
  color: #666;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b27d6a;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(178, 125, 106, 0.2);
}

.directions-link:hover {
  background: #8c5c5c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(140, 92, 92, 0.3);
  color: white;
}

.map-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(140, 92, 92, 0.15);
  border: 5px solid rgba(230, 213, 203, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(140, 92, 92, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Shared section spacing */
.tarot-section {
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .tarot-hero {
    padding: 40px 20px 20px;
    min-height: 65vh;
  }

  .workshop-title {
    font-size: 38px;
  }

  .workshop-subtitle {
    font-size: 20px;
  }

  .tyas-content-unique {
    flex-direction: column;
  }

  .tyas-text-unique {
    width: 100%;
    padding: 40px;
    text-align: center;
  }

  .tyas-media-unique {
    width: 100%;
    height: 400px;
  }

  .tyas-video-wrap-unique {
    position: relative;
    top: 0; bottom: 0; right: 0;
    width: 100%; height: 100%;
    border-radius: 0;
  }

  .tyas-overlay-unique {
    top: 0; bottom: 0; right: 0;
    border-radius: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  }

  .location-features {
    flex-direction: column;
    align-items: center;
  }

  .location-feature {
    max-width: 100%;
    width: 100%;
  }

  .location-content {
    padding: 40px 20px;
  }

  .address-column, .map-column {
    flex: 100%;
  }
}

@media (max-width: 968px) {
  .sound-offerings-preview {
    padding: 20px 15px;
  }

  .offerings-preview-heading {
    font-size: 24px;
  }

  .offering-preview-item {
    flex-direction: column;
  }

  .offering-image-container {
    width: 100%;
    height: auto;
    max-height: 350px;
    min-width: unset;
  }

  .offering-image {
    object-fit: contain;
    object-position: center;
    height: auto;
  }

  .offering-content-wrapper {
    flex-direction: column;
  }

  .offering-content {
    padding: 20px 15px;
  }

  .offering-pricing {
    flex-direction: row;
    justify-content: space-around;
    border-left: none;
    border-top: 1px solid #f0ddd0;
    padding: 20px;
    min-width: unset;
  }

  .price-item {
    flex: 1;
    margin: 0 5px;
  }
}

@media (max-width: 768px) {
  .tarot-hero {
    min-height: auto;
    height: auto;
    padding: 60px 15px 30px;
    margin-bottom: 0px;
  }

  .workshop-container {
    margin: 20px auto 40px;
    padding: 0 20px;
  }

  .workshop-title {
    font-size: 36px;
  }

  .workshop-subtitle {
    font-size: 18px;
  }

  .workshop-tagline {
    font-size: 20px;
  }

  .workshop-description {
    font-size: 15px;
    padding: 20px;
  }

  .workshop-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #tarot-circle1, #tarot-circle2, #tarot-circle3 {
    width: 50%;
    height: 50%;
    opacity: 0.5;
  }

  #tarot-shape1, #tarot-shape2, #tarot-shape3 {
    width: 30%;
    height: 30%;
    opacity: 0.5;
  }

  .location-eyebrow {
    font-size: 18px;
  }

  .location-contact {
    padding: 20px;
  }

  .map-container {
    height: 250px;
  }

  .tyas-heading-unique {
    font-size: 36px;
  }

  .tyas-text-unique {
    padding: 30px 20px;
  }

  .tyas-media-unique {
    height: 300px;
  }

  .tyas-quote-unique {
    padding: 0 20px;
  }

  .tyas-quote-text-unique {
    font-size: 18px;
  }

  .schedule-body {
    padding: 15px 20px 15px 50px;
  }

  .receive-label,
  .receive-value {
    display: block;
    width: 100%;
    border-radius: 12px;
    text-align: center;
  }

  .workshop-receive-table tr {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .tarot-hero {
    padding: 40px 10px 20px;
    margin-bottom: 0px;
  }

  .workshop-container {
    margin: 15px auto 30px;
  }

  .workshop-title {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .workshop-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .workshop-tagline {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .workshop-description {
    font-size: 14px;
    padding: 15px;
  }

  .decorative-stars-top {
    font-size: 22px;
    top: -25px;
  }

  .decorative-stars-bottom {
    font-size: 16px;
    margin-top: 20px;
  }

  .workshop-features-grid {
    grid-template-columns: 1fr;
  }

  .sound-offerings-preview {
    padding: 20px 10px;
  }

  .offering-pricing {
    flex-direction: column !important;
    padding: 15px;
  }

  .offering-title {
    font-size: 18px;
  }

  .offering-description {
    font-size: 13px;
  }

  .offering-highlights li {
    font-size: 12px;
  }

  .offering-link-btn {
    padding: 8px 15px;
    font-size: 13px;
  }

  .location-showcase {
    min-height: 600px;
  }

  .location-eyebrow {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .location-content {
    padding: 30px 15px;
  }

  .map-container {
    height: 200px;
  }

  .feature-image-container {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 350px) {
  .workshop-title {
    font-size: 24px;
  }

  .workshop-subtitle {
    font-size: 16px;
  }
}
