/* HarmonyMat Stylesheet
-------------------------------------------------- */

/* CSS Variables */
:root {
  /* Color Palette */
  --harmonymat-white: #ffffff;
  --harmonymat-sage: #CCD6A6;
  --harmonymat-sage-light: #DAE2B6;
  --harmonymat-mint: #DFE8CC;
  --harmonymat-cream: #F7EDDB;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 4rem;

  /* Other Variables */
  --transition-speed: 0.3s;
  --border-radius: 6px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Base Styles
-------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: var(--harmonymat-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-xl);
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

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

a {
  color: #333;
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--harmonymat-sage);
}

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

ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

/* Layout
-------------------------------------------------- */
.harmonymat-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  box-sizing: border-box;
}

.harmonymat-section-intro {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
  font-size: 1.1rem;
}

section {
  padding: var(--space-xxxl) 0;
}

/* Buttons
-------------------------------------------------- */
.harmonymat-btn {
  display: inline-block;
  background-color: var(--harmonymat-sage);
  color: #333;
  font-weight: 500;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-align: center;
  text-decoration: none;
}

.harmonymat-btn:hover {
  background-color: var(--harmonymat-sage-light);
  color: #333;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Header & Navigation
-------------------------------------------------- */
.harmonymat-header {
  padding: var(--space-sm) 0;
  background-color: var(--harmonymat-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.harmonymat-logo a {
  display: block;
}

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

.harmonymat-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.harmonymat-menu li {
  margin-left: var(--space-xl);
}

.harmonymat-menu a {
  font-weight: 500;
  position: relative;
}

.harmonymat-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--harmonymat-sage);
  transition: width var(--transition-speed) ease;
}

.harmonymat-menu a:hover::after {
  width: 100%;
}

.harmonymat-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.harmonymat-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  transition: transform var(--transition-speed) ease;
}

/* Hero Section
-------------------------------------------------- */
.harmonymat-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://cdn.leonardo.ai/users/4a2f4e3f-8c7c-42b5-b94d-9cb6b5179b85/generations/f8f7df8d-16dc-43f4-8bfb-8ab3c9ed7de1/DreamShaper_v7_A_beautiful_yoga_studio_with_wooden_floors_natu_0.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 0px;
  text-align: center;
}

.harmonymat-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.harmonymat-hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
}

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

.harmonymat-about-content {
  display: flex;
  gap: var(--space-xxl);
  align-items: center;
}

.harmonymat-about-image {
  flex: 1;
}

.harmonymat-about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.harmonymat-about-text {
  flex: 1;
}

.harmonymat-values {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.harmonymat-value {
  flex: 1;
  min-width: 220px;
}

.harmonymat-value-icon {
  margin-bottom: var(--space-sm);
}

/* Classes Section
-------------------------------------------------- */
.harmonymat-classes {
  background-color: var(--harmonymat-white);
}

.harmonymat-class-tabs {
  margin-top: var(--space-xl);
}

.harmonymat-tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.harmonymat-tab-btn {
  background-color: var(--harmonymat-cream);
  border: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.harmonymat-tab-btn svg {
  transition: transform var(--transition-speed) ease;
}

.harmonymat-tab-btn:hover {
  background-color: var(--harmonymat-mint);
}

.harmonymat-tab-btn:hover svg {
  transform: scale(1.1);
}

.harmonymat-tab-btn.active {
  background-color: var(--harmonymat-sage-light);
}

.harmonymat-tab-content {
  display: none;
}

.harmonymat-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.harmonymat-class-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
}

.harmonymat-class-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--harmonymat-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.harmonymat-class-schedule {
  color: #666;
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* Products Section
-------------------------------------------------- */
.harmonymat-products {
  background-color: var(--harmonymat-mint);
}

.harmonymat-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  margin-bottom: var(--space-xxl);
}

.harmonymat-product {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: var(--harmonymat-white);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform var(--transition-speed) ease;
}

.harmonymat-product:hover {
  transform: translateY(-5px);
}

.harmonymat-product-image {
  margin-bottom: var(--space-md);
  overflow: hidden;
  border-radius: var(--border-radius);
}

.harmonymat-product-image img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.harmonymat-product:hover .harmonymat-product-image img {
  transform: scale(1.05);
}

.harmonymat-product-desc {
  margin-bottom: var(--space-lg);
  min-height: 80px;
}

.harmonymat-product-price {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--harmonymat-sage);
  margin-bottom: var(--space-md);
}

.harmonymat-subscription {
  background-color: var(--harmonymat-white);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  box-shadow: var(--box-shadow);
}

.harmonymat-subscription h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.harmonymat-subscription-plans {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
}

.harmonymat-plan {
  flex: 1;
  min-width: 250px;
  padding: var(--space-lg);
  background-color: var(--harmonymat-cream);
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.harmonymat-plan-price {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--harmonymat-sage);
  margin: var(--space-md) 0;
}

.harmonymat-plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.harmonymat-plan-features li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.harmonymat-plan-features li:last-child {
  border-bottom: none;
}

/* Instructors Section
-------------------------------------------------- */
.harmonymat-instructors {
  background-color: var(--harmonymat-white);
}

.harmonymat-instructor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
}

.harmonymat-instructor {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
}

.harmonymat-instructor-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  box-shadow: var(--box-shadow);
}

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

