/* Fonts are loaded via Google Fonts CDN in the main plugin file */

:root {
  --font-family-yeseva-one: 'Yeseva One', sans-serif;
  --font-family-qwitcher-grypen: 'Qwitcher Grypen', sans-serif;
  --font-family-manrope: 'Manrope', sans-serif;
  --text-rgb-31-41-53: rgba(31, 41, 53, 1);
  --text-rgb-191-112-25: rgba(191, 112, 25, 1);
  --text-black: rgba(0, 0, 0, 1);
  --text-white: rgba(255, 255, 255, 1);
  --bg-light: #EDEEE5; /* from figma code */
  --bg-brown: #9F481E; /* from figma code */
  --bg-brown-dark: #BF7019; /* from figma code */
}

/* General Layout */
.vitalora-section {
  padding: 80px 20px;
  font-family: var(--font-family-manrope);
  background-color: var(--bg-light);
  overflow: hidden;
}

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

.vitalora-title {
  font-family: var(--font-family-yeseva-one);
  color: var(--text-rgb-191-112-25);
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

.vitalora-btn {
  display: inline-block;
  background: white;
  color: black;
  font-family: var(--font-family-manrope);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.vitalora-btn:hover {
  background: var(--bg-brown-dark);
  color: white;
}

/* 1. Hero Widget */
.vt-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.vt-hero-content {
  flex: 1 1 500px;
}

.vt-hero-title {
  font-family: var(--font-family-yeseva-one);
  font-size: clamp(40px, 5vw, 75px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vt-hero-title span.dark { color: var(--text-rgb-31-41-53); }
.vt-hero-title span.accent { color: var(--text-rgb-191-112-25); }

.vt-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-black);
  margin-bottom: 30px;
}

.vt-hero-badge-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.vt-hero-badge {
  background: var(--text-rgb-191-112-25);
  color: white;
  padding: 15px 25px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 21px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.vt-hero-badge img {
  height: 60px;
  object-fit: contain;
}

.vt-hero-image {
  flex: 1 1 500px;
  position: relative;
}
.vt-hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 2. Features */
.vt-features {
  background: transparent;
}
.vt-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.vt-feature-item img {
  height: 60px;
  margin-bottom: 20px;
}
.vt-feature-item h3 {
  font-family: var(--font-family-manrope);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-rgb-31-41-53);
}

/* 3. Instructor */
.vt-instructor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.vt-instructor-content {
  flex: 1 1 500px;
}
.vt-instructor-subtitle {
  font-family: var(--font-family-yeseva-one);
  font-size: 36px;
  color: var(--text-rgb-191-112-25);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.vt-instructor-title {
  font-family: var(--font-family-yeseva-one);
  font-size: 56px;
  color: var(--text-rgb-31-41-53);
  margin-bottom: 20px;
}
.vt-instructor-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-black);
  margin-bottom: 30px;
}
.vt-instructor-signature {
  font-family: var(--font-family-qwitcher-grypen);
  font-size: 85px;
  color: var(--text-rgb-191-112-25);
  line-height: 1;
}
.vt-instructor-image {
  flex: 1 1 500px;
}
.vt-instructor-image img {
  width: 100%;
  border-radius: 10px;
}

/* 4. Learn */
.vt-learn-section {
  background-color: var(--bg-brown-dark);
  padding: 80px 20px;
}
.vt-learn-title {
  color: white;
  text-align: left;
}
.vt-learn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.vt-learn-list {
  flex: 1 1 500px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.vt-learn-list li {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.vt-learn-list li::before {
  content: '✓';
  color: white;
  font-weight: bold;
}
.vt-learn-image {
  flex: 1 1 500px;
}
.vt-learn-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* 5. Process */
.vt-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.vt-process-item {
  position: relative;
}
.vt-process-icon-wrap {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  border: 2px solid var(--text-rgb-191-112-25);
  font-size: 30px;
  color: var(--text-rgb-191-112-25);
}
.vt-process-icon-wrap img {
  height: 40px;
}
.vt-process-item h3 {
  font-family: var(--font-family-manrope);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-rgb-31-41-53);
}

/* 6. FAQ */
.vt-faq {
  max-width: 800px;
  margin: 0 auto;
}
.vt-faq-item {
  border: 1px solid var(--text-rgb-191-112-25);
  margin-bottom: 10px;
  background: white;
}
.vt-faq-question {
  padding: 15px 30px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-rgb-31-41-53);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vt-faq-answer {
  padding: 0 30px 15px 30px;
  font-size: 18px;
  display: none;
}
.vt-faq-item.active .vt-faq-answer {
  display: block;
}

/* 7. Booking */
.vt-booking-section {
  background-color: var(--bg-brown);
  padding: 80px 20px;
}
.vt-booking-title {
  color: white;
  text-align: left;
}
.vt-booking {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.vt-booking-content {
  flex: 1 1 400px;
  color: white;
}
.vt-booking-content p {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
}
.vt-booking-list {
  list-style: none;
  padding: 0;
}
.vt-booking-list li {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.vt-booking-list li::before {
  content: '✓';
  color: white;
}
.vt-booking-form {
  flex: 1 1 400px;
}
.vt-form-control {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 16px;
  font-family: var(--font-family-manrope);
}
.vt-form-control::placeholder {
  color: rgba(255,255,255,0.7);
}
.vt-form-control:focus {
  outline: none;
  background: rgba(255,255,255,0.1);
}
textarea.vt-form-control {
  height: 120px;
  resize: vertical;
}

.vt-booking-desc {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Pricing Card */
.vt-pricing-card {
  border: 3px solid var(--text-rgb-191-112-25);
  border-radius: 16px;
  background: white;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.vt-pricing-banner {
  background-color: var(--text-rgb-191-112-25);
  padding: 30px;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 140px;
}

.vt-pricing-banner-text {
  font-family: var(--font-family-manrope);
  font-weight: 700;
  font-size: 26px;
  color: white;
  max-width: 60%;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.vt-pricing-banner-img {
  position: absolute;
  right: 10px;
  bottom: 0;
  max-height: 150px;
  z-index: 1;
}

.vt-pricing-card-inner {
  padding: 40px;
}

.vt-pricing-card-title {
  font-family: var(--font-family-yeseva-one);
  font-size: 40px;
  color: var(--text-rgb-191-112-25);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.vt-pricing-price-wrap {
  margin-bottom: 30px;
}

.vt-pricing-price {
  font-family: var(--font-family-yeseva-one);
  font-size: 90px;
  color: var(--text-rgb-191-112-25);
  line-height: 1;
  display: block;
}

.vt-pricing-subtitle {
  font-family: var(--font-family-manrope);
  font-weight: 700;
  font-size: 21px;
  color: var(--text-rgb-191-112-25);
  display: block;
  margin-bottom: 10px;
}

.vt-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vt-pricing-list li {
  font-family: var(--font-family-manrope);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-rgb-31-41-53);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.vt-pricing-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .vt-hero-title { font-size: 40px; }
  .vt-instructor-title { font-size: 36px; }
  .vt-instructor-signature { font-size: 50px; }
  .vt-hero, .vt-instructor, .vt-learn, .vt-booking { flex-direction: column; }
}
