/* ===== Sleek Niche Art CSS =====
   Professional Corporate - Blue/Gray - Montserrat & Roboto
   Responsive, NO CSS Grid, Flex-only layouts
   Includes: mobile nav, cookie banner, all interactive elements
*/

/* ------- CSS RESET & NORMALIZATION ------- */
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; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; font: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

/* ------- BASE TYPOGRAPHY ------- */
:root {
  --primary: #24344D;
  --secondary: #f1f5f8;
  --accent: #E4572E;
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
  --gray-700: #30425c;
  --gray-100: #f6f8fa;
  --white: #fff;
  --shadow: 0 2px 16px rgba(36,52,77, 0.07);
  --radius: 10px;
  --transition: 0.25s cubic-bezier(.6,.05,.36,1);
  --border: 1px solid #e3e6ea;
}
body {
  font-family: var(--body-font);
  font-size: 16px;
  color: var(--primary);
  background: var(--secondary);
  letter-spacing: 0.01em;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem;  margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p {
  margin-bottom: 16px; font-size: 1rem;
}
strong { font-weight: 700; }
em, i { font-style: italic; }
small { font-size: 90%; color: var(--gray-700); }

@media (max-width: 500px){
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }
}

/* ------- GENERIC CONTAINER STRUCTURES ------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ------- LAYOUT: Spacing & ALIGNMENT ------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
section:last-child { margin-bottom: 0; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.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: 20px;
  padding: 24px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  margin-bottom: 20px;
  max-width: 520px;
  min-width: 240px;
  color: var(--primary);
}
.testimonial-card .stars {
  color: #FCB900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-top: -6px;
  font-family: var(--heading-font);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
}

/* Cards, features, testimonials always at least 20px gap/margin between. */

/* ------- BUTTONS & CTA's ------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.08rem;
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(36,52,77,0.06);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  margin-top: 16px;
  letter-spacing: 0.04em;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(36,52,77,0.12);
}

/* Generic button style for forms, controls */
button, .button {
  font-family: var(--heading-font);
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
button:hover, .button:hover,
button:focus, .button:focus {
  background: var(--accent);
  color: var(--white);
  outline: none;
}

/* ------- NAVIGATION ------- */
header {
  background: var(--primary);
  position: relative;
  box-shadow: 0 1px 4px rgba(36,52,77,0.06);
  z-index: 20;
}
nav.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 24px;
  height: 68px;
  background: var(--primary);
}
nav.desktop-nav a {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
nav.desktop-nav a:hover, nav.desktop-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
nav.desktop-nav img {
  height: 38px; width: auto; margin-right: 30px;
}

/* ------- MOBILE NAVIGATION ------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--white);
  font-size: 2rem;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 200;
  transition: background var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 2px 10px #c0350040;
}
@media (max-width: 1000px) {
  nav.desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--primary);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.7,0,.5,1);
  display: flex; flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 3px 18px rgba(36,52,77,0.18);
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  font-size: 2.2rem;
  margin-left: 24px;
  margin-bottom: 24px;
  align-self: flex-start;
  border: none;
  outline: none;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--white);
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 16px;
  padding: 0 36px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 0;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: var(--gray-100);
}

@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ------- HERO / INTRO SECTIONS ------- */
.hero, .workshop-hero, .gallery-hero, .course-hero, .coaching-hero, .contact-hero, .thank-you-hero {
  background: var(--primary);
  color: var(--white);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.hero .text-section,
.workshop-hero .text-section, .gallery-hero .text-section, .course-hero .text-section, .coaching-hero .text-section, .contact-hero .text-section,
.thank-you-hero .text-section {
  color: var(--white);
}
.hero h1, .hero h2, .workshop-hero h1, .workshop-hero h2, .gallery-hero h1, .course-hero h1, .coaching-hero h1, .contact-hero h1, .thank-you-hero h1,
.hero h2, .workshop-hero h2, .gallery-hero h2, .course-hero h2, .coaching-hero h2, .contact-hero h2, .thank-you-hero h2 {
  color: var(--white);
}

@media (max-width: 768px) {
  .hero, .workshop-hero, .gallery-hero, .course-hero, .coaching-hero, .contact-hero, .thank-you-hero{ min-height: 200px; padding: 20px 8px; }
}


/* ------- FEATURES / LISTS / SERVICES ------- */
.features ul, .services ul, .gallery-features ul, .gallery-services ul, .get-in-touch ul, .find-us ul, .about-intro ul, .approach-features ul, .team-spotlight ul,
.course-details ul, .course-features ul, .coaching-options ul, .coaching-features ul, .workshop-details ul, .workshop-faq ul {
  display: flex;
  flex-direction: column;
  gap: 16px; /* 20px+ between list items */
}
.features li,
.services li, .gallery-features li, .gallery-services li, .get-in-touch li, .find-us li, .about-intro li, .approach-features li,
.team-spotlight li, .course-details li, .course-features li, .coaching-options li, .coaching-features li, .workshop-details li, .workshop-faq li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--primary);
  background: none;
  padding: 0;
}
.features li img, .services li img, .get-in-touch li img, .find-us li img {
  width: 24px; height: 24px; flex-shrink: 0;
  margin-right: 8px;
}

