/* Main styles for domain website */
:root {
  --primary-dark: #2C003E;
  --primary-light: #E9436F;
  --text-color: #FFFFFF;
  --accent-salad: #D4F23D;
  --accent-mint: #00FFCC;
  --button-color: #FF33A1;
  --dark-section: #1A0025;
  --light-section: #FDF7FA;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 40px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
header {
  position: sticky;
  top: 0;
  background: rgba(44, 0, 62, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--accent-salad), var(--accent-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--accent-mint);
}

.mobile-menu-toggle {
  display: none;
}

/* Mobile menu */
#mobile-menu {
  display: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(44, 0, 62, 0.95);
  padding: 20px;
  z-index: 999;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 15px;
  text-align: center;
}

.mobile-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Hero section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url(../img/2CgIMv.jpg) center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 0, 37, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #FFFFFF;
  color: var(--button-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--button-color);
  transition: all 0.3s;
}

.cta-button:hover {
  background-color: var(--button-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 51, 161, 0.3);
}

/* Section styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, var(--accent-salad), var(--accent-mint));
  bottom: -10px;
  left: 20%;
}

/* About section */
.about {
  background-color: var(--light-section);
  color: var(--text-dark);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Benefits section */
.benefits {
  background-color: var(--dark-section);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-salad), var(--accent-mint));
  border-radius: 50%;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--primary-dark);
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: var(--accent-mint);
}

/* Horoscope Types section */
.horoscope-types {
  background-color: var(--light-section);
  color: var(--text-dark);
}

.horoscope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.horoscope-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.horoscope-card:hover {
  transform: translateY(-10px);
}

.horoscope-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.horoscope-content {
  padding: 25px;
  background-color: white;
}

.horoscope-content h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.horoscope-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--button-color);
  margin: 15px 0;
}

/* Service details section */
.service-details {
  background-color: var(--dark-section);
}

.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-salad), var(--accent-mint));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-right: 20px;
}

.step-content h3 {
  margin-bottom: 10px;
  color: var(--accent-mint);
}

/* Testimonials section */
.testimonials {
  background-color: var(--light-section);
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  color: var(--primary-dark);
}

.author-info p {
  color: #777;
  font-size: 0.9rem;
}

/* FAQ section */
.faq {
  background-color: var(--dark-section);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

details {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

summary {
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

details[open] summary::after {
  content: '-';
}

details[open] summary {
  background: rgba(255, 255, 255, 0.15);
}

.faq-answer {
  padding: 0 20px 20px;
}

/* Order form section */
.order-form {
  background-color: var(--light-section);
  color: var(--text-dark);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--accent-mint);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-dark);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-mint);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  margin-top: 5px;
  margin-right: 10px;
}

.checkbox-group label {
  font-size: 0.9rem;
}

.checkbox-group a {
  color: var(--button-color);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  background-color: white;
  color: var(--button-color);
  border: 2px solid var(--button-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--button-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 51, 161, 0.3);
}

/* Footer styles */
footer {
  background-color: var(--primary-dark);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-mint);
}

.footer-column p {
  margin-bottom: 15px;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent-salad);
}

.policy-links {
  list-style: none;
}

.policy-links li {
  margin-bottom: 10px;
}

.policy-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.policy-links a:hover {
  color: var(--accent-salad);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Policy pages styles */
.policy-page {
  background-color: white;
  color: var(--text-dark);
  padding: 60px 0;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light-section);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.policy-container h2 {
  color: var(--primary-light);
  margin: 30px 0 15px;
}

.policy-container p, .policy-container ul {
  margin-bottom: 20px;
}

.policy-container ul {
  padding-left: 20px;
}

/* Thank you page */
.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  color: var(--text-dark);
}

.thank-you-content {
  max-width: 600px;
  padding: 40px;
  background-color: var(--light-section);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.thank-you-content p {
  margin-bottom: 30px;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 0, 37, 0.95);
  padding: 20px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-text {
  flex: 1;
  color: var(--text-color);
}

.cookie-text a {
  color: var(--text-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.accept-cookies {
  background-color: var(--accent-mint);
  color: var(--primary-dark);
  border: none;
}

.accept-cookies:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

.decline-cookies {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.decline-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Card styles for images */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

/* Extra pages styles */
.extra-page {
  min-height: 60vh;
  background-color: white;
  color: var(--text-dark);
  padding: 80px 0;
}

.extra-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light-section);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.extra-content h1 {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  #mobile-menu:checked ~ .mobile-nav {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-bottom: 15px;
  }
}
