@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Oswald:wght@200..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&display=swap");
body {
  margin: 0;
  font-family: "EB Garamond", serif;
  background: #ffffff;
  color: #d4af37; /* gold text in body sections */
}

@import url("https://fonts.googleapis.com/css2?family=IM+Fell+Double+Pica&display=swap");

nav {
  background: #0a2722;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  border-bottom: 3px solid #b28b44;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  background: #0a2722;
  color: white;
  padding: 1rem;
  border-bottom: 3px solid #b28b44;
  position: relative;
  z-index: 1000;
}

.nav-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-logo {
  color: #d4af37;
  font-size: 1.6rem;
}

.nav-subtitle {
  font-size: 0.9rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
}

.main-nav a:hover {
  color: #d4af37;
}

.call-button {
  background-color: #d4af37;
  color: #0a2722;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    background: #0a2722;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
  }
  .nav-right.show {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    width: 100%;
  }
  .main-nav ul li {
    width: 100%;
    margin: 0.5rem 0;
  }
  .call-button {
    width: 100%;
    text-align: center;
  }
}

.call-button:hover {
  background-color: #b28b44;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: white;
  color: #d4af37;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #d4af37;
  animation: colorPulse 3s infinite alternate;
}

.zodiac-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 1rem;
}

.zodiac-card {
  background: white;
  border: 2px solid #d4af37;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
  color: #d4af37;
}

.zodiac-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.zodiac-card.active {
  background: #fef9e7;
  border-color: #d4af37;
  animation: pulseBorder 1.5s infinite;
}

.horoscope-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem;
}

.horoscope-buttons button {
  background: white;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s, background 0.3s;
}

.horoscope-buttons button:hover {
  background: #fef9e7;
  transform: scale(1.05);
}

.horoscope-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  background: white;
  border: 1px solid #d4af37;
  border-radius: 8px;
}

.horoscope-single-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Animations */
@keyframes colorPulse {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.5);
  }
}

@keyframes pulseBorder {
  0% {
    border-color: #d4af37;
  }
  50% {
    border-color: #f4c542;
  }
  100% {
    border-color: #d4af37;
  }
}

@import url("https://fonts.googleapis.com/css?family=ZCOOL+QingKe+HuangYou");

section {
  padding: 0px;
}

#services {
  background-color: #1c4037;
  padding: 0px;
}

/* add a repeating triangle border at the top and bottom */

.flip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}

