/* style.css */
:root{
  --accent:#ca9b52;
  --text:#464646;
  --title:#030303;
  --muted:#a1a1a1;
  --border:#e8e8e8;
  --surface:#ffffff;
  --surface-2:#f9f9f9;
  --footer:#000000;
  --button:#333333;
  --button-text:#ffffff;
  --hero-overlay:rgba(255,255,255,0.08);
  --shadow:0 1px 5px rgba(0,0,0,0.1);
  --bg-image:url("https://ayasophiatraining.com/wp-content/uploads/2026/01/abstract-bokeh-texture-background-with-orange-circ-2025-03-17-14-27-43-utc-scaled.jpg");
  --hero-image:url("https://ayasophiatraining.com/wp-content/uploads/2026/01/cropped-abstract-bokeh-texture-background-with-orange-circ-2025-03-17-14-27-43-utc-scaled-1.jpg");
}

body.dark-mode{
  --text:#dddddd;
  --title:#ffffff;
  --muted:#b8b8b8;
  --border:#2b2b2b;
  --surface:#111111;
  --surface-2:#171717;
  --footer:#000000;
  --button:#ca9b52;
  --button-text:#111111;
  --hero-overlay:rgba(0,0,0,0.35);
  --shadow:0 1px 12px rgba(0,0,0,0.35);
  background:#111111 var(--bg-image) center center / cover no-repeat fixed;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Open Sans", Arial, sans-serif;
  color:var(--text);
  background:#ffe5e5 var(--bg-image) left top / cover no-repeat fixed;
  line-height:1.8;
  transition:background-color .25s ease, color .25s ease;
}

body.no-scroll{
  overflow:hidden;
}

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

a{
  color:var(--accent);
  text-decoration:none;
  transition:0.25s ease;
}

a:hover{
  color:rgba(202,155,82,0.82);
}

h1,h2,h3,h4,h5,h6{
  margin:0 0 18px;
  color:var(--title);
  line-height:1.3;
  font-family:"Playfair Display", serif;
}

p{
  margin:0 0 22px;
}

button,
input,
textarea{
  font:inherit;
}

.cf1f944{
  width:min(1160px, calc(100% - 48px));
  margin:0 auto;
}

.cf1f966::after{
  content:"";
  display:block;
  clear:both;
}

.preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  background:var(--surface);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .4s ease, visibility .4s ease;
}

.preloader.hide{
  opacity:0;
  visibility:hidden;
}

.cf1f960{
  margin:auto;
  width:49px;
  height:49px;
  position:relative;
}

.cf1f917{
  background-color:var(--button);
  width:9px;
  height:9px;
  position:absolute;
  margin:auto;
  animation:cssload-cubemove 2s infinite ease-in-out;
}

.cf1f938{left:13px;top:0;animation-delay:.1s;}
.cf1f96{left:25px;top:0;animation-delay:.2s;}
.cf1f969{left:38px;top:0;animation-delay:.3s;}
.cf1f936{left:0;top:13px;animation-delay:.1s;}
.cf1f914{left:13px;top:13px;animation-delay:.2s;}
.cf1f955{left:25px;top:13px;animation-delay:.3s;}
.cf1f912{left:38px;top:13px;animation-delay:.4s;}
.cf1f91{left:0;top:25px;animation-delay:.2s;}
.cf1f958{left:13px;top:25px;animation-delay:.3s;}
.cf1f959{left:25px;top:25px;animation-delay:.4s;}
.cf1f920{left:38px;top:25px;animation-delay:.5s;}
.cf1f971{left:0;top:38px;animation-delay:.3s;}
.cf1f910{left:13px;top:38px;animation-delay:.4s;}
.cf1f92{left:25px;top:38px;animation-delay:.5s;}
.cf1f967{left:38px;top:38px;animation-delay:.6s;}

@keyframes cssload-cubemove{
  35%{transform:scale(0.005);}
  50%{transform:scale(1.7);}
  65%{transform:scale(0.005);}
}

#page-wrap{
  min-height:100vh;
}

