/* ===========================
   Oratory Edge Professional Corporate CSS
   =========================== */
/* ------ CSS 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, 
main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
:root {
  --primary: #1C2B39;
  --secondary: #FFD273;
  --accent: #F6F6F6;
  --text-main: #222A35;
  --text-muted: #647184;
  --white: #fff;
  --border: #E4E8EE;
  --shadow: 0 4px 24px rgba(28,43,57,0.06);
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-main);
  background: var(--accent);
  font-size: 16px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1160px;
}
/* ------ TYPOGRAPHY ------ */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}
p, ul li, ol li {
  color: var(--text-muted);
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
/* ------ HEADER ------- */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(28,43,57,0.05);
  z-index: 30;
  position: sticky;
  top: 0;
  left: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
.site-logo {
  flex-shrink: 0;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: var(--primary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}
.nav-cta {
  margin-left: auto;
  margin-right: 12px;
  flex-shrink: 0;
}
/* Hamburger Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  display: none;
  padding: 0 12px;
  line-height: 1;
  z-index: 102;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
/* ------ MOBILE MENU ------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(30,40,50,0.18);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  position: absolute;
  top: 25px;
  right: 28px;
  cursor: pointer;
  z-index: 201;
  transition: color 0.18s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 64px;
  gap: 28px;
  align-items: flex-start;
  padding: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  padding: 8px 0;
  font-weight: 500;
  transition: color 0.18s;
}
.mobile-nav a:hover {
  color: var(--secondary);
}
/* ------ BUTTONS ------ */
.btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 7px;
  display: inline-block;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(28,43,57,0.05);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  box-shadow: 0 3px 10px rgba(28,43,57,0.10);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 3px 10px rgba(28,43,57,0.08);
}
/* ------ HERO SECTION ------ */
.hero {
  background: var(--accent);
  padding: 70px 0 50px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero h1 {
  font-size: 2.4rem;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
}
.hero .btn {
  margin-top: 18px;
}
/* ------ FLEX SPACING COMPONENTS ------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
}
.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: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 260px;
  margin-bottom: 24px;
  border-left: 5px solid var(--secondary);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 6px 18px rgba(28,43,57,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Section wrappers */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Features Grid/Cards */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(28,43,57,0.10);
}
.feature-card img {
  width: 42px;
  margin-bottom: 8px;
}
/* ------ COURSES / CARDS / EVENTS ------ */
.course-cards, .coaching-plans, .event-listings, .recent-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.course-card, .coaching-plan, .event-card, .blog-post {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
  box-shadow: var(--shadow);
  padding: 26px 24px;
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.17s;
  position: relative;
}
.course-card:hover,
.coaching-plan:hover,
.event-card:hover,
.blog-post:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 18px rgba(28,43,57,0.12);
  z-index: 2;
}
.course-card span, .coaching-plan span, .event-card span {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
/* ------ ACCREDITATIONS / MISC. FLEX ------ */
.accreditations {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-top: 16px;
}
.past-event-successes {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-summary ul,
.course-benefits ul,
.event-benefits ul,
.past-event-successes ul {
  padding-left: 18px;
  color: var(--text-muted);
}
.before-after {
  margin-top: 26px;
}
.before-after ul {
  padding-left: 18px;
}
/* ------ TESTIMONIALS ------ */
.testimonials {
  background: var(--accent);
  padding: 50px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-details {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: var(--text-main);
  margin-bottom: 8px;
}
/* Ensure testimonials readable on all backgrounds */
.testimonials, .testimonial-card {
  background: var(--accent);
}
.testimonial-card {
  background: var(--white);
  color: var(--text-main);
  border-left: 5px solid var(--secondary);
}
/* ------ BLOG AUTHOR BIOS ------ */
.author-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.author-bio {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  min-width: 200px;
  max-width: 340px;
  flex: 1 1 200px;
}
/* ------ CATEGORIES LIST ------ */
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.categories-list li {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 5px;
  padding: 4px 16px;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
/* ------ CONTACT LISTS ------ */
.contact ul, .contact-info ul, .about ul, .user-rights-summary ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.contact ul li, .contact-info ul li, .about ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-muted);
}
.contact ul img, .contact-info ul img, .about ul img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.map-embed {
  margin: 20px 0;
  background: var(--accent);
  padding: 16px;
  border-radius: 8px;
}
.faq-teaser {
  margin: 18px 0 0 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
/* ------ FOOTER ------ */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 50px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100%;
  width: 38px;
  height: 38px;
  transition: background 0.16s;
}
.footer-social a:hover {
  background: var(--secondary);
}
.footer-social img {
  width: 22px;
  height: 22px;
}
.legal-disclaimer {
  margin-top: 8px;
  font-size: 0.97rem;
  color: var(--accent);
  opacity: 0.85;
}
/* ------ PRIVACY & TERMS PAGES ------ */
.privacy-statement, .terms-summary, .explanation, .data-storage {
  background: var(--accent);
  border-left: 5px solid var(--secondary);
  padding: 16px 18px;
  border-radius: 7px;
  margin-bottom: 16px;
}
.user-rights-summary ul {
  gap: 8px;
}
/* ------ COOKIE CONSENT BANNER ------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 205;
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(28,43,57,0.15);
  padding: 24px 14px 18px 14px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(0.68,-0.55,0.27,1.55), opacity 0.26s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__msg {
  color: var(--primary);
  max-width: 560px;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .btn {
  font-size: 1rem;
  padding: 10px 20px;
}
/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(28, 43, 57, 0.22);
  z-index: 250;
  max-width: 420px;
  width: 90vw;
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s, transform 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, -40%) scale(.96);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 500;
}
.cookie-toggle {
  accent-color: var(--primary);
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie-category.essential label {
  color: var(--text-main);
  opacity: 0.7;
}
/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(28,43,57,0.25);
  z-index: 240;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  display: none;
  opacity: 0;
}
/* ------ ANIMATIONS ------ */
.btn, .feature-card, .card, .course-card, .event-card, .coaching-plan, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.17s, background 0.18s, color 0.15s;
}
.btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  will-change: transform, opacity;
}

/* ------ RESPONSIVE DESIGN ------ */
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .site-logo {
    margin-right: 18px;
  }
  .footer-nav {
    gap: 14px;
  }
  .feature-card, .course-card, .event-card, .coaching-plan {
    max-width: 288px;
    padding: 20px 15px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-card, .course-card, .coaching-plan, .event-card {
    min-width: 190px;
    max-width: 220px;
  }
  .author-bios {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 58px;
  }
  .main-nav,
  .nav-cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid,
  .course-cards, .coaching-plans, .event-listings, .recent-posts-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .hero {
    padding: 40px 0 30px 0;
    margin-bottom: 32px;
  }
  .section {
    margin-bottom: 38px;
    padding: 27px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .author-bios {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.37rem;
  }
  .hero h1 {
    font-size: 1.52rem;
  }
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .testimonial-card, .feature-card, .course-card, .author-bio, .event-card, .coaching-plan {
    padding: 13px 7px;
    min-width: 0;
    max-width: 96vw;
  }
  .btn {
    width: 100%;
    padding: 12px 0;
  }
}
/* Utility Flex Classes (if used in HTML) */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}

/* ===== END Oratory Edge Professional/Coporate CSS ===== */
