/*
Theme Name: Vidente Alexis
Theme URI: https://vidente-alexis.es
Author: Leonel Perez
Description: Tema minimalista y elegante (White Theme), enfocado en Alta Magia y Videncia.
Version: 2.1.0 (Hero Update)
*/

:root {
   /* Colors */
   --bg-color: #FFFFFF;
   --section-bg: #F9F9F7;
   --text-color: #333333;
   --text-light: #666666;
   --primary-color: #333333;
   /* Dark Grey/Black for main actions */
   --accent-color: #9CAF88;
   /* Sage Green */
   --accent-blue: #7D98A1;
   /* Slate Blue */
   --accent-gold: #C5B358;
   /* Muted Gold */

   /* Typography */
   --font-heading: 'Playfair Display', serif;
   --font-body: 'Lato', sans-serif;

   /* Spacing */
   --container-width: 1200px;
   --header-height: 80px;
}

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

body {
   background-color: var(--bg-color);
   color: var(--text-color);
   font-family: var(--font-body);
   font-size: 16px;
   line-height: 1.6;
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   color: var(--primary-color);
   line-height: 1.2;
   margin-bottom: 1rem;
}

h1 {
   font-size: 3.5rem;
   font-weight: 700;
}

h2 {
   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 2rem;
   position: relative;
}

h3 {
   font-size: 1.5rem;
   font-weight: 700;
}

p {
   margin-bottom: 1.5rem;
   color: var(--text-light);
}

a {
   text-decoration: none;
   color: inherit;
   transition: color 0.3s ease;
}

ul {
   list-style: none;
}

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

/* Utility */
.container {
   max-width: var(--container-width);
   margin: 0 auto;
   padding: 0 20px;
}

.btn {
   display: inline-block;
   padding: 12px 30px;
   background: transparent;
   color: var(--primary-color);
   border: 1px solid var(--primary-color);
   font-family: var(--font-body);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.btn:hover {
   background: var(--primary-color);
   color: #fff;
   transform: translateY(-2px);
}

.btn-text {
   font-weight: 700;
   text-transform: uppercase;
   font-size: 0.9rem;
   border-bottom: 1px solid var(--accent-color);
   padding-bottom: 2px;
}

.btn-text:hover {
   color: var(--accent-color);
}

/* Header */
header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--header-height);
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   z-index: 1000;
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
   display: flex;
   align-items: center;
}

header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
}

.logo img {
   height: 50px;
}

/* Nav */
.main-nav ul {
   display: flex;
   gap: 30px;
}

.main-nav a {
   font-family: var(--font-body);
   font-weight: 400;
   text-transform: uppercase;
   font-size: 0.9rem;
   letter-spacing: 1px;
   color: var(--primary-color);
}

.main-nav a:hover,
.main-nav a.active {
   color: var(--accent-gold);
}

.mobile-menu-toggle {
   display: none;
   font-size: 1.5rem;
   cursor: pointer;
}

/* Hero Section (NEW SPLIT LAYOUT) */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   background-image: url('assets/img/white_theme_hero_bg.png');
   background-size: cover;
   background-position: center;
   position: relative;
   padding-top: var(--header-height);
   overflow: hidden;
}

.hero .container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 40px;
   z-index: 2;
   position: relative;
   max-width: var(--container-width);
}

.hero-text {
   text-align: left;
   padding-right: 20px;
   z-index: 10;
}

.hero-label {
   font-size: 0.8rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: #FFFFFF;
   /* White Text */
   margin-bottom: 5px;
   display: inline-block;
   background-color: #000;
   /* Black Highlight */
   padding: 4px 8px;
   transform: translateY(-15px);
   /* Move upwards away from V */
}

.hero-script-name {
   font-family: 'Great Vibes', cursive;
   font-size: 6rem;
   color: var(--primary-color);
   line-height: 1;
   margin-bottom: 20px;
   display: block;
   text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.hero-bio {
   font-size: 1.15rem;
   color: var(--text-light);
   margin-bottom: 35px;
   max-width: 450px;
   line-height: 1.7;
}

.hero-visual {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100%;
}

.hero-floating-img {
   max-width: 120%;
   width: auto;
   max-height: 85vh;
   margin-right: -50px;
   filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
   animation: float 6s ease-in-out infinite;
   mix-blend-mode: multiply;
}

@keyframes float {
   0% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-15px);
   }

   100% {
      transform: translateY(0px);
   }
}

