/* Storavibe Wellness Center - Main Stylesheet */

/* CSS Variables for consistent spacing and colors */
:root {
  /* Color Palette */
  --storavibe-white: #ffffff;
  --storavibe-mint: #C7DB9C;
  --storavibe-cream: #FFF0BD;
  --storavibe-coral: #FDAB9E;
  --storavibe-red: #E50046;

  /* Spacing Variables */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Font Sizes */
  --font-xs: 0.875rem;
  --font-sm: 1rem;
  --font-md: 1.25rem;
  --font-lg: 1.75rem;
  --font-xl: 2.5rem;
  --font-xxl: 3.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: var(--storavibe-white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--space-md);
  color: var(--storavibe-red);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: var(--font-xxl);
}

h2 {
  font-size: var(--font-xl);
}

h3 {
  font-size: var(--font-lg);
}

p {
  margin-bottom: var(--space-md);
  font-size: var(--font-sm);
}

a {
  color: var(--storavibe-red);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--storavibe-coral);
}

/* Container */
.storavibe-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 0;
}

/* Header & Navigation */
.storavibe-header {
  position: sticky;
  top: 0;
  background-color: var(--storavibe-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: var(--space-sm) 0;
}

.storavibe-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.storavibe-logo {
  display: flex;
  align-items: center;
}

.storavibe-logo a {
  font-size: var(--font-lg);
}

.storavibe-nav {
  display: flex;
  align-items: center;
}

.storavibe-nav-list {
  display: flex;
  list-style: none;
}

.storavibe-nav-item {
  margin-left: var(--space-md);
}

.storavibe-nav-link {
  font-size: var(--font-sm);
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  position: relative;
}

.storavibe-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--storavibe-red);
  transition: width 0.3s ease;
}

.storavibe-nav-link:hover::after {
  width: 100%;
}

.storavibe-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.storavibe-mobile-menu-icon {
  width: 30px;
  height: 24px;
  position: relative;
}

.storavibe-mobile-menu-icon span,
.storavibe-mobile-menu-icon::before,
.storavibe-mobile-menu-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--storavibe-red);
  transition: all 0.3s ease;
}

.storavibe-mobile-menu-icon::before {
  top: 0;
}

.storavibe-mobile-menu-icon span {
  top: 10px;
}

.storavibe-mobile-menu-icon::after {
  bottom: 0;
}

/* Hero Section */
.storavibe-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, var(--storavibe-cream), var(--storavibe-mint));
  overflow: hidden;
}

.storavibe-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.storavibe-hero h1 {
  font-size: var(--font-xxl);
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease;
}

.storavibe-hero-description {
  font-size: var(--font-md);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1.2s ease;
}

.storavibe-hero-cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--storavibe-red);
  color: var(--storavibe-white);
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease;
}

.storavibe-hero-cta:hover {
  background-color: var(--storavibe-coral);
  color: var(--storavibe-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 0, 70, 0.2);
}

/* Section Styling */
.storavibe-section {
  padding: var(--space-xl) 0;
}

.storavibe-section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.storavibe-section-subtitle {
  text-align: center;
  font-size: var(--font-md);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: #666;
}

/* About Section */
.storavibe-about {
  background-color: var(--storavibe-white);
}

.storavibe-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

.storavibe-about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.storavibe-about-image img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.storavibe-about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.storavibe-services {
  background-color: var(--storavibe-mint);
  position: relative;
}

.storavibe-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, var(--storavibe-white) 0%, var(--storavibe-white) 50%, var(--storavibe-mint) 51%, var(--storavibe-mint) 100%);
  transform: translateY(-100%);
}