#top-bar{
  background:var(--surface);
  min-height:40px;
}

.cf1f942{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.cf1f950{
  min-height:500px;
  background-image:linear-gradient(var(--hero-overlay), var(--hero-overlay)), var(--hero-image);
  background-position:center center;
  background-size:cover;
  position:relative;
}

.cf1f968{
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:48px 24px;
}

.cf1f93 h1{
  margin:0;
  font-family:"Open Sans", Arial, sans-serif;
  font-size:clamp(2rem, 4vw, 4rem);
  font-weight:700;
  letter-spacing:.02em;
}

.cf1f93 h1 a{
  color:#08a5dd;
}

#main-nav{
  background:var(--surface);
  box-shadow:var(--shadow);
  position:relative;
  z-index:30;
}

.cf1f923{
  position:relative;
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cf1f946{
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}

.cf1f946 span{
  display:block;
  width:100%;
  height:2px;
  background:#000;
  transition:.25s ease;
}

body.dark-mode .cf1f946 span{
  background:#fff;
}

.cf1f946:hover span{
  background:var(--accent);
}

.cf1f929{
  display:block;
}

#main-menu,
#mobile-menu-list{
  list-style:none;
  margin:0;
  padding:0;
}

#main-menu{
  display:flex;
  align-items:center;
  gap:34px;
}

#main-menu a,
#mobile-menu-list a,
.cf1f961{
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--title);
}

#main-menu .cf1f972 a,
#main-menu a:hover,
#mobile-menu-list a:hover{
  color:var(--accent);
}

.cf1f99{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  gap:12px;
  align-items:center;
}

.cf1f941{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:transparent;
  color:var(--title);
  cursor:pointer;
  font-size:17px;
  padding:0;
}

.cf1f941:hover{
  color:var(--accent);
}

.cf1f961{
  display:none;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  background:transparent;
  border:0;
  cursor:pointer;
  padding:0;
}

.cf1f928{
  display:none;
  background:var(--surface);
  border-top:1px solid rgba(0,0,0,.06);
}

.cf1f928.active{
  display:block;
}

#mobile-menu-list{
  padding:12px 24px 18px;
}

#mobile-menu-list li + li{
  margin-top:12px;
}

.cf1f926{
  display:none;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:16px 0;
}

.cf1f926.active{
  display:block;
}

.cf1f948{
  display:flex;
  gap:12px;
}

.cf1f948 input{
  flex:1;
  min-width:0;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  padding:12px 14px;
  outline:none;
}

.cf1f948 button{
  border:0;
  background:var(--button);
  color:var(--button-text);
  padding:12px 18px;
  cursor:pointer;
}

.cf1f948 button:hover{
  background:var(--accent);
  color:#fff;
}

mark.search-highlight{
  background:#fff2a8;
  color:#111;
  padding:0 .1em;
}

body.dark-mode mark.search-highlight{
  background:#ca9b52;
  color:#111;
}

.cf1f956{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.3s ease;
  z-index:90;
}

.cf1f956.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.cf1f970{
  position:fixed;
  top:0;
  left:-340px;
  width:340px;
  max-width:90vw;
  height:100vh;
  background:var(--surface);
  padding:85px 35px 35px;
  overflow:auto;
  box-shadow:10px 0 30px rgba(0,0,0,.12);
  transition:.3s ease;
  z-index:100;
}

.cf1f970.active{
  left:0;
}

.cf1f933{
  position:absolute;
  top:28px;
  right:25px;
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  cursor:pointer;
  padding:0;
}

.cf1f933 span{
  position:absolute;
  left:0;
  top:13px;
  width:28px;
  height:2px;
  background:var(--title);
}

.cf1f933 span:first-child{
  transform:rotate(45deg);
}

.cf1f933 span:last-child{
  transform:rotate(-45deg);
}

.cf1f913 h3{
  font-size:20px;
  margin-bottom:10px;
}

.cf1f963{
  list-style:none;
  padding:0;
  margin:0 0 28px;
}

