/* ===== Global ===== */
:root {
  --bg: #fdf6f0;
  --bgdark: #efe5db;
  --teal: #414b38;
  --accent: #69418b;
  --muted: #6b6b6b;
  --white: #ffffff;
  --max-width: 1300px; /* wider container */
  --radius: 10px;
  --hover:#414b38;
}

* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Montserrat, "Poppins", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--teal);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  
}


a {
  color: inherit;
}

b, strong {
  font-weight: 500;
}


h1, h2, h3 {
  font-family: Montserrat,"Poppins", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0.6em;
  line-height: 1.2;
  font-weight: 800;

}

/* Main page titles */
h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal); /* Use your primary brand color */
}

/* Section headings */
h2 {
  font-size: 2.5rem;
}

/* Subsection headings */
h3 {
  font-size: 1.8rem;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}


h2 {
  font-weight: 700; /* or whatever you want */

  display: inline-block; /* needed for clip to work properly */
  position: relative;
  margin-bottom: 0.9em;
}


h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 5px;
  width: 100%;
  background: var(--accent);
  opacity: 0.7;
  border-radius: 4px;
}


.tp {
  border-top: 2px solid var(--accent);
  width: 100%;
  position: fixed;
  z-index: 5555;
}
.wrap {
  width: 94%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* spacing between image and text */
}