.storavibe-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.storavibe-service-card {
  background-color: var(--storavibe-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.storavibe-service-image {
  height: 300px;
  overflow: hidden;
}

.storavibe-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.storavibe-service-card:hover .storavibe-service-image img {
  transform: scale(1.1);
}

.storavibe-service-content {
  padding: var(--space-md);
}

.storavibe-service-title {
  font-size: var(--font-md);
  margin-bottom: var(--space-sm);
}

.storavibe-service-description {
  font-size: var(--font-sm);
  color: #666;
  margin-bottom: var(--space-sm);
}

.storavibe-service-link {
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.storavibe-service-icon {
  margin-left: var(--space-xs);
}

/* Pricing Section */
.storavibe-pricing {
  background-color: var(--storavibe-cream);
}

.storavibe-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.storavibe-price-card {
  background-color: var(--storavibe-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
}

.storavibe-price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.storavibe-price-title {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
  color: var(--storavibe-red);
}

.storavibe-price-amount {
  font-size: var(--font-xl);
  font-weight: bold;
  margin-bottom: var(--space-md);
  color: var(--storavibe-red);
}

.storavibe-price-frequency {
  font-size: var(--font-xs);
  color: #666;
  display: block;
  margin-top: var(--space-xs);
}

.storavibe-price-features {
  list-style: none;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.storavibe-price-feature {
  margin-bottom: var(--space-sm);
  position: relative;
}

.storavibe-price-feature::before {
  content: '✓';
  color: var(--storavibe-red);
  margin-right: var(--space-xs);
  font-weight: bold;
}

.storavibe-price-cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--storavibe-red);
  color: var(--storavibe-white);
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
}

.storavibe-price-cta:hover {
  background-color: var(--storavibe-coral);
  color: var(--storavibe-white);
}

/* Featured section */
.storavibe-featured {
  background-color: var(--storavibe-white);
}

.storavibe-featured-wrapper {
  position: relative;
}

.storavibe-slideshow {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.storavibe-slide {
  height: 600px;
  display: none;
  position: relative;
}

.storavibe-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.storavibe-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  cursor: zoom-in;
}

.storavibe-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--storavibe-white);
}

.storavibe-slide-title {
  color: var(--storavibe-white);
  margin-bottom: var(--space-xs);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.storavibe-slideshow-nav {
  display: flex;
  justify-content: center;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.storavibe-slideshow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--storavibe-mint);
  margin: 0 var(--space-xs);
  cursor: pointer;
  transition: all 0.3s ease;
}

.storavibe-slideshow-dot.active {
  background-color: var(--storavibe-red);
  transform: scale(1.2);
}

.storavibe-slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.storavibe-slideshow-arrow:hover {
  background-color: var(--storavibe-white);
}

.storavibe-slideshow-prev {
  left: 20px;
}

.storavibe-slideshow-next {
  right: 20px;
}

/* Modal for image zoom */
.storavibe-zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.storavibe-zoom-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.storavibe-zoom-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.storavibe-zoom-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--storavibe-white);
  font-size: 30px;
  cursor: pointer;
}

/* Testimonials Section */
.storavibe-testimonials {
  background-color: var(--storavibe-coral);
  position: relative;
}

.storavibe-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom right, var(--storavibe-cream) 0%, var(--storavibe-cream) 50%, var(--storavibe-coral) 51%, var(--storavibe-coral) 100%);
  transform: translateY(-100%);
}

.storavibe-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.storavibe-testimonial-card {
  background-color: var(--storavibe-white);
  border-radius: 10px;
  padding: var(--space-md);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.storavibe-testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
}

.storavibe-testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 3rem;
  color: var(--storavibe-mint);
  line-height: 1;
}

.storavibe-testimonial-author {
  display: flex;
  align-items: center;
}

.storavibe-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-sm);
}

.storavibe-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storavibe-testimonial-info h4 {
  margin-bottom: 0;
  font-size: var(--font-sm);
}

.storavibe-testimonial-info p {
  margin-bottom: 0;
  font-size: var(--font-xs);
  color: #666;
}

/* Schedule Section */
.storavibe-schedule {
  background-color: var(--storavibe-white);
}

.storavibe-schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.storavibe-schedule-header {
  background-color: var(--storavibe-red);
  color: var(--storavibe-white);
  padding: var(--space-sm);
  text-align: center;
  font-weight: bold;
}

.storavibe-schedule-time {
  padding: var(--space-sm);
  background-color: var(--storavibe-white);
  border-bottom: 1px solid #eee;
}

.storavibe-schedule-class {
  padding: var(--space-sm);
  background-color: var(--storavibe-white);
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.storavibe-schedule-class:hover {
  background-color: var(--storavibe-mint);
}

.storavibe-schedule-class-title {
  font-weight: bold;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
}

.storavibe-schedule-class-instructor {
  font-size: 0.8rem;
  color: #666;
}

/* Contact Section */
.storavibe-contact {
  background-color: var(--storavibe-red);
  color: var(--storavibe-white);
  position: relative;
}

.storavibe-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, var(--storavibe-white) 0%, var(--storavibe-white) 50%, var(--storavibe-red) 51%, var(--storavibe-red) 100%);
  transform: translateY(-100%);
}