.hero::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.45);
   /* Slightly stronger overlay to ensure text contrast */
   z-index: 1;
}

/* Services Grid */
.services-section {
   padding: 100px 0;
   background: var(--bg-color);
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
   margin-top: 50px;
}

.service-card {
   background: #fff;
   padding: 0;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
   transition: transform 0.4s ease, box-shadow 0.4s ease;
   text-align: center;
}

.service-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-card img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   filter: brightness(1.05);
}

.service-content {
   padding: 30px;
}

.service-card h3 {
   margin-bottom: 15px;
   color: var(--primary-color);
}

/* Specific Section Colors */
.service-card.amarres h3 {
   color: #A05055;
}

.service-card.hechizos h3 {
   color: var(--accent-gold);
}

.service-card.vudu h3 {
   color: var(--accent-blue);
}

.service-card.rituales h3 {
   color: var(--accent-color);
}

/* About Section */
.about-section {
   padding: 100px 0;
   background: var(--section-bg);
   text-align: center;
}

.about-content {
   max-width: 800px;
   margin: 0 auto;
}

/* Footer */
footer {
   background: #F4F4F4;
   padding: 60px 0 30px;
   color: var(--text-light);
   text-align: center;
}

.footer-content {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 40px;
   text-align: left;
}

.footer-section {
   flex: 1;
   min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
   color: var(--primary-color);
   margin-bottom: 20px;
   font-family: var(--font-heading);
}

.footer-section ul li {
   margin-bottom: 10px;
}

.footer-section a {
   color: var(--text-light);
   transition: color 0.3s;
}

.footer-section a:hover {
   color: var(--accent-gold);
}

.footer-logo img {
   height: 40px;
   margin-bottom: 20px;
   filter: grayscale(100%);
   opacity: 0.7;
}

.social-links {
   margin: 20px 0;
}

.social-links a {
   font-size: 1.2rem;
   margin: 0 10px;
   color: var(--primary-color);
}

.sticky-phone {
   background: #fff;
   color: var(--primary-color);
   box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
   border-top: 1px solid #eee;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
   .hero .container {
      grid-template-columns: 1fr;
      text-align: center;
      padding-top: 50px;
      padding-bottom: 50px;
      gap: 30px;
   }

   .hero-text {
      text-align: center;
      padding-right: 0;
      order: 1;
      /* Text first on mobile? Or verify */
   }

   .hero-visual {
      order: 2;
      margin-top: -30px;
   }

   .hero-script-name {
      font-size: 4rem;
   }

   .hero-bio {
      margin: 0 auto 30px;
   }

   .hero-floating-img {
      max-height: 50vh;
      margin-right: 0;
      max-width: 100%;
   }

   .main-nav {
      position: fixed;
      top: var(--header-height);
      left: 0;
      width: 100%;
      background: #fff;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
      transform: translateY(-100%);
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 900;
      pointer-events: none;
   }

   .main-nav.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
   }

   .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 20px;
   }

   .mobile-menu-toggle {
      display: block;
      color: var(--primary-color);
   }
}

/* Text Logo */
.logo-text {
   font-family: var(--font-heading);
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--primary-color);
   letter-spacing: 1px;
   text-transform: uppercase;
}

