/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F8F6F0;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F6F0;
  color: #3B2C50;
  line-height: 1.65;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
button, input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  outline: none;
  border: none;
}
a {
  color: #6F4A8E;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: #2E1448;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, .section h1 {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #6F4A8E;
  margin-bottom: 18px;
  font-weight: 700;
}
h2, .section h2 {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 2rem;
  color: #6F4A8E;
  margin-bottom: 14px;
  font-weight: 700;
}
h3 {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 1.25rem;
  color: #3B2C50;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 1.12rem;
  color: #6F4A8E;
  margin-bottom: 8px;
}
p, address {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #3B2C50;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
blockquote {
  padding: 14px 28px;
  background: #fff7fa;
  color: #6F4A8E;
  border-left: 5px solid #6F4A8E;
  border-radius: 16px;
  margin-bottom: 24px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
}

/* SPACING & CONTAINERS */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0 6px 30px rgba(111,74,142,0.07);
}

/* LAYOUTS - FLEX ONLY */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  background: #FFF6FB;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(111,74,142,0.06);
  padding: 28px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 12px 32px rgba(111,74,142,0.16);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FEFAF6;
  border-radius: 26px;
  box-shadow: 0 2px 18px 0 rgba(111,74,142,0.10);
  color: #3B2C50;
}
.testimonial-card p{
  color: #3B2C50;
  font-size: 1.08rem;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
}
.testimonial-card span {
  color: #6F4A8E;
  font-size: 0.96rem;
  margin-top: -6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero, .hero.section {
  background: linear-gradient(120deg, #F8F6F0 85%, #FFF3EA 100%);
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-radius: 30px 30px 22px 22px;
  box-shadow: 0 8px 32px 0 rgba(111,74,142,0.04);
}
.hero h1 {
  font-size: 2.6rem;
  color: #6F4A8E;
}
.hero p {
  font-size: 1.18rem;
  color: #3B2C50;
}

/* NAVIGATION */
header {
  background: #fff;
  padding: 0;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(111,74,142,0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
}
.main-nav a {
  color: #6F4A8E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  padding: 7px 19px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.cta {
  background: #6F4A8E;
  color: #fff;
  font-weight: 600;
  margin-left: 16px;
  box-shadow: 0 2px 14px rgba(111,74,142,0.12);
}
.main-nav a.cta:hover {
  background: #3B2C50;
  color: #fff;
}
.main-nav a:hover {
  background: #efe5f7;
  color: #3B2C50;
}
.main-nav img {
  height: 42px;
  margin-right: 16px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 102;
  background: #6F4A8E;
  color: #fff;
  font-size: 2.2rem;
  padding: 6px 13px;
  border-radius: 10px;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #3B2C50;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F6F0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 10px 22px 18px rgba(111,74,142,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: #6F4A8E;
  color: #fff;
  font-size: 2.1rem;
  padding: 6px 13px;
  border: none;
  border-radius: 10px;
  z-index: 305;
  transition: background 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #3B2C50;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 90px 0 0 0;
}
.mobile-nav a {
  display: block;
  color: #6F4A8E;
  font-size: 1.25rem;
  padding: 13px 0;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #EFE5F7;
  color: #3B2C50;
}

/* FOOTER */
footer {
  margin-top: 60px;
  padding: 38px 0 16px 0;
  background: #f3ecfa;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 32px 0 rgba(111,74,142,0.05);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #6F4A8E;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover {
  background: #EFE5F7;
  color: #3B2C50;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.95rem;
  color: #6F4A8E;
}
.footer-brand img {
  height: 33px;
  margin-right: 5px;
}

/* BUTTONS, CALLS TO ACTION */
.cta, button, .cookie-btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  background: #6F4A8E;
  color: #fff;
  border-radius: 16px;
  padding: 12px 32px;
  border: none;
  box-shadow: 0 2px 14px rgba(111,74,142,0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  margin: 10px 0;
  outline: none;
}
.cta:hover, .cta:focus, button:hover, button:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #3B2C50;
  box-shadow: 0 8px 22px 0 rgba(111,74,142,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* FEATURES LISTS */
#features ul, #services ul, #products ul, .instructors ul, #highlights ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
}
#features ul li, #services ul li, #products ul li, .instructors ul li, #highlights ul li, .section ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f6efff;
  padding: 12px 18px;
  border-radius: 18px;
  color: #3B2C50;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px rgba(111,74,142,0.07);
  transition: background 0.15s;
}
#features ul li img, #services ul li img, #highlights ul li img {
  height: 28px;
  min-width: 28px;
}

/* LEGAL SECTIONS */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  color: #3B2C50;
  box-shadow: 0 2px 18px 0 rgba(111,74,142,0.06);
}