.storavibe-contact-title,
.storavibe-contact-subtitle {
  color: var(--storavibe-white);
}

.storavibe-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.storavibe-contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.storavibe-contact-icon {
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.storavibe-contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--storavibe-white);
}

.storavibe-contact-text {
  line-height: 1.4;
}

.storavibe-contact-text a{
  color: var(--storavibe-white);
}

.storavibe-contact-form {
  background-color: var(--storavibe-white);
  border-radius: 10px;
  padding: var(--space-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.storavibe-form-group {
  margin-bottom: var(--space-md);
}

.storavibe-form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: bold;
  color: #333;
}

.storavibe-form-input,
.storavibe-form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.storavibe-form-input:focus,
.storavibe-form-textarea:focus {
  border-color: var(--storavibe-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 70, 0.1);
}

.storavibe-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.storavibe-form-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--storavibe-red);
  color: var(--storavibe-white);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.storavibe-form-button:hover {
  background-color: var(--storavibe-coral);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 0, 70, 0.2);
}

/* Footer */
.storavibe-footer {
  background-color: #333;
  color: var(--storavibe-white);
  padding: var(--space-lg) 0 var(--space-md);
}

.storavibe-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.storavibe-footer-column h3 {
  color: var(--storavibe-white);
  font-size: var(--font-md);
  margin-bottom: var(--space-md);
}

.storavibe-footer-links {
  list-style: none;
}

.storavibe-footer-link {
  margin-bottom: var(--space-sm);
}

.storavibe-footer-link a {
  color: #ccc;
  transition: all 0.3s ease;
}

.storavibe-footer-link a:hover {
  color: var(--storavibe-coral);
  padding-left: var(--space-xs);
}

.storavibe-footer-social {
  display: flex;
  gap: var(--space-sm);
}

.storavibe-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.storavibe-social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--storavibe-white);
}

.storavibe-social-icon:hover {
  background-color: var(--storavibe-red);
  transform: translateY(-3px);
}

.storavibe-footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--font-xs);
  color: #999;
}

/* Success Page */
.storavibe-success {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--storavibe-mint), var(--storavibe-cream));
}

.storavibe-success-icon {
  width: 75px;
  height: 75px;
  background-color: var(--storavibe-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: pulse 2s infinite;
}

.storavibe-success-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--storavibe-white);
}

.storavibe-success-title {
  font-size: var(--font-xl);
  margin-bottom: var(--space-md);
  color: var(--storavibe-red);
}

.storavibe-success-text {
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.storavibe-success-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--storavibe-red);
  color: var(--storavibe-white);
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.storavibe-success-button:hover {
  background-color: var(--storavibe-coral);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 0, 70, 0.2);
}

/* Policy Pages */
.storavibe-policy {
  padding: var(--space-xl) 0;
}