.cf1f963 li{
  border-bottom:1px solid var(--border);
}

.cf1f963 a{
  display:block;
  padding:11px 0;
  color:var(--text);
}

.cf1f963 a:hover{
  color:var(--accent);
}

.cf1f937{
  padding:0 0 48px;
}

.cf1f947{
  min-height:24px;
}

.cf1f931{
  display:flex;
  align-items:flex-start;
  gap:0;
  background:var(--surface);
}

.cf1f954{
  width:calc(100% - 307px);
  padding:40px;
  min-width:0;
}

.cf1f932{
  width:307px;
}

.cf1f935{
  padding:40px 0 40px 37px;
}

.cf1f922{
  background:var(--surface);
}

.cf1f951{
  margin-bottom:28px;
}

.cf1f953{
  font-size:clamp(2rem, 3vw, 2.7rem);
  line-height:1.25;
}

.cf1f95 h2{
  margin-top:30px;
  font-size:32px;
}

.cf1f943{
  margin:28px 0 30px;
}

.cf1f962{
  margin-bottom:36px;
}

.cf1f939{
  margin-bottom:18px;
}

.cf1f939 h2{
  font-size:22px;
  display:inline-block;
  padding-bottom:8px;
  border-bottom:1px solid var(--border);
}

.cf1f962 ul{
  list-style:none;
  padding:0;
  margin:0;
}

.cf1f962 li{
  padding:10px 0;
  border-bottom:1px solid var(--border);
}

.cf1f962 li a{
  color:var(--text);
}

.cf1f962 li a:hover{
  color:var(--accent);
}

.cf1f965{
  position:relative;
  overflow:hidden;
  aspect-ratio:16 / 9;
}

.cf1f965 iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.contact-form{
  margin-top:10px;
}

.cf1f916{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.cf1f964{
  margin-bottom:18px;
}

.cf1f964 label{
  display:block;
  margin-bottom:8px;
  color:var(--title);
  font-weight:600;
}

.cf1f964 input,
.cf1f964 textarea{
  width:100%;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  padding:14px 16px;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease;
}

.cf1f964 input:focus,
.cf1f964 textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(202,155,82,.12);
}

.cf1f927{
  appearance:none;
  border:0;
  background:var(--button);
  color:var(--button-text);
  padding:14px 28px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}

.cf1f927:hover{
  background:var(--accent);
  color:#fff;
}

#page-footer{
  background:#000;
  text-align:center;
  color:#fff;
  padding:18px 0;
  position:relative;
}

.cf1f949{
  padding-top:8px;
}

.cf1f918{
  color:#fff;
  font-size:14px;
}

.cf1f945{
  position:fixed;
  right:24px;
  bottom:24px;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#333;
  color:#fff;
  border-radius:50%;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:50;
}

.cf1f945.show{
  opacity:1;
  visibility:visible;
}

.cf1f945:hover{
  background:var(--accent);
  color:#fff;
}

@media (max-width: 979px){
  .cf1f923{
    justify-content:flex-start;
    padding-left:54px;
    padding-right:110px;
  }

  .cf1f929{
    display:none;
  }

  .cf1f961{
    display:block;
  }

  .cf1f99{
    right:62px;
    gap:10px;
  }

  .cf1f931{
    display:block;
  }

  .cf1f954,
  .cf1f932{
    width:100%;
  }

  .cf1f954{
    padding:30px 24px;
  }

  .cf1f935{
    padding:0 24px 30px;
  }
}

@media (max-width: 768px){
  .cf1f950,
  .cf1f968{
    min-height:360px;
  }

  .cf1f944{
    width:min(100% - 28px, 1160px);
  }

  .cf1f95 h2{
    font-size:28px;
  }

  .cf1f916{
    grid-template-columns:1fr;
  }

  .cf1f948{
    flex-direction:column;
  }
}

