/* VR Nature Relaxation App - Main Styles */

:root {
  /* VR Nature Theme - Pastel High-Contrast Colors */
  --primary-sage: #8FBC8F;
  --primary-lavender: #E6E6FA; 
  --primary-mint: #98FB98;
  --primary-sky: #87CEEB;
  --primary-coral: #F08080;
  
  /* Shades */
  --sage-light: #B8D4B8;
  --sage-dark: #6B8E6B;
  --lavender-light: #F0F0FF;
  --lavender-dark: #D4D4E8;
  --mint-light: #C7FFC7;
  --mint-dark: #7AD87A;
  --sky-light: #B0E0E6;
  --sky-dark: #6BB6CD;
  --coral-light: #FFA0A0;
  --coral-dark: #CD5C5C;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-border-radius: 15px;
  --transition-smooth: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-mint);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender), var(--lavender-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  z-index: 1;
}

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

#hero-title-1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

#hero-subtitle-1 {
  font-size: 1.25rem;
  color: var(--primary-sage);
  margin-bottom: 1.5rem;
}

#hero-desc-1 {
  font-size: var(--font-size-large);
  color: #666;
  margin-bottom: 2rem;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--primary-sage);
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--mint-light), white);
}

.feature-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  border: 2px solid var(--mint-light);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--sky-light), white);
}

.service-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  border: 2px solid var(--sky-light);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-sky);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--coral-light), white);
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--lavender-light), white);
}

.pricing-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  border: 2px solid var(--lavender-dark);
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-lavender);
}

.pricing-card.featured {
  border-color: var(--primary-coral);
  position: relative;
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--sage-light), white);
}

.team-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  border: 2px solid var(--sage-light);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-sage);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-mint);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--mint-light), white);
}

.review-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  border: 2px solid var(--mint-light);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.review-author {
  font-weight: 600;
  color: var(--sage-dark);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--sky-light), white);
}

.contact-form {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  border: 2px solid var(--sky-light);
}

.form-control {
  border: 2px solid var(--sky-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-sky);
  box-shadow: 0 0 0 0.2rem rgba(135, 206, 235, 0.25);
}

.btn-primary {
  background: var(--primary-sage);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--coral-light), white);
}

.faq-card {
  background: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  border: 2px solid var(--coral-light);
}

.faq-question {
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: #666;
}

/* Gallery Section */
.gallery-section {
  background: var(--lavender-light);
}

.gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--sage-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--mint-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--lavender-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--primary-mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb img {
  height: 24px;
  width: auto;
}

/* Utility Classes */
.text-primary-sage { color: var(--primary-sage); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-sky { color: var(--primary-sky); }
.text-primary-coral { color: var(--primary-coral); }

.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-primary-mint { background-color: var(--primary-mint); }
.bg-primary-sky { background-color: var(--primary-sky); }
.bg-primary-coral { background-color: var(--primary-coral); }


.hero-section h1 {
    padding-top: 275px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