.storavibe-policy-content {
  background-color: var(--storavibe-white);
  border-radius: 10px;
  padding: var(--space-lg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.storavibe-policy-title {
  margin-bottom: var(--space-lg);
  color: var(--storavibe-red);
  text-align: center;
}

.storavibe-policy-section {
  margin-bottom: var(--space-lg);
}

.storavibe-policy-section h3 {
  margin-bottom: var(--space-sm);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 0, 70, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(229, 0, 70, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 0, 70, 0);
  }
}

/* Media Queries */
/* Desktop and larger screens */
@media (max-width: 1400px) {
  :root {
    --font-xxl: 3.2rem;
    --font-xl: 2.5rem;
    --font-lg: 1.8rem;
    --space-xl: 5rem;
  }
  
  .storavibe-container {
    max-width: 1100px;
  }
}

/* Small desktop and large tablets */
@media (max-width: 1200px) {
  :root {
    --font-xxl: 3rem;
    --font-xl: 2.25rem;
    --font-lg: 1.75rem;
    --space-lg: 3.5rem;
    --space-xl: 4.5rem;
  }
  
  .storavibe-container {
    max-width: 960px;
    padding: 0 var(--space-md);
  }
  
  .storavibe-services-grid,
  .storavibe-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .storavibe-hero {
    height: 70vh;
  }
  
  .storavibe-hero-content {
    max-width: 550px;
  }
  
  .storavibe-slideshow-arrow {
    width: 40px;
    height: 40px;
  }
}

/* Tablets and small desktops */
@media (max-width: 991px) {
  :root {
    /* Increase font sizes for better readability */
    --font-xxl: 2.8rem;
    --font-xl: 2.3rem;
    --font-lg: 1.8rem;
    --font-md: 1.3rem;
    --font-sm: 1.1rem;
    --font-xs: 0.95rem;
    
    /* Increase spacing for better touch targets */
    --space-sm: 1.25rem;
    --space-md: 2.5rem;
    --space-lg: 3.5rem;
    --space-xl: 5rem;
  }
  
  .storavibe-container {
    max-width: 720px;
    padding: 0 var(--space-sm);
  }
  
  /* Header and Navigation */
  .storavibe-header {
    padding: var(--space-sm) 0;
  }
  
  .storavibe-mobile-menu-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
    right: 8px;
    position: relative;
  }
  
  .storavibe-nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--storavibe-white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-xl) + 20px) var(--space-md) var(--space-md);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .storavibe-nav-list.active {
    right: 0;
  }
  
  .storavibe-nav-item {
    margin: 0 0 var(--space-md) 0;
    width: 100%;
  }
  
  .storavibe-nav-link {
    display: block;
    font-size: var(--font-md);
    padding: var(--space-xs) 0;
  }
  
  .storavibe-nav-link::after {
    bottom: 0;
    width: 100%;
    opacity: 0.3;
    height: 1px;
  }
  
  /* Hero Section */
  .storavibe-hero {
    height: auto;
    min-height: 60vh;
    padding: var(--space-lg) 0;
  }
  
  .storavibe-hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .storavibe-hero h1 {
    margin-bottom: var(--space-sm);
  }
  
  .storavibe-hero-description {
    margin-bottom: var(--space-md);
  }
  
  /* Section Styling */
  .storavibe-section {
    padding: var(--space-lg) 0;
  }
  
  .storavibe-section-title {
    margin-bottom: var(--space-md);
  }
  
  .storavibe-section-subtitle {
    margin-bottom: var(--space-md);
  }
  
  /* Grid Layouts */
  .storavibe-about-grid,
  .storavibe-contact-grid,
  .storavibe-testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .storavibe-about-image {
    margin-bottom: var(--space-md);
  }
  
  .storavibe-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  /* Schedule Grid */
  .storavibe-schedule-table {
    overflow-x: auto;
    width: 100%;
    margin-bottom: var(--space-md);
    -webkit-overflow-scrolling: touch;
  }
  
  .storavibe-schedule-grid {
    width: 800px;
    min-width: 100%;
  }
  
  /* Card styles */
  .storavibe-service-card,
  .storavibe-price-card,
  .storavibe-testimonial-card {
    transition: transform 0.2s ease;
  }
  
  .storavibe-service-card:hover,
  .storavibe-price-card:hover,
  .storavibe-testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .storavibe-slideshow-arrow {
    top: 45%;
    width: 35px;
    height: 35px;
  }
  
  /* Forms */
  .storavibe-form-group {
    margin-bottom: var(--space-sm);
  }
  
  .storavibe-form-input,
  .storavibe-form-textarea {
    padding: var(--space-sm);
    font-size: var(--font-sm);
  }
  
  .storavibe-form-button {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }
  
  /* Footer */
  .storavibe-footer {
    padding: var(--space-lg) 0 var(--space-md);
  }
  
  .storavibe-footer-bottom {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
  }
}

