/* === Glowwave Akademie - Creative Artistic Theme CSS === */

/* === CSS RESET & BASE === */
html { box-sizing: border-box; font-size: 100%; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F4F4F9;
  color: #27346A;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #21B093; text-decoration: none; transition: color .23s; }
a:hover, a:focus { color: #27346A; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #27346A;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.4rem; line-height: 1.3; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.05rem; }
}

p, ul, ol, li { margin-bottom: 8px; }
strong, b { font-weight: bold; color: #27346A; }

ul, ol { padding-left: 1.4em; }
ul {
  list-style: disc outside;
}

/* === LAYOUT & CONTAINERS === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

main > section {
  margin-bottom: 40px;
}

/* === HEADER === */
header {
  background: #fff;
  border-bottom: 4px solid #21B093;
  padding: 0 0 0 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1002;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 70px;
}
header > a img { height: 48px; margin: 10px 0 10px 10px; }

.main-nav {
  display: flex;
  gap: 20px;
  margin: 0 0 0 30px;
}

.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 20px;
  color: #27346A;
  background: none;
  position: relative;
  transition: background 0.18s, color 0.18s;
}

.main-nav a:hover, .main-nav a:focus {
  background: #21B093;
  color: #fff;
}

.cta-btn {
  background: #21B093;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  padding: 10px 28px;
  margin: 0 16px;
  border-radius: 30px 14px 30px 14px;
  box-shadow: 0 3px 20px 0 rgba(33,176,147,0.14);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  outline: 0;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #27346A;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(39,52,106,0.18);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  margin-right: 24px;
  background: #21B093;
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 1px 10px rgba(33,176,147,0.08);
  z-index: 1101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #27346A;
  outline: 0;
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .cta-btn { margin-left: 0; }
  header {
    justify-content: space-between;
  }
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #27346Aee;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.89,0.22,0.18,1.02);
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 20px 30px 18px 0;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-left: 40px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  padding: 10px 18px;
  border-radius: 14px 30px 14px 30px;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover {
  background: #21B093;
  color: #fff;
  transform: scale(1.05) skew(-2deg);
}

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

/* === HERO SECTION === */
.hero {
  background: linear-gradient(90deg, #21B093 10%, #F4F4F9 70%);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.hero .container { padding-top: 30px; padding-bottom: 30px; }
.hero h1 {
  font-size: 2.8rem;
  color: #27346A;
  margin-bottom: 12px;
}
.hero p {
  color: #27346A;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .hero .container { padding-top: 20px; padding-bottom: 18px; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: auto; }
}

/* === FEATURES & SERVICE SECTIONS === */
.features {
  background: #fff;
  border-radius: 40px 20px 44px 20px;
  box-shadow: 0 2px 20px 0 rgba(39,52,106,0.06);
  margin-bottom: 60px;
}

.features ul,
.services-list,
.mentoring-features,
.course-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features ul li,
.services-list li,
.mentoring-features li,
.course-cards li {
  background: #F4F4F9;
  border-radius: 14px 30px 14px 30px;
  padding: 24px 20px 20px 24px;
  box-shadow: 0 4px 32px 0 rgba(33,176,147,0.06);
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  min-width: 200px;
  transition: background .20s, box-shadow .22s, transform .19s;
  position: relative;
}
.features ul li:hover, .services-list li:hover, .course-cards li:hover {
  background: #fff5e9;
  box-shadow: 0 8px 40px 0 rgba(33,176,147,0.11);
  transform: translateY(-2px) scale(1.03) rotate(-1.1deg);
}
.features ul li img, .services-list li img, .course-cards li img {
  height: 42px;
  margin-bottom: 6px;
}

.mentoring-features li {
  min-width: 180px;
  background: #e7f8f3;
}

@media (max-width: 900px) {
  .features ul, .services-list, .course-cards, .mentoring-features {
    flex-direction: column;
    gap: 20px;
  }
}

/* === SERVICE & COURSE CARDS === */
.course-cards li {
  background: #fffbe7;
  border-left: 5px solid #21B093;
  flex: 1 1 320px;
  align-items: flex-start;
  position: relative;
}
.course-cards li .cta-btn {
  margin-top: 8px;
}
@media (max-width: 900px) {
  .course-cards li { min-width: unset; }
}

.services-list li {
  background: #eeecfa;
  border-left: 5px solid #27346A;
  min-width: 220px;
}

/* === TABLES === */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 18px 42px 18px 42px;
  box-shadow: 0 2px 18px 0 rgba(33,176,147,0.06);
  overflow: hidden;
  font-size: 1.04rem;
}
.pricing-table th, .pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #21B09322;
}
.pricing-table thead th {
  background: #21B093;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tbody tr:nth-child(even) { background: #f4f4f9; }
.pricing-table tbody tr:last-child td { border-bottom: none; }

@media (max-width: 700px) {
  .pricing-table, .pricing-table tbody, .pricing-table thead, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table th { background: #21B093!important; }
}

/* === TESTIMONIALS === */
.testimonials {
  background: #fff;
  margin-bottom: 52px;
  padding: 40px 0 40px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-left: 6px solid #21B093;
  border-radius: 22px 11px 33px 24px;
  box-shadow: 0 2px 25px 0 rgba(39,52,106,0.12);
  padding: 28px 36px 24px 28px;
  margin-bottom: 20px;
  max-width: 620px;
  color: #27346A;
  font-size: 1.05rem;
  transition: box-shadow .18s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 36px 0 rgba(33,176,147,0.16);
  transform: scale(1.01);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #27346A;
}
.testimonial-meta span:first-child { font-size: 1.15rem; color: #21B093; }

/* === CTA SECTION === */
.cta {
  background: #27346A;
  padding: 40px 0;
  border-radius: 32px 12px 30px 12px;
  text-align: center;
  box-shadow: 0 4px 28px 0 rgba(33,176,147,0.10);
  margin-bottom: 54px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 22px;
}
.cta .cta-btn {
  background: #fff;
  color: #21B093;
  border: 2px solid #21B093;
  margin-top:10px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #21B093;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 8px 24px 0 rgba(33,176,147,0.11);
}

/* === LEGAL SECTIONS === */
.legal {
  background: #fff;
  border-radius: 22px 40px 22px 40px;
  box-shadow: 0 4px 30px 0 rgba(39,52,106,0.09);
  margin-bottom: 60px;
  padding: 40px 30px;
  color: #27346A;
}
.legal h1 { color: #21B093; }

/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: #21B093;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
}
.faq-accordion .text-section {
  padding-left: 12px;
  margin-bottom: 8px;
  background: #F4F4F9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all .22s;
}

/* === TEXT IMAGE / CONTENT GRID SECTIONS === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(33,176,147,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 24px;
  flex: 1 1 300px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === MISCELLANEOUS STYLES === */
.text-section { margin-bottom: 16px; }

.map {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.map img { height: 70px; }

.contact-info {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info a {
  color: #21B093;
  text-decoration: underline;
  word-break: break-all;
}
.contact-info a:hover { color: #27346A; }

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.social-links a img { height: 28px; transition: filter .16s; }
.social-links a:hover img { filter: brightness(0) saturate(100%) invert(36%) sepia(62%) saturate(1522%) hue-rotate(133deg) brightness(95%) contrast(91%); }

/* === FOOTER === */
footer {
  background: #27346A;
  color: #fff;
  padding: 50px 0 18px 0;
  margin-top: 48px;
}
footer .container { padding-top: 0; padding-bottom: 0; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
footer img { height: 54px; margin-bottom: 12px; }
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-menu a {
  color: #fff;
  opacity: .92;
  font-size: 1rem;
  transition: color .18s, text-decoration .16s;
}
.footer-menu a:hover {
  color: #21B093;
}

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

footer .contact-info { color: #fff; font-size: .97rem; }
footer .contact-info a { color: #fff; text-decoration: underline; }
footer .contact-info a:hover { color: #21B093; }
footer .social-links a img { filter: invert(1) grayscale(1); }

/* === RESPONSIVE PAD, SPACING, MOBILE === */
@media (max-width: 700px) {
  .content-wrapper, .features, .services, .testimonials, .cta, .legal, .hero, .section {
    padding: 24px 0 24px 0 !important;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 8px;
  }
  .features { border-radius: 20px 12px 20px 12px; }
  .hero { min-height: 180px; }
}

/* === BUTTONS/INPUTS GENERAL === */
button, .cta-btn {
  transition: background .20s, color .18s, box-shadow .18s, transform .15s;
  outline: 0;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #21B093;
  outline-offset: 2px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fff;
  border-top: 4px solid #21B093;
  box-shadow: 0 -3px 32px 0 rgba(33,176,147,0.14);
  padding: 30px 20px 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: slideInUp .65s cubic-bezier(0.36,1.14,0.42,0.98);
}
.cookie-banner p {
  color: #27346A;
  flex: 1 1 auto;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn, .cookie-banner button {
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px 30px 16px 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin: 0 1px;
  transition: background .16s, color .16s;
}
.cookie-btn.accept {
  background: #21B093;
  color: #fff;
}
.cookie-btn.accept:hover { background: #27346A; color: #fff; }
.cookie-btn.reject {
  background: #eaeaea;
  color: #27346A;
}
.cookie-btn.reject:hover { background: #fec4c5; color: #9f2224; }
.cookie-btn.settings {
  background: #fffbe7;
  color: #21B093;
  border: 1px solid #21B093;
}
.cookie-btn.settings:hover {
  background: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 8px;
  }
  .cookie-actions { flex-direction: row; width: 100%; gap: 7px; }
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,52,106,0.73);
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .35s;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 22px 44px 22px 44px;
  min-width: 350px;
  max-width: 95vw;
  padding: 44px 36px 24px 36px;
  box-shadow: 0 8px 40px rgba(39,52,106,0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: bounceIn .53s cubic-bezier(0.32, 2, 0.55, 0.52);
}
.cookie-modal .modal-content h2 {
  color: #21B093;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #27346A;
  font-size: 1.06rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #21B093;
  width: 20px; height: 20px;
}
.cookie-modal .cookie-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #27346A;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cookie-modal .modal-content { padding: 24px 8px; min-width: unset; }
}

/* === ANIMATIONS === */
@keyframes slideInUp {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes bounceIn {
  0% { transform: scale(.85); opacity: 0; }
  54% { transform: scale(1.08); opacity: 1; }
  92% { transform: scale(.96); }
  100% { transform: scale(1); }
}

/* === ARTISTIC ELEMENTS & EFFECTS === */
h1, h2, .cta-btn {
  text-shadow: 1px 2px 0px #fffbe7, 1px 3px 18px #21B09311;
}
h1 { letter-spacing: -2px; font-weight: 800; }

.features ul li, .services-list li, .course-cards li, .testimonial-card, .legal {
  background-image: repeating-linear-gradient(135deg, #fff0 0 10px, #21B09309 10px 20px, #fff0 20px 40px);
}

.features ul li:before, .services-list li:before, .course-cards li:before {
  content: '';
  display: block;
  position: absolute;
  right: 16px; top: 16px;
  width: 24px; height: 24px;
  background: #21B09333;
  border-radius: 50%;
  z-index: 0;
}

.features ul li:hover:before,
.services-list li:hover:before,
.course-cards li:hover:before {
  background: #ffd86133;
}

.cta-btn {
  box-shadow: 0 4px 22px 0 #fae57c2e;
}

.features ul li h3,
.services-list li h3,
.course-cards li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #27346A;
  font-size: 1.14rem;
  margin-bottom: 4px;
}

.features ul li p,
.services-list li p,
.course-cards li p {
  color: #27346A;
  font-size: 1rem;
}

.features ul li img,
.services-list li img,
.course-cards li img {
  filter: drop-shadow(0 0 7px #21B0933d);
}

/* === FORMS (if needed in contact etc.) === */
input, select, textarea {
  border-radius: 12px 22px 12px 22px;
  border: 1.5px solid #21B09388;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(39,52,106,0.04);
  transition: border .17s, box-shadow .17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #21B093;
  box-shadow: 0 2px 20px 0 rgba(33,176,147,0.09);
}
label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; color: #27346A; }

/* === UTILS === */
.hide { display: none!important; }

/* === END OF CSS === */
