/*
Theme Name: Inner Map Studio
Theme URI: https://innermapstudio.com
Author: Linh Yên
Author URI: https://innermapstudio.com
Description: A mystical and elegant WordPress theme for Inner Map Studio - featuring numerology, astrology, and destiny reading services. Includes floating particles animation, responsive design, and mobile-optimized booking button.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inner-map-studio
Tags: one-page, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

Inner Map Studio WordPress Theme, Copyright 2025
*/

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #0a0a1a;
  color: #f1f5f9;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Floating particles effect */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(196, 181, 253, 0.4);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(196, 181, 253, 0.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(219, 39, 119, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(196, 181, 253, 0.1);
  border: 1px solid rgba(196, 181, 253, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #c4b5fd 0%, #fbbf24 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto 12px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #c4b5fd 0%, #f472b6 100%);
  color: #0a0a1a;
  box-shadow: 0 10px 30px rgba(196, 181, 253, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(196, 181, 253, 0.4);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(196, 181, 253, 0.6);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  position: relative;
  padding: 80px 20px;
  z-index: 2;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(196, 181, 253, 0.3), transparent);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.container-sm {
  max-width: 960px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #f1f5f9 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  font-size: clamp(15px, 2vw, 17px);
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* About Linh Yen Section */
.about-linh-yen {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(196, 181, 253, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 20px;
  z-index: -1;
}

.about-content {
  color: #e2e8f0;
}

.about-content h3 {
  font-size: clamp(20px, 3vw, 26px);
  color: #f1f5f9;
  margin-bottom: 16px;
  font-weight: 600;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #cbd5e1;
}

.about-highlight {
  background: rgba(196, 181, 253, 0.1);
  border-left: 3px solid #c4b5fd;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.about-highlight p {
  margin: 0;
  font-size: 14px;
  color: #e2e8f0;
  font-style: italic;
}

/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c4b5fd, #f472b6, #fbbf24);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 181, 253, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.card:hover .card-image {
  opacity: 1;
  transform: scale(1.05);
}

.card-content {
  padding: 24px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #f1f5f9;
}

.card p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 12px;
}

.card-detail {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Feature Boxes */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmin(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.feature-box {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-box:hover {
  border-color: rgba(196, 181, 253, 0.4);
  background: rgba(30, 41, 59, 0.6);
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f1f5f9;
}

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

/* Process Steps */
.process-list {
  padding-left: 20px;
  margin-top: 24px;
}

.process-list li {
  font-size: 15px;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 10px;
  position: relative;
}

.process-list li::marker {
  color: #c4b5fd;
  font-weight: 700;
}

/* Contact Section */
.contact {
  text-align: center;
  padding-bottom: 140px;
}

.contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(196, 181, 253, 0.3);
  border-radius: 30px;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-link:hover {
  background: rgba(196, 181, 253, 0.15);
  border-color: rgba(196, 181, 253, 0.5);
  transform: translateY(-2px);
}

/* Fixed Bottom Booking Bar (Mobile) */
.fixed-booking {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(196, 181, 253, 0.3);
  padding: 16px 20px;
  z-index: 1000;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.fixed-booking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.fixed-booking-text {
  flex: 1;
}

.fixed-booking-text h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #f1f5f9;
}

.fixed-booking-text p {
  font-size: 12px;
  color: #94a3b8;
}

.fixed-booking .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px 100px;
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(5, 5, 15, 0.5);
}

.footer p {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-booking {
    display: block;
  }

  .hero-buttons .btn-primary {
    display: none;
  }

  .section {
    padding: 60px 20px;
  }

  .about-linh-yen {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin: 0 auto;
  }

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

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

  .contact {
    padding-bottom: 120px;
  }
}

/* Glow effect */
.glow {
  position: relative;
}

.glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glow:hover::after {
  opacity: 1;
}

.couple-box {
  background: rgba(10, 10, 26, 0.6);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
}

.couple-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #f1f5f9;
}

.couple-box ul {
  color: #cbd5e1;
  line-height: 1.8;
  padding-left: 20px;
}

.commitment-box {
  background: rgba(196, 181, 253, 0.1);
  border-left: 3px solid #c4b5fd;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 24px;
}

.commitment-box p {
  font-size: 14px;
  color: #e2e8f0;
  margin: 0;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}
