/* Zen Spiritual Theme - SHREENATH */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Noto Sans Devanagari', Arial, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Zen Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid #ff6b35;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Zen Dots', 'Noto Sans Devanagari', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-text {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.om-icon {
  font-size: 2rem;
  animation: omGlow 2s ease-in-out infinite alternate;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #ff6b35;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Styles */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Sanctuary Hero Section */
.sanctuary-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.zen-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.zen-element {
  position: absolute;
  font-size: 2rem;
  animation: zenFloat 8s ease-in-out infinite;
  opacity: 0.2;
}

.zen-element:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.zen-element:nth-child(2) { top: 65%; right: 15%; animation-delay: 2s; }
.zen-element:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 4s; }
.zen-element:nth-child(4) { top: 35%; right: 25%; animation-delay: 1s; }
.zen-element:nth-child(5) { top: 75%; left: 30%; animation-delay: 3s; }
.zen-element:nth-child(6) { top: 45%; left: 5%; animation-delay: 5s; }

.sanctuary-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.zen-intro {
  max-width: 800px;
}

.divine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.badge-icon {
  font-size: 1.2rem;
}

.zen-title {
  font-family: 'Zen Dots', 'Noto Sans Devanagari', serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.divine-text {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zen-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zen-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.zen-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.zen-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
}

.zen-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid #ff6b35;
}

.zen-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.zen-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border: 3px solid #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.stat-circle:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.1);
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
}

/* Meditation Games Section */
.meditation-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Zen Dots', 'Noto Sans Devanagari', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.meditation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.meditation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.meditation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.meditation-card.featured {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
  border-color: #ff6b35;
}

.card-aura {
  width: 80px;
  height: 80px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.meditation-card:hover .card-aura {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.1);
}

.aura-icon {
  font-size: 2rem;
}

.meditation-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.meditation-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.meditation-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.level-badge {
  background: #ff6b35;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.duration {
  font-size: 0.8rem;
  color: #ccc;
}

/* Wisdom Section */
.wisdom-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.05));
}

.wisdom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wisdom-content {
  z-index: 2;
}

.wisdom-title {
  font-family: 'Zen Dots', 'Noto Sans Devanagari', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.wisdom-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.wisdom-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-top: 0.2rem;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature-content p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

.wisdom-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.mandala-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.mandala {
  position: relative;
  width: 100%;
  height: 100%;
  animation: mandalaRotate 20s linear infinite;
}

.mandala-ring {
  position: absolute;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  animation: mandalaPulse 3s ease-in-out infinite;
}

.mandala-ring.outer {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.mandala-ring.middle {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-delay: 1s;
}

.mandala-ring.inner {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  animation-delay: 2s;
}

.mandala-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #ff6b35;
}

/* Community Section */
.community-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.community-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.community-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ff6b35;
}

.community-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.community-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.member-count {
  font-size: 0.8rem;
  color: #ff6b35;
  font-weight: 600;
}

/* Blessings Section */
.blessings-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.05));
}

.blessings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blessings-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blessings-title {
  font-family: 'Zen Dots', 'Noto Sans Devanagari', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.blessings-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.blessings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.blessing-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.blessing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.blessing-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ff6b35;
}

.blessing-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.blessing-item p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

/* Zen Footer */
.zen-footer {
  background: rgba(26, 26, 46, 0.95);
  border-top: 2px solid #ff6b35;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Zen Dots', 'Noto Sans Devanagari', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  color: #ff6b35;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-support h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ff6b35;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff6b35;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #ccc;
}

.support-icon {
  color: #ff6b35;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: #ccc;
}

/* Animations */
@keyframes omGlow {
  0% { text-shadow: 0 0 10px rgba(255, 107, 53, 0.5); }
  100% { text-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6); }
}

@keyframes zenFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes mandalaRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes mandalaPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    transform: scale(1.05);
  }
  
  .zen-title {
    font-size: 2.5rem;
  }
  
  .zen-stats {
    gap: 2rem;
  }
  
  .wisdom-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .meditation-grid {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
  
  .blessings-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .sanctuary-section {
    padding: 6rem 1rem 2rem;
  }
  
  .zen-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .meditation-section,
  .wisdom-section,
  .community-section,
  .blessings-section {
    padding: 4rem 1rem;
  }
} 