.flip-card {
  background-color: transparent;
  width: 200px;
  height: 260px;
  margin: 10px;
  font-size: xx-large;

  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  background-color: #f9f6ef;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;

  font-family: "Cormorant Unicase", serif;
  font-size: xx-large;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.flip-card-front i {
  font-size: 3rem;
  color: #1c4037;
  margin-bottom: 12px;
}

.flip-card-front p {
  color: #1c4037;
  font-weight: bold;
  text-align: center;
  font-size: x-large;
}

.flip-card-back {
  transform: rotateY(180deg);
  color: #1c4037;
  background-color: #fff8e7;
  font-size: large;
  padding: 1rem;
  line-height: 1.3;
}

.flip-card-back p {
  margin: 0;
}

@media (max-width: 768px) {
  .flip-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 1024px) {
  .flip-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
  clip-path: ellipse(75% 100% at 50% 0%);
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 39, 34, 0.5); /* dark green transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.video-overlay h2 {
  color: white;
  font-size: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .video-section {
    height: 180px;
  }

  .video-overlay h2 {
    font-size: 1.2rem;
  }
}

.reading-section {
  background: white;
  color: #0a2722;
  padding: 3rem 1rem;
  text-align: center;
}

.reading-container {
  max-width: 800px;
  margin: 0 auto;
}

.reading-icon i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.reading-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.reading-subtitle {
  font-style: italic;
  color: #0a2722;
  margin: 0.5rem 0 1rem;
}

.reading-divider {
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.reading-divider i {
  margin: 0 0.2rem;
}

.reading-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.partners-section {
  background-color: #ffffff;
  padding: 3rem 1rem;
  color: #0a2722;
  text-align: center;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0a2722;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 12); /* 12 logos repeated */
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 80px;
  margin: 0 2rem;
  object-fit: contain;

  /* gives goldish look */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.contact-section {
  border: 6px solid #b28b44;
  background-color: #fdfdfd;
  margin: 2rem;
  padding: 2rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.contact-left {
  flex: 1 1 200px;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-logo {
  height: 200px;
}


.contact-logo-small{
  height: 30px;
}

.contact-right {
  flex: 2 1 400px;
  padding-left: 2rem;
}

.contact-right h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0a2722;
}

.contact-right p {
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-points li {
  margin-bottom: 0.5rem;
  color: #0a2722;
}

.contact-points i {
  color: #d4af37;
  margin-right: 0.5rem;
}

.contact-form {
  display: flex;
  max-width: 500px;
  margin-top: 1rem;
}

.contact-form input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  background-color: #0a2722;
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #0c3930;
}

.footer {
  background: #0a2722;
  padding: 2rem 1rem;
  color: #ffffff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-column ul li a:hover {
  color: #b28b44;
}

.social-icons i {
  margin-right: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-rating {
  font-size: 0.9rem;
}

.footer-search {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.footer-search input {
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.footer-search button {
  background: #0a2722;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.footer-search button:hover {
  background: #0c3930;
}

.footer-payments img {
  height: 30px;
  margin-left: 0.5rem;
}

.address {
  padding: 1rem;
  margin: 1rem 0;
  line-height: 1.6;
  font-style: normal;
  font-size: 1rem;
  color: #ffffff;
}

.horoscope-card {
  background: #fff8f0;
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #4e1161;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
}

.horoscope-card h3 {
  margin-top: 0;
  color: #4e1161;
}

.horoscope-card.loading {
  color: #999;
}

.horoscope-card.error {
  color: red;
  border-color: red;
}

#zodiac {
  appearance: none;
  background-color: #fff8f0;
  border: 2px solid #d4af37;
  border-radius: 8px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 1rem;
  color: #4e1161;
  cursor: pointer;
  margin-top: 1rem;
  position: relative;
}

#zodiac:focus {
  outline: none;
  border-color: #4e1161;
  box-shadow: 0 0 5px rgba(78, 17, 97, 0.4);
}

#zodiac option {
  background: #fff8f0;
  color: #4e1161;
}

.horoscope-controls label {
  color: black;
}

.horoscope-controls h1 {
  color: black;
}

#getHoroscope {
  background-color: #4e1161;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 1rem;
}

#getHoroscope:hover {
  background-color: #6c2587;
  color: #fff;
}

.horoscope-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  justify-content: center;
}

.testimonials-section {
  padding: 2rem;
  background: #f4f0f7;
  text-align: center;
}

.testimonials-section h2 {
  color: #4e1161;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4e1161;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: #4e1161;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #777;
}

.faq-section {
  padding: 2rem;
  background: #f8f4ff;
  color: #4e1161;
}

.faq-map-section {
  background: #f8f4ff;
  color: #4e1161;
  padding: 2rem;
}

.faq-map-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-part {
  flex: 1 1 400px;
}

.map-part {
  flex: 1 1 400px;
  min-height: 400px;
}

.map-part iframe {
  border: 2px solid #d4af37;
  border-radius: 10px;
  height: 100%;
}

.faq-map-section {
  padding: 2rem;
  background: #f8f4ff;
}

.faq-map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.faq-box {
  flex: 1 1 400px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #d4af37;
  color: #4e1161;
}

.faq-box h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.faq-item {
  border-bottom: 1px solid #d4af37;
}

.faq-question {
  background: #4e1161;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #31093f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #333;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding: 1rem;
}