/* TOUR & WORKSHOP LISTS */
.tour-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  flex-direction: column;
}
.tour-list > div, .workshop-list > div {
  background: #FFF7FA;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(111,74,142,0.08);
  padding: 20px 16px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.tour-list > div:hover, .workshop-list > div:hover {
  box-shadow: 0 10px 30px rgba(111,74,142,0.13);
  transform: translateY(-2px) scale(1.018);
}

/* ADDRESS & CONTACT BLOCKS */
address {
  background: #f8f6fc;
  color: #6F4A8E;
  font-style: normal;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(111,74,142,0.05);
}
#contact-info p, #contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
#contact-info img, #contact img {
  height: 20px;
  width: 20px;
  margin-right: 6px;
}

/* INSTRUCTORS */
.instructors {
  background: #F8F6F0;
  border-radius: 18px;
  padding: 18px 16px 6px 16px;
  color: #3B2C50;
  box-shadow: 0 0.5px 5px rgba(111,74,142,0.04);
  margin-bottom: 12px;
}

/* FAQ */
#faq > .container > .content-wrapper > div:not(:last-child) {
  margin-bottom: 24px;
}
#faq h3 {
  color: #6F4A8E;
  margin-bottom: 6px;
  font-size: 1.13rem;
}
#faq p {
  color: #3B2C50;
}

/* Animations */
button, .cta, .cookie-btn, .card, .tour-list > div, .testimonial-card, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.16s;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff9ed;
  border-top: 2px solid #E0CCD3;
  box-shadow: 0 -2px 24px 0 rgba(111,74,142,0.10);
  padding: 22px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 501;
  align-items: center;
  animation: cookieDrop .39s cubic-bezier(.6,0,.4,1) 1;
}
@keyframes cookieDrop {
  from { transform: translateY(48px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #3B2C50;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 4px;
}
.cookie-btn {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 13px;
  margin: 0;
  background: #6F4A8E;
  color: #fff;
}
.cookie-btn.reject {
  background: #f3ecfa;
  color: #6F4A8E;
  border: 1.5px solid #6F4A8E;
}
.cookie-btn.reject:hover {
  background: #e7daef;
  color: #3B2C50;
}
.cookie-btn.settings {
  background: #EFE5F7;
  color: #6F4A8E;
}
.cookie-btn.settings:hover {
  background: #d3bfdc;
  color: #3B2C50;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(111,74,142,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff9ed;
  box-shadow: 0 8px 80px 0 rgba(111,74,142,0.13);
  border-radius: 24px;
  padding: 42px 24px 28px 24px;
  max-width: 420px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: fadeInModal 0.21s cubic-bezier(.6,0,.4,1) 1;
}
@keyframes fadeInModal {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  color: #6F4A8E;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #3B2C50;
  font-weight: 500;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #6F4A8E;
  width: 20px;
  height: 20px;
}
.cookie-modal-footer {
  display: flex;
  gap: 18px;
  margin-top: 7px;
  width: 100%;
  justify-content: flex-end;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  font-size: 0.98rem;
}
th {
  background: #f6efff;
  color: #6F4A8E;
}

/* MEDIA QUERIES - MOBILE OPTIMIZATION */
@media (max-width: 1150px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  .hero h1 { font-size: 2.2rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-grid,
  .text-image-section,
  .tour-list,
  .workshop-list,
  .card-container {
    flex-direction: column !important;
  }
  .footer-brand {
    flex-direction: column;
    gap: 7px;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
  .hero {
    padding-top: 26px;
    padding-bottom: 24px;
  }
  .testimonial-card {
    padding: 14px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
  .hero h1 { font-size: 1.25rem; }
  .hero p { font-size: 1rem; }
  .footer-brand img { height: 26px; }
  .footer-nav { gap: 8px; }
  .section { padding: 12px 1vw; }
  .cookie-modal-content {padding:18px 5vw;}
}

/* MICRO-INTERACTIONS & EFFECTS */
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 4px 1px #EFE5F7;
  border: 1.5px solid #6F4A8E;
}
.card:active, .tour-list > div:active {
  box-shadow: 0 2px 15px rgba(111,74,142,0.21);
  transform: scale(0.99);
}
button:active, .cta:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2.5px solid #6F4A8E;
  outline-offset: 2px;
}

/* UTILITY CLASSES */
.d-none { display: none !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* Z-INDEX Controls & OVERLAYS */
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 900;
}


/*-- END OF STYLE.CSS --*/
