/* 
* Quantoria - Morning Yoga Landing Page
* Author: Claude
* Description: Styles for Quantoria morning yoga website
*/

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --bg-color: #FFF7E6;
  --accent-color: #F4A261;
  --text-color: #333333;
  --button-color: #E76F51;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --mid-gray: #DDDDDD;
  --dark-gray: #666666;
  --overlay-color: rgba(0, 0, 0, 0.5);
  --success-color: #4CAF50;
  
  /* Typography */
  --heading-font: 'Lora', serif;
  --body-font: 'Nunito', sans-serif;
  --base-font-size: 1rem;
  --small-font-size: 0.875rem;
  --large-font-size: 1.25rem;
  --h1-font-size: 3rem;
  --h2-font-size: 2.5rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.25rem;
  --h5-font-size: 1rem;
  --line-height: 1.6;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-circle: 50%;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;
  
  /* Device Breakpoints */
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1, .h1 {
  font-size: var(--h1-font-size);
}

h2, .h2 {
  font-size: var(--h2-font-size);
}

h3, .h3 {
  font-size: var(--h3-font-size);
}

h4, .h4 {
  font-size: var(--h4-font-size);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: var(--radius-sm);
}

/* ===== HEADER ===== */
.header {
  background-color: var(--bg-color);
  padding: var(--space-md) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.header--scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__logo-link {
  display: block;
  z-index: 1001;
}

.header__logo {
  height: 50px;
  width: auto;
  transition: transform var(--transition-fast);
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__nav-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__nav-icon,
.header__nav-icon::before,
.header__nav-icon::after {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition-fast);
  border-radius: var(--radius-sm);
}

.header__nav-icon::before,
.header__nav-icon::after {
  content: '';
  position: absolute;
}

.header__nav-icon::before {
  top: 0;
}

.header__nav-icon::after {
  bottom: 0;
}

.header__nav-toggle.active .header__nav-icon {
  background-color: transparent;
}

.header__nav-toggle.active .header__nav-icon::before {
  top: 10px;
  transform: rotate(45deg);
}

.header__nav-toggle.active .header__nav-icon::after {
  bottom: 10px;
  transform: rotate(-45deg);
}

.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
  z-index: 1000;
}

.header__nav.active {
  transform: translateY(0);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  transition-delay: calc(var(--item-index) * 0.1s);
}

.header__nav.active .header__nav-item {
  opacity: 1;
  transform: translateY(0);
}

.header__nav-link {
  font-family: var(--heading-font);
  font-size: var(--large-font-size);
  font-weight: 500;
  color: var(--text-color);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-normal);
}

.header__nav-link:hover,
.header__nav-link:focus {
  color: var(--accent-color);
}

.header__nav-link:hover::after,
.header__nav-link:focus::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-gray);
}

.hero__parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/img00.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: var(--space-lg);
  animation: fadeIn 1.5s ease-out;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__slogan {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-xl);
  font-family: var(--heading-font);
  font-style: italic;
  opacity: 0.9;
}

.hero__cta {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.hero__cta:hover,
.hero__cta:focus {
  background-color: darken(var(--button-color), 10%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== INTRO SECTION ===== */
.intro {
  padding: var(--space-xxxl) 0;
}

.intro__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.intro__text {
  font-size: var(--large-font-size);
  line-height: 1.7;
}

.intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro__img:hover {
  transform: scale(1.05);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: var(--space-xxxl) 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(244, 162, 97, 0.1), transparent 70%);
  pointer-events: none;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.benefits__item {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  z-index: 1;
  text-align: center;
}

.benefits__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefits__icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: var(--space-md);
}

.benefits__title {
  margin-bottom: var(--space-sm);
  color: var(--text-color);
}

.benefits__text {
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ===== SCHEDULE SECTION ===== */
.schedule {
  padding: var(--space-xxxl) 0;
  background-color: var(--bg-color);
}

.schedule__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.schedule__day {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule__day-title {
  background-color: var(--accent-color);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.schedule__list {
  padding: var(--space-lg);
}

.schedule__item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--mid-gray);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

.schedule__item:last-child {
  border-bottom: none;
}

.schedule__time {
  font-weight: 700;
  color: var(--text-color);
}

.schedule__class {
  color: var(--text-color);
}

.schedule__instructor {
  color: var(--dark-gray);
  font-size: var(--small-font-size);
}

.schedule__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xxl);
}

.schedule__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.schedule__img:hover {
  transform: scale(1.05);
}

/* ===== INSTRUCTORS SECTION ===== */
.instructors {
  padding: var(--space-xxxl) 0;
  background-color: var(--white);
}

.instructors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.instructors__card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.instructors__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.instructors__image {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}

.instructors__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instructors__card:hover .instructors__img {
  transform: scale(1.1);
}

.instructors__info {
  padding: var(--space-lg);
  text-align: center;
}

.instructors__name {
  margin-bottom: var(--space-xs);
  color: var(--text-color);
}

.instructors__speciality {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: var(--small-font-size);
}

.instructors__bio {
  color: var(--dark-gray);
  font-size: var(--small-font-size);
  line-height: 1.7;
}

/* ===== STORIES SECTION ===== */
.stories {
  padding: var(--space-xxxl) 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(244, 162, 97, 0.1), transparent 70%);
  pointer-events: none;
}

.stories__slider {
  position: relative;
  overflow: hidden;
}

.stories__slide {
  display: none;
}

.stories__slide.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.stories__content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.stories__quote {
  position: relative;
  padding: var(--space-md) var(--space-lg);
}

.stories__quote i {
  color: var(--accent-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.stories__quote i:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

.stories__quote i:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
}

.stories__text {
  font-size: var(--large-font-size);
  line-height: 1.7;
  margin: var(--space-lg) 0;
  color: var(--text-color);
  font-style: italic;
}

.stories__author {
  margin-top: var(--space-lg);
}

.stories__name {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: var(--space-xs);
}

.stories__info {
  color: var(--dark-gray);
  font-size: var(--small-font-size);
}

.stories__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-xl);
}