.map-box {
  flex: 1 1 400px;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #d4af37;
}

/* mobile responsiveness */

@media (max-width: 768px) {
  .faq-map-container {
    flex-direction: column;
  }

  .map-part iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .flip-card {
    width: 150px;
    height: 200px;
    font-size: medium;
  }

  .flip-card-front i {
    font-size: 2rem; /* scale down the icons */
  }

  .flip-card-front p {
    font-size: 0.9rem;
  }

  .flip-card-back p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .flip-card {
    width: 130px;
    height: 180px;
    font-size: small;
  }

  .flip-card-front i {
    font-size: 1.5rem;
  }

  .flip-card-front p {
    font-size: 0.8rem;
  }

  .flip-card-back p {
    font-size: 0.75rem;
  }
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.book-download-section {
  background: #f8f4ff;
  padding: 3rem 1rem;
  color: #4e1161;
}

.book-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.book-image img {
  width: 250px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.book-details {
  flex: 1;
}

.book-details h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.book-details p {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.book-download-button {
  display: inline-block;
  background: #4e1161;
  color: #d4af37;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #d4af37;
  transition: background 0.3s, color 0.3s;
}

.book-download-button:hover {
  background: #6c2587;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .book-container {
    flex-direction: column;
    text-align: center;
  }
  .book-image img {
    width: 200px;
  }
}

.special-offer {
  background: #fdf7e3;
  padding: 2rem 1rem;
  text-align: center;
}
.offer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.offer-container video {
  max-width: 300px;
  border: 2px solid #d4af37;
  border-radius: 10px;
}
.offer-text {
  max-width: 400px;
  color: #4e1161;
}
.offer-text h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10000;
}

.float-button {
  width: 50px;
  height: 50px;
  background: #d4af37;
  color: #0a2722;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: background 0.3s;
}

.float-button:hover {
  background: #b28b44;
}

.pre-footer-content {
  background: #fffaf3;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 2px dashed #d4af37;
}
.pre-footer-content h2 {
  color: #4e1161;
}
.pre-footer-content p {
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}



 
.horoscope-card-static { 
  background: white; 
  border: 2px solid #d4af37; 
  border-radius: 12px; 
  padding: 1.5rem; 
  max-width: 400px; 
  text-align: center; 
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05); 
  color: #4e1161; 
  margin: 1rem auto; 
} 
 
.horoscope-card-static img.horoscope-icon { 
  width: 60px; 
  height: 60px; 
  margin-bottom: 1rem; 
} 
 
.horoscope-card-static h3 { 
  font-size: 1.5rem; 
  color: #4e1161; 
  margin-bottom: 0.5rem; 
} 
 
.title-underline { 
  width: 50px; 
  height: 3px; 
  background: #d4af37; 
  margin: 0 auto 1rem auto; 
  border: none; 
  border-radius: 2px; 
} 
 
.horoscope-card-static p { 
  font-size: 1rem; 
  line-height: 1.6; 
  color: #333; 
}


.horoscope-inline { 
  display: flex; 
  gap: 1rem; 
  align-items: center; 
  flex-wrap: wrap; 
  justify-content: center; 
  margin: 2rem; 
}

.horoscope-inline select, 
.horoscope-inline button { 
  padding: 0.5rem; 
  font-size: 1rem; 
  border: 2px solid #d4af37; 
  border-radius: 8px; 
  color: #4e1161; 
  background: #fff8f0; 
} 
 
.horoscope-card { 
  flex: 1 1 300px; 
  max-width: 400px; 
} 
 
 
@media (max-width: 768px) { 
  .horoscope-inline { 
    flex-direction: column; 
    align-items: center; 
  } 
 
  .horoscope-inline select, 
  .horoscope-inline button, 
  .horoscope-card { 
    width: 100%; 
    max-width: 500px; 
    text-align: center; 
  } 
} 