.harmonymat-instructor:hover .harmonymat-instructor-image img {
  transform: scale(1.1);
}

.harmonymat-instructor-specialty {
  color: var(--harmonymat-sage);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

/* Gallery Section
-------------------------------------------------- */
.harmonymat-gallery {
  background-color: var(--harmonymat-cream);
}

.harmonymat-gallery-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.harmonymat-gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.harmonymat-gallery-slide {
  min-width: 100%;
  padding: 0 var(--space-md);
}

.harmonymat-gallery-slide img {
  width: 100%;
  height: 500px;
  border-radius: var(--border-radius);
  object-fit: cover;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.harmonymat-gallery-prev,
.harmonymat-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  z-index: 2;
}

.harmonymat-gallery-prev {
  left: 10px;
}

.harmonymat-gallery-next {
  right: 10px;
}

.harmonymat-gallery-prev:hover,
.harmonymat-gallery-next:hover {
  background-color: rgba(255,255,255,1);
  transform: translateY(-50%) scale(1.1);
}

.harmonymat-gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
  gap: var(--space-sm);
}

.harmonymat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--harmonymat-mint);
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.harmonymat-dot.active {
  background-color: var(--harmonymat-sage);
  transform: scale(1.2);
}

.harmonymat-gallery-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.harmonymat-preview-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.harmonymat-preview-container img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--border-radius);
}

.harmonymat-preview-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Contact Section
-------------------------------------------------- */
.harmonymat-contact {
  background-color: var(--harmonymat-white);
}

.harmonymat-contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxl);
}

.harmonymat-contact-info {
  flex: 1;
  min-width: 280px;
}

.harmonymat-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.harmonymat-info-icon {
  margin-right: var(--space-md);
  background-color: var(--harmonymat-sage-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.harmonymat-contact-form {
  flex: 2;
  min-width: 280px;
}

.harmonymat-form-group {
  margin-bottom: var(--space-lg);
}

.harmonymat-form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.harmonymat-form-group input,
.harmonymat-form-group select,
.harmonymat-form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

.harmonymat-form-group textarea {
  resize: vertical;
}

.harmonymat-checkbox {
  display: flex;
  align-items: center;
}

.harmonymat-checkbox input {
  margin-right: var(--space-sm);
  width: auto;
}

.harmonymat-checkbox label {
  margin-bottom: 0;
  font-weight: 300;
}

/* Footer
-------------------------------------------------- */
.harmonymat-footer {
  background-color: #333;
  color: var(--harmonymat-cream);
  padding: var(--space-xxl) 0 var(--space-md);
}

.harmonymat-footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.harmonymat-footer-logo {
  flex: 1;
  min-width: 280px;
}

.harmonymat-footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.harmonymat-footer-column {
  flex: 1;
  min-width: 160px;
}

.harmonymat-footer-column h3 {
  color: var(--harmonymat-cream);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.harmonymat-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.harmonymat-footer-column li {
  margin-bottom: var(--space-sm);
}

.harmonymat-footer-column a {
  color: var(--harmonymat-cream);
  transition: color var(--transition-speed) ease;
}

.harmonymat-footer-column a:hover {
  color: var(--harmonymat-sage-light);
}

.harmonymat-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  text-align: center;
}

/* Animations
-------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Styles
-------------------------------------------------- */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .harmonymat-about-content {
    flex-direction: column;
  }

  .harmonymat-about-image,
  .harmonymat-about-text {
    width: 100%;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  p, li {
    font-size: 1.1rem;
  }

  .harmonymat-btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 1.1rem;
  }

  .harmonymat-menu-toggle {
    display: block;
  }

  .harmonymat-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background-color: var(--harmonymat-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-lg);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right var(--transition-speed) ease;
    overflow-y: auto;
  }

  .harmonymat-menu.active {
    right: 0;
  }

  .harmonymat-menu li {
    margin: var(--space-md) 0;
    width: 100%;
  }

  .harmonymat-menu a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.2rem;
  }

  .harmonymat-tab-buttons {
    flex-direction: column;
    align-items: center;
  }

  .harmonymat-tab-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .harmonymat-class-items,
  .harmonymat-product-grid,
  .harmonymat-instructor-grid {
    gap: var(--space-xxl);
  }

  .harmonymat-class-item,
  .harmonymat-product,
  .harmonymat-instructor {
    max-width: 100%;
  }

  .harmonymat-gallery-slide img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-xxl) 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .harmonymat-hero {
    height: auto;
    min-height: 80vh;
  }

  .harmonymat-values {
    flex-direction: column;
  }

  .harmonymat-subscription-plans {
    flex-direction: column;
    align-items: center;
  }

  .harmonymat-plan {
    width: 100%;
    margin-bottom: var(--space-lg);
    box-sizing: border-box;
  }

  .harmonymat-gallery-slide img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .harmonymat-gallery-slide img {
    height: 250px;
  }

  .harmonymat-preview-close {
    top: -30px;
    right: 0;
  }
}

@media (max-width: 360px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .harmonymat-container {
    padding: 0 var(--space-md);
  }
  .harmonymat-subscription {
    padding: var(--space-sm);
}
}


a.logo-text {
  font-size: 24px;
  color: #8c9e3e;
}
