/* === Crestal Shock Fellzauber: Gradient Modern CSS === */
/* RESET AND 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.55;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFAFA;
  color: #222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
a { color: #27597A; text-decoration: none; transition: color .18s; }
a:hover, a:focus { color: #FFBE4D; }
ul, ol { list-style-position: inside; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', Arial, sans-serif;
  color: #27597A;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.12;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 15px; }
h4 { font-size: 1.1rem; }
p, ul, ol, address { margin-bottom: 16px; font-size: 1rem; }
strong { font-weight: bold; }

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main .container,
footer .container,
header .container { gap: 0; }
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section { margin-bottom: 60px; padding: 40px 20px; background: #FFF; border-radius: 24px; box-shadow: 0 4px 24px rgba(39,89,122,0.06); }

/* === HERO SECTION === */
.hero {
  background: linear-gradient(90deg, #F8DBB1 0%, #FFBE4D 80%, #FAFAFA 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 32px rgba(39,89,122,0.13);
  margin-bottom: 60px;
  padding: 54px 0 54px 0;
}
.hero .container { align-items: center; }
.hero .content-wrapper { align-items: flex-start; max-width: 640px; gap: 28px; }
.hero h1 { color: #27597A; }
.hero p { font-size: 1.15rem; color: #34689B; }

/* ========== NAVIGATION ========== */
header { background: #FFF; box-shadow: 0 2px 12px rgba(39, 89, 122, 0.04); z-index: 102; position: relative; }
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 32px;
}
header img[alt="Crestal Shock Fellzauber"] { height: 44px; max-width: 200px; margin-right: 22px; }
header nav { display: flex; align-items: center; gap: 24px; }
header nav a {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #27597A;
  padding: 8px 9px;
  border-radius: 10px;
  transition: background .17s, color .17s;
}
header nav a:hover, header nav a:focus { background: #FFBE4D; color: #27597A; }
.cta-btn {
  padding: 11px 34px;
  background: linear-gradient(90deg, #FFBE4D 0%, #F8DBB1 100%);
  color: #27597A;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(39, 89, 122, 0.14);
  cursor: pointer;
  transition: box-shadow .22s, transform .16s, background .18s;
  margin-left: 18px;
  text-align: center; text-decoration: none; display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFD279 0%, #FFBE4D 100%);
  color: #18415A;
  box-shadow: 0 8px 28px rgba(39, 89, 122, 0.21);
  transform: translateY(-2px) scale(1.025);
}

/* === MOBILE MENU === */
.mobile-menu-toggle { /* Hamburger Button */
  display: none;
  background: #FFBE4D;
  border: none;
  border-radius: 11px;
  font-size: 2rem;
  padding: 8px 16px;
  color: #27597A;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 1101;
  cursor: pointer;
  transition: box-shadow .17s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus { box-shadow: 0 2px 8px #ffd2794f; }
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(250,250,250,0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column; align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.67,.07,.45,1.02);
  box-shadow: 3px 0 24px rgba(39,89,122,0.13);
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: transparent; border: none;
  color: #27597A; font-size: 2.2rem;
  margin: 18px 0 18px 20px; cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 9px;
  padding: 20px 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Raleway', Arial, sans-serif;
  padding: 13px 0;
  color: #27597A;
  border-radius: 10px;
  transition: background .17s, color .17s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: #FFBE4D; color: #27597A; }
@media (max-width: 1100px) {
  header nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
}

/* ========== SECTION/GRID/CARD LAYOUTS ========== */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0;
}
.feature-grid > div, .service-list > div {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(39,89,122,0.07);
  padding: 27px 18px;
  flex: 1 1 280px;
  min-width: 235px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .17s;
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 8px 32px #27597a24;
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img, .service-list img { height: 44px; width: 44px; margin-bottom: 5px; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; background: #FFF; border-radius: 18px; box-shadow: 0 2px 15px rgba(39,89,122,0.07); padding: 20px; transition: box-shadow .18s; }
.card:hover { box-shadow: 0 6px 24px #27597a24; }

.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;
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .card-container, .content-grid, .text-image-section { flex-direction: column; gap: 20px !important; }
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 27px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  color: #27597A;
  border-radius: 16px;
  box-shadow: 0 4px 18px #27597a0e;
  max-width: 320px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow .17s, border .17s;
  margin-bottom: 20px;
  border-left: 7px solid #FFBE4D;
}
.testimonial-card p {
  color: #18415A;
  font-size: 1.07rem;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: #27597A;
  font-size: .98rem;
  opacity: .78;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  color: #18415A;
  background: #fbf2db;
  border-radius: 9px;
  padding: 8px 18px;
  margin: 24px 0 18px 0;
  font-size: 1.09rem;
}
.rating-summary img { height: 22px; width: 22px; margin-right: 5px; }

address {
  font-style: normal;
  color: #27597A;
  background: #FAFAFA;
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.6;
  margin-bottom: 12px;
}
address ul { margin-left: 0; padding-left: 0; }
address li, address a { color: #18415A; font-size: 1rem; }
address img { height: 22px; width: 22px; vertical-align: middle; margin-right: 8px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #FFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px #27597a0c;
  font-size: 1rem;
}
.price-table th,
.price-table td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
}
.price-table th {
  background: #F8DBB1;
  color: #18415A;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td {
  color: #18415A;
  font-size: 0.98rem;
}

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

/* === TEAM MEMBERS (ABOUT) === */
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team > div {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 15px #27597a14;
  padding: 22px 16px;
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.team h3 { color: #27597A; font-size: 1.12rem; margin-bottom: 0; }
.team p { color: #18415A; font-size: .97rem; }

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #F8DBB1 30%, #FFBE4D 90%);
  color: #18415A;
  position: relative;
  padding: 42px 0 15px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 22px #27597a19;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer img[alt="Crestal Shock Fellzauber"] {
  height: 36px;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5px;
}
footer nav a {
  color: #27597A;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  font-size: .98rem;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
footer nav a:hover, footer nav a:focus { background: #FFF; color: #FFBE4D; }
footer p { margin-bottom: 0; text-align: center; font-size: .97rem; }

/* ========== BUTTONS & LINKS ========== */
button, .cta-btn, input[type="submit"] {
  font-family: 'Raleway', Arial, sans-serif;
  cursor: pointer;
  outline: none;
  border: none;
}
button:focus, input:focus, .cta-btn:focus, a:focus { box-shadow: 0 0 0 3px #FFBE4D88; }

/* ========== HOVER & MICRO-INTERACTIONS ========== */
.card, .testimonial-card, .team > div {
  transition: box-shadow .16s, transform .15s;
}
.card:hover, .testimonial-card:hover, .team > div:hover {
  box-shadow: 0 8px 36px #27597a15;
  transform: translateY(-2.5px) scale(1.028);
}
.cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .16s, color .16s, box-shadow .16s, transform .16s;
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#F8DBB1 40%,#FFBE4D 100%);
  color: #18415A;
  z-index: 9999;
  box-shadow: 0 -2px 18px #27597a18;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 12px 18px 12px;
  font-size: 1.05rem;
  transition: transform .32s;
  border-radius: 23px 23px 0 0;
  animation: cb-slide-up .45s cubic-bezier(0.68,0,0.26,1);
}
@keyframes cb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 7px;
}
.cookie-btn {
  background: #27597A;
  color: #FFF;
  border-radius: 17px;
  padding: 9px 20px;
  font-family: 'Raleway',Arial,sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 4px;
  transition: background .18s, color .15s, box-shadow .15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFBE4D;
  color: #27597A;
  box-shadow: 0 2px 10px #fff49d50;
}
.cookie-btn--settings {
  background: #FFF;
  color: #27597A;
  border: 1px solid #27597a35;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #F8DBB1;
}

.cookie-modal {
  position: fixed;
  z-index: 12000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,89,122,0.14);
  display: flex;
  align-items: center; justify-content: center;
  animation: cb-modal-fadein .38s ease;
}
@keyframes cb-modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal__dialog {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 8px 36px #27597a21;
  padding: 36px 24px 24px 24px;
  max-width: 440px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cookie-modal__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #27597A;
  cursor: pointer;
  margin-bottom: 10px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cookie-modal .toggle-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
}
.cookie-modal .cookie-cat-name {
  font-weight: 700; color: #27597A;
  font-size: 1.05rem; margin-right: 8px;
}
.toggle-switch input[type="checkbox"] {
  appearance: none;
  width: 38px; height: 20px;
  background: #e9ecef;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .2s;
}
.toggle-switch input[type="checkbox"]:checked {
  background: #FFBE4D;
}
.toggle-switch input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #FFF;
  border-radius: 50%;
  transition: transform .18s;
  box-shadow: 0 1px 2px #8883;
}
.toggle-switch input[type="checkbox"]:checked:before {
  transform: translateX(18px);
}
.toggle-switch label { color: #18415A; font-size: 1rem; }
.cookie-cat-desc { font-size: 0.94rem; color: #34689B; }
.cookie-modal__footer { display: flex; gap: 14px; margin-top: 16px; }

/* ========== MEDIA QUERIES (RESPONSIVE) ========== */
@media (max-width: 1000px) {
  .hero .container { padding: 0 10px; }
  .footer .container, .content-wrapper, .feature-grid, .service-list, .team, .testimonial-list, .card-container, .content-grid { gap: 18px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 10px; }
  .hero { padding: 30px 0 30px 0; border-radius: 0 0 18px 18px; }
  .section { margin-bottom: 37px; padding: 22px 8px; border-radius: 13px; }
  header .container { min-height: 54px; gap: 7px; }
  header img[alt="Crestal Shock Fellzauber"] { height: 34px; max-width: 135px; margin-right: 4px; }
  .cta-btn { padding: 10px 18px; margin-left: 0; font-size: 1rem; }
  .feature-grid > div, .service-list > div, .team > div, .card, .testimonial-card {
    min-width: 99%; max-width: 100%;
    padding: 16px 11px;
  }
  .rating-summary { padding: 8px 9px; }
  .mobile-menu-toggle { top: 8px; right: 10px; font-size: 1.7rem; padding: 7px 12px; }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .hero h1, h1 { font-size: 1.48rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: .98rem; }
  .container { padding: 0 3px; }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center !important; }
.mt-16 { margin-top: 16px; }
.mt-28 { margin-top: 28px; }

/* === END: Crestal Shock Fellzauber Modern Style === */