/* =======================================================================
   Brillium Kawa 2025 – MONOCHROME SOPHISTICATED THEME STYLE.CSS
   Consistent for all sections, flexbox layouts only – NO grid, NO columns
   Brand palette: monochrome (black-white-grey) + touch of secondary/accent
   Typography: Montserrat (display), Roboto (body)
   ======================================================================= */

/* CSS RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, html {
  width: 100%;
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #181818;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #181818;
  outline-offset: 2px;
}

/* --- BASE TYPOGRAPHY --- */
body {
  color: #181818;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #181818;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.22;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
p, li {
  font-size: 1rem;
  color: #303030;
}
p {
  margin-bottom: 12px;
}
strong {
  color: #111;
  font-weight: 700;
}
blockquote {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-style: italic;
  border-left: 4px solid #222;
  padding-left: 18px;
  margin: 24px 0 16px 0;
  background: #f7f7f7;
  letter-spacing: 0.01em;
}
cite {
  font-size: 0.96em;
  color: #3b3b3b;
  font-family: "Roboto", Arial, sans-serif;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* FLEX LAYOUTS -- OBEY FLEXBOX ONLY! */
.card-container, .feature-grid, .tips-grid, .team-grid, .trend-highlights, .stat-grid, .news-list, .events-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(36,36,36,0.10);
  padding: 28px 20px;
  min-width: 260px;
  flex: 1 1 290px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(0,0,0,0.16);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6f7f9;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(34,34,34,0.08);
  min-width: 240px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  border: 1px solid #e4e4e4;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.04rem;
}
.testimonial-details span {
  display: inline-block;
  color: #292929;
  font-size: 0.96em;
  letter-spacing: 0.01em;
  margin-right: 2px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #E3E3E3;
  position: sticky;
  top: 0;
  z-index: 40;
}
nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
nav > a img {
  height: 54px;
  width: auto;
  display: block;
  margin: 0 0 0 2px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: #181818;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #1a1a1a;
  color: #fff;
}
nav ul li a.cta {
  background: #181818;
  color: #fff;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 28px;
  margin-left: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.09);
  transition: background 0.18s, color 0.18s;
}
nav ul li a.cta:hover, nav ul li a.cta:focus {
  background: #fff;
  color: #181818;
  border: 1px solid #181818;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #181818;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(19,19,19,0.08);
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #292929;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 1001;
  padding: 0 0 48px 0;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.6,0,0.3,1);
  box-shadow: -4px 0 24px 0 rgba(20,20,20,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #181818;
  background: none;
  border: none;
  cursor: pointer;
  margin: 28px 0 14px 28px;
  align-self: flex-start;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #292929;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  color: #181818;
  padding: 10px 0;
  border-radius: 11px;
  font-weight: 600;
  transition: background .13s, color .13s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #181818;
  color: #fff;
}

@media (max-width: 1050px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  nav ul {
    gap: 12px;
  }
}
@media (max-width: 800px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- HERO / CTA BUTTONS --- */
.cta {
  display: inline-block;
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 13px 36px;
  margin-top: 12px;
  box-shadow: 0 2px 22px 0 rgba(0,0,0,0.13);
  cursor: pointer;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.19s, color 0.19s, transform .22s, box-shadow 0.2s;
}
.cta:hover, .cta:focus {
  background: #fff;
  color: #181818;
  border: 2px solid #222;
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 4px 36px rgba(30,30,30,0.19);
}

/* --- SECTIONS, CARDS, FEATURE & INFO BLOCKS --- */
.feature-grid > div, .trend-highlights > div, .stat-grid > div, .tips-grid > div, .team-grid > div, .news-list > div, .events-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(38,38,38,0.07);
  padding: 26px 20px 22px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.23s, transform 0.2s;
}
.feature-grid > div:hover, .trend-highlights > div:hover, .stat-grid > div:hover, .tips-grid > div:hover, .team-grid > div:hover, .news-list > div:hover, .events-list > div:hover {
  box-shadow: 0 7px 28px 0 rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.021);
}

/* --- TEXT BLOCKS/LISTS ACCENT/QUOTE --- */
.text-section ul {
  margin: 12px 0 16px 24px;
  padding: 0;
  list-style: disc inside;
  font-size: 1rem;
  color: #232323;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section h3, .text-section h4 {
  margin-top: 18px;
  margin-bottom: 10px;
}

/* --- ACCORDION / HIGHLIGHTED SECTION (eg. FAQ) --- */
.faq-accordion, .trend-accordion {
  background: #f6f7f9;
  border-radius: 16px;
  padding: 20px 26px;
  margin: 16px 0 24px 0;
  box-shadow: 0 2px 10px 0 rgba(20,20,20,0.07);
}
.faq-accordion ul, .trend-accordion ul {
  margin-top: 10px;
}
.faq-accordion li, .trend-accordion li {
  color: #1e1e1e;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

/* --- HIGHLIGHT CARDS --- */
.featured-tip, .featured-article, .event-highlights {
  background: #232323;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(24,24,24,0.18);
  padding: 22px 20px 18px 20px;
  margin-top: 24px;
  margin-bottom: 28px;
}
.featured-tip h4, .featured-article h3, .event-highlights h4 {
  color: #fff; margin-bottom: 6px;
}
.featured-tip p, .featured-article p, .event-highlights ul li {
  color: #f7f7f7;
}

/* --- TESTIMONIAL SLIDER --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fff !important;
  border: 1px solid #e5e5e5;
  color: #181818;
}
.testimonial-card p {
  color: #181818;
}
.testimonial-details {
  margin-left: 8px;
  font-size: 1em;
}

/* --- FOOTER --- */
footer {
  background: #111;
  color: #eee;
  padding: 0;
  width: 100%;
}
footer section {
  background: #111;
  color: #e9e9e9;
  padding: 36px 0 24px 0;
}
footer .container {
  padding-bottom: 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-contact strong {
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
}
.contact-info p {
  font-size: 1rem;
  color: #bdbdbd;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.footer-links a {
  color: #bdbdbd;
  font-size: 0.97rem;
  transition: color 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
}
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #181818;
  transition: background 0.18s, filter .18s;
  filter: grayscale(60%);
}
.social-links a:hover img, .social-links a:focus img {
  background: #fff;
  filter: grayscale(0%);
}

/* --- RESPONSIVE & MOBILE --- */
@media (max-width: 1000px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 900px) {
  .feature-grid > div, .trend-highlights > div,
  .stat-grid > div, .tips-grid > div, .team-grid > div,
  .news-list > div, .events-list > div {
    flex-basis: 100%;
    min-width: 180px;
  }
}
@media (max-width: 850px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 30px 5px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 8px;
  }
  .feature-grid, .tips-grid, .trend-highlights, .stat-grid, .team-grid, .news-list, .events-list, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  nav ul {
    display: none;
  }
}