.brand img {
  width: 48px; /* adjust size as needed */
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand a {
  font-size: 1.05rem;
  color: var(--teal);
  text-decoration: none;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
}


/* Nav */
.main-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {

  padding: 8px;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  background-color: var(--teal);
  color: #fff;
  outline: none;
}
.main-nav a.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:focus {
  background: var(--hover);
  outline: none;
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Lang buttons */
.lang-toggle {
  display: flex;
  gap: 8px;
}
.lang-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.lang-btn[aria-pressed="true"] {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.lang-btn:hover,
.lang-btn:focus {
  border-color: var(--teal);
  outline: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
  transition: color 0.3s ease;
}
.menu-toggle:hover,
.menu-toggle:focus {
  color: var(--teal);
  outline: none;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 20px;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background-color: var(--teal);
  color: #fff;
  outline: none;
}

/* HERO */
/* Hero background with overlay */
.hero {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  height: 70vh;
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110%; /* slightly bigger for movement room */
  height: 110%;
  background-image: url(../img/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.55);
  transform-origin: center;
  animation: cameraParallax 18s ease-in-out infinite;
}

@keyframes cameraParallax {
  0%   { transform: scale(1.05) translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1%, 1%); }
  50%  { transform: scale(1.05) translate(1%, -1%); }
  75%  { transform: scale(1.07) translate(-0.5%, -0.5%); }
  100% { transform: scale(1.05) translate(0%, 0%); }
}


.hero-inner {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-text {
  flex: 1;
  min-width: 320px;
  text-transform: capitalize;
}

.hero-notes {
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-transform: capitalize;
}

/* Hero media image */
.hero-media {
  border-radius: 4px;
  max-width: 30%;
}
.hero-media img {
  width: 100%;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 500px;
  text-transform: capitalize;
}
.lead {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 24px;
  max-width: 520px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.btn-primary,
.btn-ghost {
  padding: 14px 22px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--hover);
  outline: none;
}
.btn-ghost {
  background: rgba(255 255 255 / 0.3);

  color: #fff;
}
.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(255 255 255 / 0.6);
  border-color: #fff;
  outline: none;
}


/* Sections */
/* Alternate section backgrounds */
.section:nth-child(odd) {
  background-color: var(--bg); /* #FAF3E0 */
  padding: 120px 0;
}
.section:nth-child(even) {
  background-color: #fff;
  padding: 120px 0;
}

/* Two-column layout */
.two-col {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.col {
  flex: 1;
  min-width: 320px;
}
.col-right img {
  max-width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
}
.about-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.03em;
  max-width: 320px;
  border-left: 3px solid var(--teal); /* Using your brand teal for consistency */
}

.about-list li {
  position: relative;
  padding: 0.8rem 1.25rem;
  margin-bottom: 1.25rem;
  background: transparent;
  border-radius: 0;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-list li::before {
  content: "•";
  color: var(--teal);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
}

.about-list li:last-child {
  margin-bottom: 0;
}

/* Optional: subtle hover highlight for list items */
.about-list li:hover,
.about-list li:focus-within {
  color: var(--accent);
  cursor: default;
  outline: none;
}

/* Utility class for visually hidden text */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}



/* Who & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.card {
  background: #fff;
  padding: 22px;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}
.card:hover,
.card:focus-within {

}
.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 1.15rem;
}
.card p {
  margin: 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--teal);
}
.service-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}
.bullet-list {
  list-style: disc;
  margin-left: 24px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}
.bullet-list li {
  padding: 8px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal, #6CB1A7);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.testimonial.card {
  background: #fff;
  padding: 24px 28px;
  border-radius: 4px;
  font-style: italic;
  color: #444;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  border:4px dashed var(--bgdark);
}

.testimonial.card:hover,
.testimonial.card:focus-within {

  outline: none;
}

.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1.2rem;
  color: #555;
}

.testimonial blockquote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: var(--accent, #F2994A);
  position: absolute;
  left: 0;
  top: 0;
  user-select: none;
  line-height: 1;
}

.testimonial footer {
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal, #6CB1A7);
  align-self: flex-end;
  user-select: none;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  #about {display: none;}
}



/* Contact */
.contact-inner {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-left {
  flex: 1;
  min-width: 320px;
  font-size: 0.95rem;
  color: #333;
}
.contact-left h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--teal);
}
.contact-left p {
  margin-bottom: 16px;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}
.contact-info li {
  margin-bottom: 12px;
}
.contact-info a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.contact-info a:hover,
.contact-info a:focus {
  text-decoration: underline;
  outline: none;
}
.contact-right {
  flex: 1;
  min-width: 320px;
}
form label {
  display: block;
  margin: 12px 0 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
  resize: vertical;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
}
form .btn-primary {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
form .btn-primary:hover,
form .btn-primary:focus {
  background: var(--hover);
  outline: none;
}
.hero-msg {
  background: rgba(255,255,255,0.85);
  padding: 12px 18px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
  color: #333;
  z-index: 500;
}

.msg1 {
  color: #1a7c44; /* success green */
}

.hero-msg .msg1.error {
  color: #b30000; /* error red */
}



/* Small screens */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-text h1 {
    font-size: 1.75rem;
  }
  .two-col {
    flex-direction: column;
  }
  .hero-inner {
    gap: 16px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    text-align: center;
  }
  .contact-inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
  .section {
    padding: 60px 0;
  }
  .hero {
    padding: 60px 0;
  }
}


/* Footer */
/* Footer */
.site-footer {
  background: var(--teal);
  color: #fff;
  padding: 40px 0 32px;
  font-size: 0.95rem;
  position: relative;
}

.footer-inner {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

/* Logo container inside first footer column */
.footer-col.brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-col.brand img.logo {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col p,
.footer-col ul {
  margin: 0 0 1rem 0;
}

.footer-col ul {
  padding-left: 1rem;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  text-decoration: underline;
  outline: none;
}

.footer-bottom {
  padding-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}




/* Resources Section */
#resources {
  background: var(--bg);
  margin: 0;
  padding: 3rem 1rem;
  font-family: "Poppins", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

#resources .wrap {
  margin: 0 auto;
}

#resources h2 {
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--teal);
}

/* Reset list */
.resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Individual resource cards */
.resources-list li {
  flex: 1 1 32%;
  max-width: 32%;
  
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-sizing: border-box;
  background: white;
  border:4px dashed var(--bgdark);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
  cursor: default;
}



/* FontAwesome icons */
.resources-list i.fa-2x {
  color: var(--teal);
  font-size: 2rem;
  min-width: 42px;
  flex-shrink: 0;
}

/* Text block */
.resource-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resource-text strong {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #111;
  line-height: 1.2;
}

.resource-text span {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.resource-text small {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Responsive: stack icon above text on narrow screens */
@media (max-width: 480px) {
  .resources-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .resources-list i.fa-2x {
    min-width: auto;
    font-size: 2.5rem;
  }
}

/* Mobile styles for screens under 600px */
@media (max-width: 600px) {
  #resources .resources-list {
    flex-direction: column;
    gap: 1rem; 
  }

  #resources .resources-list li {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 1rem 1rem; 
  }

  #resources h2 {
    font-size: 1.75rem; 
    margin-bottom: 1.5rem;
  }
}