.stories__btn {
  background-color: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.stories__btn:hover,
.stories__btn:focus {
  color: var(--accent-color);
}

.stories__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: 0 var(--space-md);
}

.stories__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--mid-gray);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.stories__dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

.stories__dot:hover,
.stories__dot:focus {
  background-color: var(--accent-color);
}

/* ===== GUIDE SECTION ===== */
.guide {
  padding: var(--space-xxxl) 0;
  background-color: var(--white);
}

.guide__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.guide__subtitle {
  margin-bottom: var(--space-lg);
  color: var(--text-color);
  text-align: center;
}

.guide__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.guide__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.guide__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.guide__number {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.guide__info {
  flex: 1;
}

.guide__title {
  margin-bottom: var(--space-xs);
  color: var(--text-color);
}

.guide__description {
  color: var(--dark-gray);
  font-size: var(--small-font-size);
  line-height: 1.7;
}

.guide__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.guide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.guide__img:hover {
  transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--space-xxxl) 0;
  background-color: var(--bg-color);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(244, 162, 97, 0.1), transparent 70%);
  pointer-events: none;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact__detail i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-sm);
}

.contact__detail p {
  margin-bottom: 0;
}

.contact__image {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.contact__img:hover {
  transform: scale(1.05);
}

.contact__form-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.contact__label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text-color);
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--light-gray);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(244, 162, 97, 0.2);
  outline: none;
}

.contact__checkbox-container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact__checkbox {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--mid-gray);
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.contact__checkbox:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact__checkbox:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 12px;
}

.contact__checkbox-label {
  font-size: var(--small-font-size);
  color: var(--dark-gray);
}

.contact__link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.contact__link:hover,
.contact__link:focus {
  color: var(--button-color);
}

.contact__submit {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
  text-align: center;
  border: none;
  cursor: pointer;
}

.contact__submit:hover,
.contact__submit:focus {
  background-color: #d55a3d; /* Darker shade of button color */
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--bg-color);
  padding: var(--space-xxl) 0 var(--space-lg);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.footer__logo {
  height: 40px;
  width: auto;
}

.footer__slogan {
  font-family: var(--heading-font);
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 0;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__nav-link {
  color: var(--text-color);
  transition: color var(--transition-fast);
}

.footer__nav-link:hover,
.footer__nav-link:focus {
  color: var(--accent-color);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__copyright {
  font-size: var(--small-font-size);
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--button-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-normal), visibility var(--transition-normal), transform var(--transition-normal), background-color var(--transition-fast);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
  background-color: #d55a3d; /* Darker shade of button color */
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== SUCCESS PAGE ===== */
.success {
  padding: calc(var(--space-xxxl) * 2) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success__content {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.success__icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: var(--space-lg);
  animation: pulse 2s infinite;
}

.success__title {
  margin-bottom: var(--space-lg);
  color: var(--text-color);
}

.success__message {
  font-size: var(--large-font-size);
  margin-bottom: var(--space-md);
  color: var(--text-color);
}

.success__submessage {
  color: var(--dark-gray);
  margin-bottom: var(--space-xl);
}

.success__button {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.success__button:hover,
.success__button:focus {
  background-color: #d55a3d; /* Darker shade of button color */
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.success__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xxl);
}

.success__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== STANDARD PAGES ===== */
.page-content {
  padding: calc(var(--space-xxxl) * 2) 0;
}

.page-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--text-color);
  position: relative;
  padding-bottom: var(--space-md);
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: var(--radius-sm);
}

.page-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-intro {
  font-size: var(--large-font-size);
  margin-bottom: var(--space-xl);
  color: var(--text-color);
}

.page-subtitle {
  color: var(--text-color);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-heading {
  color: var(--text-color);
  font-size: var(--h4-font-size);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.page-list {
  list-style-type: disc;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.page-list li {
  margin-bottom: var(--space-sm);
}

.page-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.page-link:hover,
.page-link:focus {
  color: var(--button-color);
}

.page-buttons {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xxl);
}

.page-button {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.page-button:hover,
.page-button:focus {
  background-color: #d55a3d; /* Darker shade of button color */
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 576px) {
  :root {
    --h1-font-size: 3.5rem;
    --h2-font-size: 2.75rem;
    --container-padding: 2rem;
  }
  
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instructors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --base-font-size: 1.0625rem;
    --h1-font-size: 4rem;
    --h2-font-size: 3rem;
  }
  
  .header__nav-toggle {
    display: none;
  }
  
  .header__nav {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    background-color: transparent;
  }
  
  .header__nav-list {
    flex-direction: row;
    gap: var(--space-lg);
  }
  
  .header__nav-item {
    opacity: 1;
    transform: none;
  }
  
  .header__nav-link {
    font-size: var(--base-font-size);
  }
  
  .header__container {
    justify-content: space-between;
  }
  
  .intro__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .schedule__container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .schedule__item {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-md);
  }
  
  .guide__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .contact__container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 992px) {
  :root {
    --base-font-size: 1.125rem;
    --h1-font-size: 4.5rem;
    --h2-font-size: 3.25rem;
  }
  
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .instructors__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stories__text {
    font-size: calc(var(--large-font-size) * 1.2);
  }
}

@media (min-width: 1200px) {
  :root {
    --container-max-width: 1320px;
  }
}