/* --- Contact details and Map --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.location-map {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #292929;
  font-size: 1.02rem;
  margin: 18px 0 14px 0;
}
.location-map span {
  color: #292929;
}
@media (max-width: 600px) {
  .footer-links ul, .social-links, .footer-contact {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}

/* --- News/Events/Stats Category Tags --- */
.news-categories, .event-highlights {
  margin-top: 22px;
  margin-bottom: 24px;
}
.news-categories ul, .event-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-top: 8px;
}
.news-categories li, .event-highlights li {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 4px 14px;
  border-radius: 13px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- Infographic Section --- */
.infographics, .location-map {
  margin-top: 16px; margin-bottom: 18px;
}
.infographics img {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
  margin-left: 0;
}

/* --- Cookie Banner + Modal --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 2000;
  background: #181818;
  color: #fff;
  padding: 22px 18px 22px 18px;
  box-shadow: 0 -4px 26px 0 rgba(18,18,18,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform .32s cubic-bezier(.68, -.55, .27, 1.55);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner__msg {
  font-size: 1rem;
  max-width: 74vw;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  transition: background .13s, color .13s, box-shadow .13s;
}
.cookie-btn.accept {
  background: #fff;
  color: #181818;
  box-shadow: 0 0 8px 0 rgba(22,22,22,0.10);
}
.cookie-btn.accept:hover {
  background: #181818;
  color: #fff;
}
.cookie-btn.reject {
  background: #eeeeee;
  color: #181818;
}
.cookie-btn.reject:hover {
  background: #ce2020;
  color: #fff;
}
.cookie-btn.settings {
  background: #232323;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn.settings:hover {
  background: #fff;
  color: #232323;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 19px 8px 17px 8px;
  }
  .cookie-banner__actions {
    gap: 11px;
  }
}

/* --- Cookie Settings Modal --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,22,22,0.75);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}
.cookie-modal[hidden] {
  display: none;
}
.cookie-modal__box {
  background: #fff;
  color: #181818;
  border-radius: 19px;
  box-shadow: 0 0 44px 0 rgba(18,18,18,0.19);
  padding: 44px 28px 30px 28px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalIn .36s cubic-bezier(.68,-.45,.29,1.3);
}
@keyframes cookieModalIn {
  from { opacity:0; transform: scale(.93) translateY(15px); }
  to { opacity:1; transform:scale(1) translateY(0); }
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 18px;
  color: #222;
  background: none;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #b32727;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal__category label {
  font-size: 1.05rem;
  color: #262626;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.cookie-modal__category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #181818;
  border-radius: 7px;
  margin-right: 4px;
}
.cookie-modal__category.disabled label {
  color: #aaa;
}
.cookie-modal__actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
@media (max-width: 440px) {
  .cookie-modal__box {
    min-width: 98vw;
    padding: 26px 7px 18px 7px;
  }
}

/* --- Micro-interactions and Transitions --- */
a, button, .card, .card-container > div, .cta, .cookie-btn, .mobile-menu-toggle {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

/* --- Misc: Hide scrollbar on mobile menu (overflow hidden state for menu) --- */
.mobile-menu {
  overflow-y: auto;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* --- Accessibility: focus visible for nav and cta --- */
nav ul li a:focus-visible, .cta:focus-visible {
  outline: 2px solid #0761ec;
  outline-offset: 1px;
}

/* --- Branding infused details --- */
/* Use gray, white, black in all bg, box, and border colors */
/* Accent color (brand gold) only on select icons / highlight as needed */

/* --- Miscellaneous Classes (for grid alternative layouts) --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section > * {
  flex: 1 1 280px;
}

/* --- Ensure min 20px margin between elements as per strict rules --- */
.card + .card,
.feature-grid > div + div,
.trend-highlights > div + div,
.stat-grid > div + div,
.tips-grid > div + div,
.team-grid > div + div,
.news-list > div + div,
.events-list > div + div,
.testimonial-card + .testimonial-card,
.section + .section {
  margin-top: 20px !important;
}

/* --- Hide skip to content (for accessibility, not in HTML) --- */
.skip-to-content { position:absolute; left:-1000px; }
.skip-to-content:focus { position:static; background:#fff; color:#181818; z-index:3000; }

/* =======================================================================
   END OF FILE: ALL LAYOUTS BY FLEXBOX, ALL PADDING/GAP/MARGIN SYSTEMS INTACT
   ======================================================================= */