.price {
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

/* ------- FOOTER ------- */
footer {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 -1px 8px rgba(36,52,77,0.05);
  padding: 36px 0 14px 0;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-brand img {
  width: 60px;
  height: auto;
  margin-bottom: 8px;
}
.footer-menu {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-menu a {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1rem;
  opacity: 0.85;
  transition: color var(--transition), opacity var(--transition);
}
.footer-menu a:hover, .footer-menu a:focus { color: var(--accent); opacity: 1; }
.contact-info ul {
  display: flex; flex-direction: column; gap: 9px; }
.contact-info li {
  display: flex; align-items: center; gap: 10px; font-size: 1rem; opacity: 0.96;
}
.contact-info img {
  width: 19px; height: 19px; }
.social-links {
  display: flex; flex-direction: row; gap: 16px; }
.social-links a img {
  width: 30px; height: 30px; opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}
.social-links a:hover img, .social-links a:focus img { opacity: 1; transform: scale(1.14); }

@media (max-width: 900px){
  footer .content-wrapper { gap: 20px; flex-wrap: wrap; flex-direction: column; align-items: flex-start; }
  .footer-brand img { margin-bottom: 4px; }
}


/* ------- SECTION VARIANTS ------- */
.cta-call, .cta-explore {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 0;
}
.cta-call .cta-button, .cta-explore .cta-button {
  background: var(--accent);
  color: var(--white);
}
.cta-call .cta-button:hover, .cta-explore .cta-button:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ------- STAFF/TEAM QUOTES ------- */
.staff-quotes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--gray-100);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: var(--radius);
  color: var(--primary);
  font-style: italic;
  font-size: 1.1rem;
}

/* ------- TESTIMONIALS ------- */
.testimonials, .workshop-testimonials, .gallery-testimonials, .course-testimonials, .coaching-testimonials {
  background: var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.testimonials .content-wrapper, .workshop-testimonials .content-wrapper, .gallery-testimonials .content-wrapper, .course-testimonials .content-wrapper, .coaching-testimonials .content-wrapper {
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
.testimonial-card:last-child { margin-bottom: 0; }

/* ----- Responsive Cards ----- */
@media (max-width: 768px) {
  .card-container, .content-grid { flex-direction: column !important; }
  .testimonial-card { min-width: 0; width: 100%; }
}

/* ------- RESPONSIVE LAYOUT ------- */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  section { padding: 36px 8px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  section { padding: 28px 4px; margin-bottom: 36px; }
}
@media (max-width: 700px) {
  .container { padding: 0 5px; }
  section { padding: 16px 2px; margin-bottom: 32px; }
  .content-wrapper { gap: 16px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* ------- MICRO-INTERACTIONS / ANIMATIONS ------- */
section:hover, .card:hover,
section:focus-within, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(36,52,77,0.11);
  transition: box-shadow var(--transition);
}

a[href]:not(.cta-button):hover, a[href]:not(.cta-button):focus {
  color: var(--accent);
  text-decoration: underline;
  outline: none;
}

/* ------- COOKIE CONSENT BANNER ------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 -2px 26px rgba(36,52,77,0.13);
  z-index: 9999;
  display: flex; flex-direction: row;
  align-items: center; justify-content: space-between;
  padding: 16px 32px;
  gap: 24px;
  border-top: 1.5px solid #e3e6ea;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.6,.05,.36,1), opacity 0.3s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-message {
  color: var(--primary);
  font-size: 1rem;
  flex: 1 1 0%;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-actions .cookie-btn {
  padding: 8px 20px;
  font-size: 1rem;
  font-family: var(--heading-font);
  border-radius: 22px;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  margin-left: 0;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.cookie-actions .cookie-btn.reject {
  background: #D1DBE4;
  color: var(--primary);
}
.cookie-actions .cookie-btn.settings {
  background: var(--accent);
  color: var(--white);
}
.cookie-actions .cookie-btn:hover, .cookie-actions .cookie-btn:focus {
  background: var(--accent);
  color: var(--white);
}
.cookie-actions .cookie-btn.reject:hover, .cookie-actions .cookie-btn.reject:focus {
  background: #9facb6;
  color: var(--white);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch; gap: 10px;
    padding: 10px 8px;
    font-size: 0.98rem;
  }
  .cookie-actions { justify-content: flex-end; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,52,77,0.47);
  z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInModal 0.23s;
}
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(36,52,77,0.23);
  padding: 32px 26px;
  max-width: 420px;
  width: 92vw;
  display: flex; flex-direction: column; gap: 16px;
  animation: popupIn 0.22s cubic-bezier(.6,.05,.36,1);
}
@keyframes popupIn { from { transform: scale(0.95); opacity:0; } to { transform: scale(1); opacity:1; } }
.cookie-modal h3 {
  font-family: var(--heading-font); color: var(--primary); font-size: 1.2rem; margin-bottom: 10px;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  font-size: 1rem;
  padding: 8px 0;
}
.cookie-category label {
  flex: 1;
  font-weight: 500;
}
.cookie-switch {
  accent-color: var(--accent);
  width: 28px; height: 18px;
  margin-left: 8px;
}
.cookie-category.essential label {
  color: var(--gray-700);
  font-style: italic;
}
.cookie-modal-actions {
  display: flex; gap: 12px; justify-content: flex-end; margin-top: 10px;
}
.cookie-modal-actions .cookie-btn { min-width: 110px; }

/* ------- FORM ELEMENTS (future-proof for contact forms) ------- */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  font-family: var(--body-font);
  border: var(--border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 1rem;
  margin: 7px 0 18px 0;
  width: 100%;
  background: var(--secondary);
  color: var(--primary);
  outline: none;
  transition: border-color 0.21s;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); }
label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--primary); font-family: var(--heading-font); }

/* ------- MISCELLANEOUS ------- */
blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 18px 0;
  color: var(--gray-700);
  font-style: italic;
}

@media (max-width: 700px){
  h1, h2, h3 { text-align: left; }
  .text-section, .content-wrapper { align-items: flex-start; }
}

/* Support custom classes for future expansion (cards, feature items, etc.) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Tables in policy pages */
table { border-collapse: collapse; width: 100%; margin: 18px 0 32px 0; }
th, td { border: var(--border); padding: 10px; text-align: left; }
th { background: var(--gray-100); font-family: var(--heading-font); }

/* ------- PRINT -------- */
@media print { 
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .container, .content-wrapper { box-shadow: none !important; background: #fff !important; }
}


/* ===== END Sleek Niche Art CSS ===== */