/* Mobile landscape and medium tablets */
@media (max-width: 767px) {
  :root {
    --font-xxl: 2.5rem;
    --font-xl: 2rem;
    --font-lg: 1.6rem;
    --font-md: 1.2rem;
    --space-md: 2rem;
    --space-lg: 3rem;
  }
  
  .storavibe-container {
    max-width: 540px;
    padding: 0 var(--space-sm);
  }
  
  /* Hero Section */
  .storavibe-hero {
    min-height: auto;
    padding: var(--space-lg) 0;
  }
  
  .storavibe-hero-cta {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  
  /* Section Spacing */
  .storavibe-section {
    padding: var(--space-md) 0;
  }
  
  .storavibe-section::before {
    height: 30px;
  }
  
  /* Grid Layouts */
  .storavibe-services-grid,
  .storavibe-pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .storavibe-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  
  .storavibe-footer-social {
    justify-content: center;
  }
  
  /* Slideshow */
  .storavibe-slide img ,
  .storavibe-slide{
    height: 300px;
  }
  
  .storavibe-slideshow-dot {
    width: 10px;
    height: 10px;
  }
  
  /* Cards */
  .storavibe-service-card,
  .storavibe-price-card,
  .storavibe-testimonial-card {
    margin-bottom: var(--space-sm);
  }
  
  /* Contact */
  .storavibe-contact-info {
    margin-bottom: var(--space-md);
  }
  
  /* Forms and Buttons */
  .storavibe-form-button,
  .storavibe-hero-cta,
  .storavibe-price-cta,
  .storavibe-success-button {
    width: 100%;
  }
  
  /* Policy Pages */
  .storavibe-policy-content {
    padding: var(--space-md);
  }
}

/* Mobile portrait */
@media (max-width: 575px) {
  :root {
    --font-xxl: 2.2rem;
    --font-xl: 1.8rem;
    --font-lg: 1.5rem;
    --font-md: 1.1rem;
    --font-sm: 1rem;
    --font-xs: 0.85rem;
    --space-sm: 0.875rem;
    --space-md: 1.75rem;
    --space-lg: 2.5rem;
  }
  
  .storavibe-container {
    padding: 0 var(--space-sm);
  }
  
  /* Header */
  .storavibe-header {
    padding: 5px 0;
  }
  
  /* Navigation */
  .storavibe-nav-list {
    width: 250px;
    padding-top: 80px;
  }
  
  /* Hero Section */
  .storavibe-hero h1 {
    font-size: var(--font-xxl);
  }
  
  .storavibe-hero-description {
    font-size: var(--font-sm);
  }
  
  /* Sections */
  .storavibe-section {
    padding: var(--space-md) 0;
  }
  
  /* Slideshow */
  .storavibe-slide img ,.storavibe-slide{
    height: 250px;
  }
  
  .storavibe-slideshow-arrow {
    width: 30px;
    height: 30px;
  }
  
  .storavibe-slide-content {
    padding: var(--space-sm);
  }
  
  .storavibe-slide-title {
    font-size: var(--font-md);
    margin-bottom: 0.25rem;
  }
  
  .storavibe-slide-content p {
    font-size: var(--font-xs);
  }
  
  /* Schedule */
  .storavibe-schedule-class-title,
  .storavibe-schedule-class-instructor {
    font-size: var(--font-xs);
  }
  
  /* Contact */
  .storavibe-contact-form {
    padding: var(--space-sm);
  }
  
  .storavibe-contact-info-item {
    margin-bottom: var(--space-sm);
  }
  
  /* Footer */
  .storavibe-footer {
    padding: var(--space-md) 0 var(--space-sm);
  }
  
  .storavibe-footer h3 {
    font-size: var(--font-md);
    margin-bottom: var(--space-sm);
  }
  
  h2{
    font-size: var(--font-lg);
  }
  
  .storavibe-policy-title{
    font-size: var(--font-xl);
  }
  
  .storavibe-footer-column {
    margin-bottom: var(--space-md);
  }
  
  .storavibe-footer-bottom {
    font-size: 0.75rem;
  }
}

/* Very small mobile */
@media (max-width: 400px) {
  :root {
    --font-xxl: 2rem;
    --font-xl: 1.6rem;
    --font-lg: 1.4rem;
    --font-md: 1rem;
    --font-sm: 0.9rem;
    --font-xs: 0.8rem;
  }
  /* Slideshow */
  .storavibe-slide img,.storavibe-slide {
    height: 200px;
  }
  
  /* Hero */
  .storavibe-hero-cta {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-xs);
    width: 100%;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  :root {
    --font-xxl: 1.8rem;
    --font-xl: 1.5rem;
    --font-lg: 1.3rem;
    --font-md: 0.95rem;
    --font-sm: 0.85rem;
    --font-xs: 0.75rem;
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
  }

  
  .storavibe-container {
    padding: 0 var(--space-sm);
  }
  
  /* Header */
  .storavibe-nav-list {
    width: 230px;
  }
  
  /* Cards */
  .storavibe-service-content,
  .storavibe-price-card,
  .storavibe-testimonial-card {
    padding: var(--space-sm);
  }
  
  /* Buttons */
  .storavibe-hero-cta,
  .storavibe-form-button,
  .storavibe-price-cta,
  .storavibe-success-button {
    width: 100%;
    font-size: var(--font-xs);
    padding: var(--space-xs) var(--space-sm);
    text-align: center;
  }

}