/* vrlovent - Hi-Tech Fitness Website Stylesheet */

:root {
  /* Colors */
  --vrlovent-primary: #8ec2ff;
  --vrlovent-secondary: #BCCCDC;
  --vrlovent-light: #F8FAFC;
  --vrlovent-dark: #9AA6B2;
  --vrlovent-accent: #6366f1;
  --vrlovent-text: #333;
  --vrlovent-text-light: #666;
  --vrlovent-bg: #F8FAFC;
  
  /* Spacing */
  --vrlovent-space-xs: 0.25rem;
  --vrlovent-space-sm: 0.5rem;
  --vrlovent-space-md: 1rem;
  --vrlovent-space-lg: 2rem;
  --vrlovent-space-xl: 4rem;
  
  /* Typography */
  --vrlovent-font-heading: 'Orbitron', sans-serif;
  --vrlovent-font-body: 'Rubik', sans-serif;
  
  /* Other */
  --vrlovent-border-radius: 8px;
  --vrlovent-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  --vrlovent-transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--vrlovent-font-body);
  color: var(--vrlovent-text);
  background-color: var(--vrlovent-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vrlovent-font-heading);
  margin-bottom: var(--vrlovent-space-md);
  color: var(--vrlovent-text);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--vrlovent-space-md);
}

a {
  color: var(--vrlovent-accent);
  text-decoration: none;
  transition: var(--vrlovent-transition);
}

a:hover {
  color: var(--vrlovent-text);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.vrlovent-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--vrlovent-space-md);
}

/* Section */
.vrlovent-section {
  padding: var(--vrlovent-space-xl) 0;
}

.vrlovent-section-title {
  text-align: center;
  margin-bottom: var(--vrlovent-space-xl);
}

.vrlovent-section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--vrlovent-space-sm);
}

.vrlovent-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background: var(--vrlovent-accent);
}

/* Buttons */
.vrlovent-btn {
  display: inline-block;
  padding: var(--vrlovent-space-sm) var(--vrlovent-space-lg);
  background-color: var(--vrlovent-accent);
  color: white;
  border: none;
  border-radius: var(--vrlovent-border-radius);
  font-family: var(--vrlovent-font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--vrlovent-transition);
  text-align: center;
}

.vrlovent-btn:hover {
  background-color: var(--vrlovent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vrlovent-btn-outline {
  background-color: transparent;
  border: 2px solid var(--vrlovent-accent);
  color: var(--vrlovent-accent);
}

.vrlovent-btn-outline:hover {
  background-color: var(--vrlovent-accent);
  color: white;
}

/* Header */
.vrlovent-header {
  position: absolute;
  width: 100%;
  z-index: 100;
  padding: var(--vrlovent-space-md) 0;
  transition: var(--vrlovent-transition);
}

.vrlovent-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vrlovent-logo {
  font-family: var(--vrlovent-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vrlovent-text);
  display: flex;
  align-items: center;
}

.vrlovent-logo-image {
  width: 40px;
  height: 40px;
  margin-right: var(--vrlovent-space-sm);
}

.vrlovent-nav {
  display: flex;
  align-items: center;
}

.vrlovent-nav-links {
  display: flex;
  list-style: none;
}

.vrlovent-nav-link {
  margin-left: var(--vrlovent-space-lg);
}

.vrlovent-nav-link a {
  color: var(--vrlovent-text);
  font-weight: 500;
}

.vrlovent-nav-link a:hover {
  color: var(--vrlovent-accent);
}

.vrlovent-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.vrlovent-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--vrlovent-primary), var(--vrlovent-secondary));
  overflow: hidden;
}

.vrlovent-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1611937663641-5cef5189d71b');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.vrlovent-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.vrlovent-hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--vrlovent-space-md);
}

.vrlovent-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--vrlovent-space-lg);
  color: var(--vrlovent-text-light);
}

.vrlovent-hero-cta {
  display: flex;
  gap: var(--vrlovent-space-md);
}

/* Products Section */
.vrlovent-products {
  background-color: var(--vrlovent-light);
}