.insta-btn {
  display: inline-block;

  width: 40px;
  text-align: center;
  color: white;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, 
    #f09433 0%, 
    #e6683c 25%, 
    #dc2743 50%, 
    #cc2366 75%, 
    #bc1888 100%);
  transition: transform 0.2s, box-shadow 0.2s;
}

.insta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}



/* Layout */
.hero-cta {
  background: var(--white);
  padding: 3rem 1rem 4rem;
}

.hero-cta-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Config */
:root {
  --card-h: 260px; /* uniform height for all CTAs */
}

/* CTA stack container */
.cta-item {
  position: relative;
  height: var(--card-h);
  border-radius:4px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  outline: none;
}

/* Two stacked layers */
.card-top,
.card-bottom {
  position: absolute;
  inset: 0;             /* top:0; right:0; bottom:0; left:0 */
  border-radius: 4px;
  box-sizing: border-box;
}

/* Top card (fully covers bottom initially) */
.card-top {
  background: #fff;
  border: 4px dashed var(--bgdark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.5rem;
  z-index: 2;
  transition: transform .38s ease;
  will-change: transform;
}

.cta-item:hover > .card-top {
  transform: translateY(-50px);
}

.card-top i {
  color: var(--teal);
  font-size: 2.5rem;
}

.card-top h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
}

.card-top p {
  margin: 0;
  font-size: .95rem;
  color: #444;
  line-height: 1.45;
  text-align: center;
  max-width: 26ch;
}

/* Bottom card (revealed on hover) */
.card-bottom {
  background: var(--accent);
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.card-bottom a {
  color: var(--bg);
  padding: 15px;
  text-decoration: none;
  font-weight: bold;
}


.card {
  position: relative;
  background: #fff;
  padding: 24px 20px 24px 90px; /* extra left padding for icon */
  border-radius: 4px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
  outline-offset: 4px;
  border:4px dashed var(--bgdark);
}

.card i {
  position: absolute;
  top: 24px;
  left: 20px;
  font-size: 45px;
  color: var(--accent);
  pointer-events: none;
}


.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 1.3rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}


.res {
  position: relative; 
}




.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefits-list li.card {
  padding-left: 24px; /* reset padding since no icon */
  position: relative;
}

.benefits-list li.card div strong {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  display: block;
}

.benefits-list li.card div span {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Keyboard focus outline for accessibility */
.benefits-list li.card:focus {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


/* ===== About (namespaced) ===== */
.sml-about { }

/* Grid layout */
.sml-about__grid {
  display: grid;
  gap: 48px;
  align-items: start;
  grid-template-columns: 1fr; /* mobile first */
}

/* Desktop: content left, image right */
@media (min-width: 900px) {
  .sml-about__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    grid-template-areas:
      "content media"
      "tags    tags";
  }
  .sml-about__content { grid-area: content; }
  .sml-about__media   { grid-area: media; }
  .sml-about__tags    { grid-area: tags; }
}

/* Mobile stacking order (content, then image, then tags) */
.sml-about__content { order: 1; }
.sml-about__media   { order: 2; }
.sml-about__tags    { order: 3; }

/* Image styling */
.sml-about__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;

}

/* Tag list as chips under both columns */
.sml-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}

.sml-about__tags li {
  background: var(--bgdark);
  color: var(--teal);
  padding: 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  line-height: 1;
  
  white-space: nowrap;
  font-weight: bold;
  opacity: 0.8;
}

/* Optional: center tags on narrow screens */
@media (max-width: 768px) {
  .sml-about__tags { justify-content: center; }
}

/* Optional: small polish for the CTA if needed */
.sml-about .btn-primary {
  display: inline-block;
  margin-top: 1.25rem;
}


footer small {
  padding: 8px 15px;
  border-radius: 4px;
  background: #384130;
  opacity: 0.8;
}

.trans {
  background-color: transparent!important;
  color: var(--white);
}

.message {
position: absolute;
    width: 100%;
    text-align: center;
    font-weight: bold;
    top: 0px;
    background: var(--accent);
}