@media (max-width: 560px){
  .cf1f923{
    min-height:58px;
    padding-right:80px;
  }

  .cf1f99{
    display:none;
  }

  .cf1f953{
    font-size:1.9rem;
  }

  .cf1f95 h2{
    font-size:24px;
  }

  .cf1f970{
    padding:78px 24px 24px;
  }
}

/* Sidebar pages/meta readability fix */
.cf1f935 .cf1f97{
  background:#ffffff;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:18px;
  padding:20px 22px;
  box-shadow:0 14px 34px rgba(15,23,42,0.08);
}

.cf1f935 .cf1f97 .cf1f939{
  margin-bottom:14px;
}

.cf1f935 .cf1f97 .cf1f939 h2{
  color:#172033;
  border-bottom-color:rgba(23,32,51,0.12);
  font-size:20px;
}

.cf1f935 .cf1f97 ul{
  margin:0;
}

.cf1f935 .cf1f97 li{
  border-bottom:1px solid rgba(15,23,42,0.08);
  padding:0;
}

.cf1f935 .cf1f97 li:last-child{
  border-bottom:0;
}

.cf1f935 .cf1f97 li a{
  display:block;
  padding:12px 0;
  color:#24324a;
  font-weight:600;
  line-height:1.45;
}

.cf1f935 .cf1f97 li a:hover{
  color:#0f172a;
}

.cf1f935 .cf1f97 li a.cf1f98{
  color:#0f172a;
}

.cf1f935 .cf1f97 li a.cf1f98::before{
  content:"• ";
  color:var(--accent);
  font-weight:700;
}

body.dark-mode .cf1f935 .cf1f97{
  background:#ffffff;
  border-color:rgba(15,23,42,0.08);
  box-shadow:0 14px 34px rgba(0,0,0,0.22);
}

body.dark-mode .cf1f935 .cf1f97 .cf1f939 h2,
body.dark-mode .cf1f935 .cf1f97 li a{
  color:#24324a;
}

body.dark-mode .cf1f935 .cf1f97 li a:hover,
body.dark-mode .cf1f935 .cf1f97 li a.cf1f98{
  color:#0f172a;
}
.cf1f931{
  flex-direction: row-reverse;
}

.cf1f935{
  padding: 40px 37px 40px 0;
}


/* Generated theme override */
:root{
  --accent:#b9774e;
  --text:#493e36;
  --title:#32231a;
  --muted:#958f8a;
  --border:#f4e9e3;
  --surface:#ffffff;
  --surface-2:#fdfbfa;
  --footer:#714930;
  --button:#945f3e;
  --button-text:#ffffff;
  --hero-overlay:rgba(185,119,78,0.09);
  --wf-accent:#b9774e;
  --wf-panel-bg:linear-gradient(145deg,rgba(53,43,38,0.9),rgba(31,30,32,0.96));
  --wf-panel-border:rgba(198,143,110,0.32);
  --wf-panel-shadow:0 20px 56px rgba(19,12,8,0.34);
  --wf-site-title-bg:rgba(46,30,20,0.44);
  --wf-site-title-border:rgba(198,143,110,0.28);
  --wf-search-bg:rgba(59,38,25,0.42);
  --wf-scroll-start:rgba(185,119,78,0.96);
  --wf-scroll-end:rgba(196,141,106,0.58);
}
.cf1f931{background:var(--surface) !important;}
.cf1f922,.cf1f962{background:var(--surface);border:1px solid rgba(185,119,78,0.1);box-shadow:0 18px 42px rgba(185,119,78,0.12);}
.cf1f919,.cf1f970,#top-bar,#main-nav,.cf1f928{border-color:rgba(185,119,78,0.1);}
a:hover{color:#986240;}
.cf1f943 img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border-radius:18px;}
.cf1f957{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:18px;background:#000;}
.cf1f940{width:min(100%,420px) !important;max-width:100% !important;height:740px !important;aspect-ratio:9 / 16 !important;margin:0 auto;}
.cf1f962 .cf1f957{margin:0 auto;}
.cf1f973{margin:12px 0 0;font-size:14px;}
.cf1f973 a{font-weight:700;text-decoration:underline;}