.logo-script {
   font-family: 'Great Vibes', cursive;
   font-size: 2.5rem;
   /* Smaller than hero */
   color: var(--primary-color);
   line-height: 1;
   display: inline-block;
   text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

/* Floating WhatsApp & Sticky Phone */
.sticky-phone-bar {
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   background: #fff;
   border-top: 1px solid #ddd;
   padding: 15px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
   z-index: 9999;
   box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.sticky-phone-text {
   font-weight: 700;
   font-size: 0.9rem;
   color: var(--text-light);
}

.sticky-phone-number {
   font-weight: 900;
   font-size: 1.1rem;
   color: var(--primary-color);
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 8px;
}

.floating-whatsapp {
   position: fixed;
   bottom: 80px;
   /* Above sticky bar */
   right: 20px;
   background: #25D366;
   color: #fff;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 2rem;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   z-index: 10000;
   transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
   transform: scale(1.1);
   color: #fff;
}

/* Mobile Adjustments for Sticky Elements */
@media (max-width: 768px) {
   .sticky-phone-bar {
      padding: 10px;
      flex-direction: column;
      gap: 5px;
   }

   .floating-whatsapp {
      bottom: 90px;
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
   }

   /* Footer Mobile */
   .footer-content {
      flex-direction: column;
      gap: 30px;
   }

   .footer-section {
      text-align: center;
   }
}

/* Consultas Personales Section */
.consultas-home-section {
   padding: 100px 0;
   background: #fff;
   text-align: center;
}

.consultas-home-section h2 {
   color: var(--primary-color);
   margin-bottom: 20px;
}

.consultas-intro {
   max-width: 700px;
   margin: 0 auto 60px;
   font-size: 1.2rem;
   color: var(--text-light);
}

.consultas-options {
   display: flex;
   justify-content: center;
   gap: 60px;
   flex-wrap: wrap;
}

.consulta-blob {
   position: relative;
   width: 280px;
   height: 280px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: 30px;
   transition: transform 0.3s ease;
}

.consulta-blob:hover {
   transform: scale(1.05);
}

.blob-shape {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, #fdfbf7 0%, #f4f4f4 100%);
   z-index: 1;
   border: 2px solid var(--accent-gold);
   border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
   animation: blob-pulse 8s ease-in-out infinite;
   box-shadow: 0 10px 30px rgba(197, 179, 88, 0.15);
}

.consulta-blob:nth-child(2) .blob-shape {
   border-radius: 68% 32% 44% 56% / 46% 67% 33% 54%;
   animation-delay: -4s;
}

.consulta-content {
   position: relative;
   z-index: 2;
}

.consulta-time {
   font-family: var(--font-heading);
   font-size: 2.5rem;
   color: var(--primary-color);
   margin-bottom: 5px;
   display: block;
}

.consulta-desc {
   font-size: 0.95rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-light);
   margin-bottom: 15px;
}

.consulta-price {
   font-weight: 700;
   font-size: 1.2rem;
   color: var(--accent-gold);
}

@keyframes blob-pulse {
   0% {
      border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
   }

   50% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
   }

   100% {
      border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
   }
}

/* Call to Action Section */
.cta-home-section {
   padding: 120px 0;
   background: var(--section-bg);
   text-align: center;
}

.cta-wrapper {
   max-width: 800px;
   margin: 0 auto;
}

.cta-title {
   font-family: 'Great Vibes', cursive;
   font-size: 4rem;
   color: var(--accent-gold);
   margin-bottom: 20px;
   line-height: 1.2;
}

.cta-phone-container {
   margin: 40px auto;
   display: inline-block;
   position: relative;
   padding: 20px 60px;
}

.cta-phone-circle {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 3px solid var(--primary-color);
   border-radius: 95% 45% 85% 55% / 35% 85% 55% 95%;
   /* Hand-drawn oval */
   transform: rotate(-2deg);
   transition: all 0.4s ease;
}

.cta-phone-container:hover .cta-phone-circle {
   transform: rotate(1deg) scale(1.02);
   border-color: var(--accent-gold);
}

.cta-phone-number {
   font-family: var(--font-heading);
   font-size: 3rem;
   font-weight: 700;
   color: var(--primary-color);
   position: relative;
   z-index: 2;
   text-decoration: none;
}

.cta-subtitle {
   margin-top: 30px;
   font-size: 1.1rem;
   text-transform: uppercase;
   letter-spacing: 2px;
}

@media (max-width: 768px) {
   .consultas-options {
      flex-direction: column;
      align-items: center;
   }

   .cta-title {
      font-size: 3rem;
   }

   .cta-phone-number {
      font-size: 2rem;
   }

   .cta-phone-container {
      padding: 15px 40px;
   }
}