.vrlovent-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--vrlovent-space-lg);
}

.vrlovent-product-card {
  background-color: white;
  border-radius: var(--vrlovent-border-radius);
  overflow: hidden;
  box-shadow: var(--vrlovent-shadow);
  transition: var(--vrlovent-transition);
}

.vrlovent-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vrlovent-product-image {
  height: 200px;
  background-color: var(--vrlovent-secondary);
  background-size: cover;
  background-position: center;
}

.vrlovent-product-content {
  padding: var(--vrlovent-space-lg);
}

.vrlovent-product-title {
  font-size: 1.5rem;
  margin-bottom: var(--vrlovent-space-sm);
}

.vrlovent-product-price {
  font-family: var(--vrlovent-font-heading);
  font-size: 1.25rem;
  color: var(--vrlovent-accent);
  margin-bottom: var(--vrlovent-space-md);
  font-weight: 700;
}

.vrlovent-product-description {
  margin-bottom: var(--vrlovent-space-lg);
  color: var(--vrlovent-text-light);
}

/* Features Section */
.vrlovent-features {
  background-color: white;
}

.vrlovent-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--vrlovent-space-lg);
}

.vrlovent-feature-card {
  padding: var(--vrlovent-space-lg);
  background-color: var(--vrlovent-light);
  border-radius: var(--vrlovent-border-radius);
  text-align: center;
  transition: var(--vrlovent-transition);
}

.vrlovent-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vrlovent-shadow);
}

.vrlovent-feature-icon {
  font-size: 2.5rem;
  color: var(--vrlovent-accent);
  margin-bottom: var(--vrlovent-space-md);
}

.vrlovent-feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--vrlovent-space-sm);
}

.vrlovent-feature-description {
  color: var(--vrlovent-text-light);
}

/* Trial Class Section */
.vrlovent-trial {
  background: linear-gradient(135deg, var(--vrlovent-primary), var(--vrlovent-secondary));
  padding: var(--vrlovent-space-xl) 0;
}

.vrlovent-trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vrlovent-space-xl);
}

.vrlovent-trial-content {
  flex: 1;
}

.vrlovent-trial-image {
  flex: 1;
  border-radius: var(--vrlovent-border-radius);
  overflow: hidden;
  box-shadow: var(--vrlovent-shadow);
}

/* Instructor Training Section */
.vrlovent-instructor {
  background-color: white;
}

.vrlovent-instructor-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vrlovent-space-xl);
}

.vrlovent-instructor-content {
  flex: 1;
}

.vrlovent-instructor-image {
  flex: 1;
  border-radius: var(--vrlovent-border-radius);
  overflow: hidden;
  box-shadow: var(--vrlovent-shadow);
}

/* Private Coaching Section */
.vrlovent-coaching {
  background-color: var(--vrlovent-light);
}

.vrlovent-coaching-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vrlovent-space-xl);
}

.vrlovent-coaching-content {
  flex: 1;
}

.vrlovent-coaching-image {
  flex: 1;
  border-radius: var(--vrlovent-border-radius);
  overflow: hidden;
  box-shadow: var(--vrlovent-shadow);
}

/* Contact Section */
.vrlovent-contact {
  background-color: white;
}

.vrlovent-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vrlovent-space-xl);
}

.vrlovent-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--vrlovent-space-lg);
}

.vrlovent-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--vrlovent-space-md);
}

.vrlovent-contact-icon {
  font-size: 1.5rem;
  color: var(--vrlovent-accent);
}

.vrlovent-contact-text h4 {
  margin-bottom: var(--vrlovent-space-xs);
}

.vrlovent-contact-map {
  border-radius: var(--vrlovent-border-radius);
  overflow: hidden;
  height: 400px;
}

.vrlovent-form {
  margin-top: var(--vrlovent-space-lg);
}

.vrlovent-form-group {
  margin-bottom: var(--vrlovent-space-md);
}

.vrlovent-form-label {
  display: block;
  margin-bottom: var(--vrlovent-space-xs);
  font-weight: 500;
}

