* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #2c3e50;
  --secondary: #8b4513;
  --accent: #d4a574;
  --light: #faf8f5;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}
p {
  margin-bottom: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Nunito", sans-serif;
}
.btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    transform 0.4s ease,
    background 0.3s ease;
}
header.hidden {
  transform: translateY(-100%);
}
header.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.logo span {
  color: var(--secondary);
}
nav {
  display: block;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 5px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: var(--white);
  padding: 70px 25px 25px;
  transition: 0.4s ease;
  z-index: 999;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid #eee;
}
.mobile-nav a:hover {
  color: var(--secondary);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
section {
  padding: 50px 0;
}
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light) 0%, #ede8e3 100%);
  padding-top: 80px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.hero-text p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--secondary);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
}
.hero-badge .number {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
.hero-badge .label {
  font-size: 11px;
}
.section-header {
  text-align: center;
  margin-bottom: 35px;
}
.section-header h2 {
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  font-size: 13px;
}
.features {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.feature-card {
  padding: 25px 20px;
  border-radius: 8px;
  background: var(--light);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-card i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 15px;
}
.feature-card h3 {
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 12px;
  color: var(--text-light);
}
.about-preview {
  background: linear-gradient(to right, var(--light) 50%, var(--white) 50%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image img {
  border-radius: 8px;
}
.about-text h2 {
  margin-bottom: 15px;
}
.about-text p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
}
.about-list {
  margin-bottom: 20px;
}
.about-list li {
  padding: 6px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-list li i {
  color: var(--secondary);
}
.programs {
  background: var(--white);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.program-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--light);
  transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.program-info {
  padding: 20px;
}
.program-info h3 {
  margin-bottom: 8px;
}
.program-info p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.program-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
}
.program-price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
}
.testimonials {
  background: var(--light);
}
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}
.testimonial-card p {
  font-style: italic;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}
.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
}
.cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 40px 0;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 13px;
}
.cta .btn {
  background: var(--accent);
  color: var(--dark);
}
.cta .btn:hover {
  background: var(--white);
}
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0 15px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 12px;
  max-width: 250px;
}
.footer-links h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 13px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  font-size: 12px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-contact p {
  font-size: 12px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
}
.footer-bottom p {
  font-size: 11px;
}
.policy-links {
  display: flex;
  gap: 15px;
}
.policy-links a {
  font-size: 11px;
  transition: var(--transition);
}
.policy-links a:hover {
  color: var(--accent);
}
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
  color: var(--white);
  padding: 100px 0 50px;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  margin-top: 15px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  color: var(--accent);
}
.content-section {
  padding: 50px 0;
}
.content-section h2 {
  margin-bottom: 20px;
}
.content-section h3 {
  margin: 25px 0 12px;
}
.content-section p {
  font-size: 13px;
  color: var(--text-light);
}
.content-section ul {
  margin: 15px 0;
  padding-left: 20px;
}
.content-section li {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}
.content-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--secondary);
  border-radius: 50%;
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-hero img {
  border-radius: 8px;
}
.team-section {
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
}
.value-card i {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.value-card h3 {
  margin-bottom: 8px;
}
.value-card p {
  font-size: 12px;
  color: var(--text-light);
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-family: "Nunito", sans-serif;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checkbox-group input {
  width: auto;
  margin-top: 3px;
}
.checkbox-group label {
  font-size: 11px;
  color: var(--text-light);
}
.contact-info {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
}
.contact-info h3 {
  color: var(--white);
  margin-bottom: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.info-item i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 2px;
}
.info-item h4 {
  color: var(--white);
  font-size: 13px;
  margin-bottom: 3px;
}
.info-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eee;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.product-details {
  padding: 20px;
}
.product-details h3 {
  margin-bottom: 8px;
}
.product-details p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}
.error-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 50px;
}
.error-content h1 {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.error-content h2 {
  margin-bottom: 15px;
}
.error-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 13px;
}
.thankyou-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 50px;
  background: linear-gradient(135deg, var(--light) 0%, #ede8e3 100%);
}
.thankyou-content {
  max-width: 500px;
}
.thankyou-content i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.thankyou-content h1 {
  margin-bottom: 15px;
}
.thankyou-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 14px;
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  margin: 30px 0 15px;
  font-size: 1.3rem;
}
.policy-content h3 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
}
.policy-content p {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-light);
}
.policy-content ul {
  margin: 15px 0 20px;
}
.last-updated {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px;
  z-index: 2000;
  transform: translateY(100%);
  transition: 0.4s ease;
}
.cookie-popup.active {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-content p {
  font-size: 12px;
  margin: 0;
}
.cookie-content a {
  color: var(--accent);
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons button {
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-family: "Nunito", sans-serif;
}
.cookie-accept {
  background: var(--accent);
  color: var(--dark);
}
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: var(--white);
}
.workshop-benefits {
  background: var(--white);
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.benefit-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: var(--light);
  border-radius: 6px;
}
.benefit-item i {
  color: var(--secondary);
  font-size: 1.2rem;
}
.benefit-item p {
  font-size: 13px;
  margin: 0;
}
.schedule-section {
  background: var(--light);
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.schedule-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--secondary);
}
.schedule-card h4 {
  color: var(--secondary);
  margin-bottom: 5px;
}
.schedule-card p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}
.faq-section {
  background: var(--white);
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.faq-item h4 {
  margin-bottom: 8px;
  font-size: 14px;
}
.faq-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}
@media (max-width: 992px) {
  .hero-content,
  .about-grid,
  .about-hero,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .features-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programs-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 50px;
  }
  .features-grid,
  .values-grid,
  .programs-grid,
  .products-grid,
  .benefits-list,
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 35px 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .policy-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  .container {
    padding: 0 12px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }
  .hero-badge {
    padding: 12px 15px;
    bottom: -10px;
    right: -10px;
  }
  .hero-badge .number {
    font-size: 1.4rem;
  }
  .contact-form,
  .contact-info {
    padding: 20px;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
  }
  .cookie-buttons button {
    flex: 1;
  }
}
@media (max-width: 320px) {
  body {
    font-size: 12px;
  }
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .header-inner {
    padding: 10px 0;
  }
  section {
    padding: 25px 0;
  }
  .feature-card,
  .value-card {
    padding: 18px 15px;
  }
  .error-content h1 {
    font-size: 3.5rem;
  }
}