.vrlovent-form-control {
  width: 100%;
  padding: var(--vrlovent-space-sm) var(--vrlovent-space-md);
  border: 1px solid var(--vrlovent-secondary);
  border-radius: var(--vrlovent-border-radius);
  font-family: var(--vrlovent-font-body);
  font-size: 1rem;
  transition: var(--vrlovent-transition);
}

.vrlovent-form-control:focus {
  outline: none;
  border-color: var(--vrlovent-accent);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.vrlovent-form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* FAQ Section */
.vrlovent-faq {
  background-color: var(--vrlovent-light);
}

.vrlovent-faq-item {
  background-color: white;
  border-radius: var(--vrlovent-border-radius);
  margin-bottom: var(--vrlovent-space-md);
  overflow: hidden;
  box-shadow: var(--vrlovent-shadow);
}

.vrlovent-faq-question {
  padding: var(--vrlovent-space-md) var(--vrlovent-space-lg);
  background-color: var(--vrlovent-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: var(--vrlovent-transition);
}

.vrlovent-faq-question:hover {
  background-color: var(--vrlovent-secondary);
}

.vrlovent-faq-toggle {
  font-size: 1.25rem;
}

.vrlovent-faq-answer {
  padding: 0 var(--vrlovent-space-lg);
  max-height: 0;
  overflow: hidden;
  transition: var(--vrlovent-transition);
}

.vrlovent-faq-item.active .vrlovent-faq-answer {
  padding: var(--vrlovent-space-lg);
  max-height: 500px;
}

/* Add body state for when menu is open */
body.menu-open {
  overflow: hidden; /* Prevents scrolling when menu is open */
}

/* Improved form elements for mobile */
.vrlovent-form-control {
  font-size: 16px; /* Prevents iOS zoom on input focus */
  -webkit-appearance: none; /* Removes default styling on iOS */
  border-radius: var(--vrlovent-border-radius);
}

select.vrlovent-form-control {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%239AA6B2' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 30px;
}

.vrlovent-footer a {
  color: rgb(19, 0, 71);
}

.vrlovent-footer a:hover {
  color: var(--vrlovent-primary);
}

.vrlovent-footer-copyright {
  margin-top: var(--vrlovent-space-lg);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Privacy Policy Popup */
.vrlovent-privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: var(--vrlovent-space-lg);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: var(--vrlovent-transition);
}

.vrlovent-privacy-popup.active {
  transform: translateY(0);
}

.vrlovent-privacy-popup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vrlovent-space-md);
}

.vrlovent-privacy-popup-content {
  flex: 1;
}

.vrlovent-privacy-popup-buttons {
  display: flex;
  gap: var(--vrlovent-space-sm);
}

/* Responsive Images */
.vrlovent-responsive-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Thank You Page */
.vrlovent-thankyou {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--vrlovent-space-xl);
}

/* Responsive Embedded Content */
.vrlovent-responsive-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.vrlovent-responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vrlovent-thankyou-icon {
  font-size: 5rem;
  color: var(--vrlovent-accent);
  margin-bottom: var(--vrlovent-space-lg);
}

.vrlovent-thankyou-title {
  font-size: 3rem;
  margin-bottom: var(--vrlovent-space-md);
}

.vrlovent-thankyou-text {
  max-width: 600px;
  margin-bottom: var(--vrlovent-space-lg);
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .vrlovent-hero-title {
    font-size: 3rem;
  }
  
  .vrlovent-trial-inner,
  .vrlovent-instructor-inner,
  .vrlovent-coaching-inner {
    flex-direction: column;
  }
  
  .vrlovent-contact-inner {
    grid-template-columns: 1fr;
  }
  
  .vrlovent-products-grid,
  .vrlovent-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .vrlovent-container {
    padding: 0 var(--vrlovent-space-md);
  }
  
  .vrlovent-section {
    padding: var(--vrlovent-space-lg) 0;
  }
  
  .vrlovent-section-title {
    margin-bottom: var(--vrlovent-space-lg);
  }
  
  .vrlovent-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    padding: var(--vrlovent-space-xl);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--vrlovent-transition);
    z-index: 101;
  }
  
  .vrlovent-nav-links.active {
    right: 0;
  }
  
  .vrlovent-nav-link {
    margin: var(--vrlovent-space-md) 0;
  }
  
  .vrlovent-menu-toggle {
    display: block;
    z-index: 102;
  }
  
  .vrlovent-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
  }
  
  .vrlovent-menu-overlay.active {
    display: block;
  }
  
  .vrlovent-hero {
    min-height: 500px;
  }
  
  .vrlovent-hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--vrlovent-space-md);
  }
  
  .vrlovent-hero-cta {
    justify-content: center;
    gap: var(--vrlovent-space-sm);
  }
  
  .vrlovent-products-grid,
  .vrlovent-features-grid {
    grid-template-columns: 1fr;
    gap: var(--vrlovent-space-md);
  }
  
  .vrlovent-privacy-popup-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .vrlovent-contact-map {
    height: 300px;
  }
  
  .vrlovent-contact-item {
    gap: var(--vrlovent-space-sm);
  }
  
  .vrlovent-contact-icon {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
  
  body {
    line-height: 1.5;
  }
  
  .vrlovent-container {
    padding: 0 var(--vrlovent-space-sm);
  }
  
  .vrlovent-section {
    padding: var(--vrlovent-space-md) 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .vrlovent-hero {
    min-height: 450px;
  }
  
  .vrlovent-hero-title {
    font-size: 2rem;
    margin-bottom: var(--vrlovent-space-sm);
  }
  
  .vrlovent-hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--vrlovent-space-md);
  }
  
  .vrlovent-btn {
    padding: var(--vrlovent-space-sm) var(--vrlovent-space-md);
    font-size: 0.875rem;
    width: 100%;
  }
  
  .vrlovent-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .vrlovent-product-image {
    height: 150px;
  }
  
  .vrlovent-product-content {
    padding: var(--vrlovent-space-md);
  }
  
  .vrlovent-feature-icon {
    font-size: 2rem;
  }
  
  .vrlovent-trial-inner,
  .vrlovent-instructor-inner,
  .vrlovent-coaching-inner {
    gap: var(--vrlovent-space-md);
  }
  
  .vrlovent-feature-card {
    padding: var(--vrlovent-space-md);
  }
  
  .vrlovent-thankyou-title {
    font-size: 2rem;
  }
  
  .vrlovent-form-group {
    margin-bottom: var(--vrlovent-space-sm);
  }
  
  .vrlovent-privacy-popup {
    padding: var(--vrlovent-space-md);
  }
  
  .vrlovent-privacy-popup-buttons {
    width: 100%;
  }
  
  .vrlovent-privacy-popup-buttons .vrlovent-btn {
    width: 100%;
  }
  
  .vrlovent-footer {
    padding: var(--vrlovent-space-md) 0;
  }
}

/* Additional breakpoint for very small screens */
@media (max-width: 400px) {
  html {
    font-size: 11px;
  }
  
  .vrlovent-logo {
    font-size: 1.5rem;
  }
  
  .vrlovent-logo-image {
    width: 30px;
    height: 30px;
  }
  
  .vrlovent-hero {
    min-height: 400px;
  }
  
  .vrlovent-hero-title {
    font-size: 1.75rem;
  }
  
  .vrlovent-container {
    padding: 0 var(--vrlovent-space-xs);
  }
  
  .vrlovent-contact-map {
    height: 250px;
  }
  
  .vrlovent-form-control {
    padding: var(--vrlovent-space-xs) var(--vrlovent-space-sm);
  }
  
  .vrlovent-thankyou-icon {
    font-size: 3rem;
  }
  
  .vrlovent-faq-question {
    padding: var(--vrlovent-space-sm) var(--vrlovent-space-md);
    font-size: 0.9rem;
  }
  
  .vrlovent-faq-item.active .vrlovent-faq-answer {
    padding: var(--vrlovent-space-md);
  }
}