/* ========================================
   OLI BEN — Static Site Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mulish', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  background: #fafafa;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  z-index: 100;
  overflow-y: auto;
}

.sidebar__logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.sidebar__tagline {
  display: none;
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 40px;
}

.sidebar__nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar__nav a {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.3s;
}

.sidebar__nav a:hover,
.sidebar__nav a.active {
  color: #e86c2e;
}

.sidebar__lang {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar__lang span {
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  position: relative;
}

.sidebar__lang span:hover {
  opacity: 0.8;
}

.sidebar__lang span.active {
  opacity: 1;
}

.sidebar__lang span.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #e86c2e;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 200;
  background: #1a1a1a;
  border: none;
  color: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

/* ========================================
   Main Content
   ======================================== */
.main {
  margin-left: 230px;
  margin-right: 20px;
  margin-top: 20px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  overflow: hidden;
  margin-top: -20px;
  margin-right: -20px;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/Kontaktujte ma.jpg') center/cover no-repeat;
  filter: blur(0px);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 700px;
}

.hero__title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 30px;
}

.hero__text {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero__title em {
  font-style: italic;
  color: #b5704d;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill--filled {
  display: inline-block;
  padding: 16px 36px;
  background: #b5704d;
  color: #fff;
  border: 2px solid #b5704d;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-pill--filled:hover {
  background: #9a5d3e;
  border-color: #9a5d3e;
  transform: translateY(-1px);
}

.btn-pill--outline {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: #2a2a2a;
  border: 2px solid #ccc;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: none;
  transition: border-color 0.3s, transform 0.2s;
}

.btn-pill--outline:hover {
  border-color: #999;
  transform: translateY(-1px);
}

/* ========================================
   Toolkit Section
   ======================================== */
.toolkit {
  background: #fff;
  padding: 80px 60px;
}

.toolkit__header {
  margin-bottom: 50px;
}

.toolkit__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.toolkit__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: #2a2a2a;
  margin-bottom: 16px;
}

.toolkit__desc {
  font-family: 'Mulish', sans-serif;
  font-size: 1.05rem;
  color: #777;
  line-height: 1.6;
}

.toolkit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.toolkit-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.toolkit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.toolkit-card__icon {
  width: 48px;
  height: 48px;
  background: #f5f0eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.toolkit-card__img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.toolkit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.toolkit-card:hover .toolkit-card__img img {
  transform: scale(1.05);
}

.toolkit-card__title {
  font-family: 'Poiret One', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.toolkit-card__desc {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.toolkit-card__link {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b5704d;
}

/* ========================================
   What's On Preview (index)
   ======================================== */
.whatson-preview {
  background: #f0ebe4;
  padding: 60px 60px 70px;
}

.whatson-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.whatson-preview__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

.whatson-preview__title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #2a2a2a;
}

.whatson-preview__seeall {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b5704d;
  text-decoration: none;
  white-space: nowrap;
}

.whatson-preview__seeall:hover {
  color: #9a5d3e;
}

.whatson-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.whatson-card {
  background: #2a2a2a;
  border-radius: 14px;
  padding: 28px 24px;
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatson-card--concerts {
  border-top-color: #6b9a6b;
}

.whatson-card--food {
  border-top-color: #6b9a6b;
}

.whatson-card--transport {
  border-top-color: #c95a3a;
}

.whatson-card--news {
  border-top-color: #b5704d;
}

.whatson-card__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}

.whatson-card__title {
  font-family: 'Mulish', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0ebe4;
  line-height: 1.4;
}

.whatson-card__meta {
  font-family: 'Mulish', sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .whatson-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .whatson-preview {
    padding: 40px 30px 50px;
  }

  .whatson-preview__grid {
    grid-template-columns: 1fr;
  }

  .whatson-preview__title {
    font-size: 1.8rem;
  }
}

.btn-pill {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-pill:hover {
  background: #fff;
  color: #1a1a1a;
}

.btn-pill--dark {
  border-color: #333;
  color: #333;
}

.btn-pill--dark:hover {
  background: #333;
  color: #fff;
}

.btn-pill--orange {
  border-color: #e86c2e;
  background: #e86c2e;
  color: #fff;
}

.btn-pill--orange:hover {
  background: #d45a1e;
  border-color: #d45a1e;
}

/* ========================================
   Tips Section
   ======================================== */
.tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  margin-top: 80px;
  align-items: center;
  padding: 80px 0;
}

.tips__content {
  padding: 80px 60px;
}

.tips__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e86c2e;
  margin-bottom: 8px;
}

.tips__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 50px;
  color: #222;
}

.tip-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.tip-item:first-of-type {
  border-top: 1px solid #eee;
}

.tip-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0e0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tip-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.tip-item__desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

.tips__footer {
  font-size: 0.85rem;
  color: #777;
  margin-top: 30px;
  line-height: 1.6;
}

.tips__footer a {
  color: #222;
  font-weight: 600;
  border-bottom: 1px solid #222;
}

.tips__image {
  padding: 0 60px;
  overflow: hidden;
}

.tips__image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
}

/* ========================================
   Blog Section
   ======================================== */
.blog-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
  padding: 80px 0;
}

.blog-preview__image {
  padding: 0 60px;
}

.blog-preview__image img {
  width: 100%;
  border-radius: 12px;
}

.blog-preview__content {
  padding: 40px 60px;
}

.blog-preview__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e86c2e;
  margin-bottom: 8px;
}

.blog-preview__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #222;
}

.blog-preview__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ========================================
   Toolkit Featured Card
   ======================================== */
.toolkit-card--featured {
  background: #1a1a1a;
  color: #fff;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
}

.toolkit-card--featured::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(181,112,77,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.toolkit-card--featured .toolkit-card__title {
  color: #fff;
  font-size: 1.3rem;
}

.toolkit-card--featured .toolkit-card__desc {
  color: #aaa;
}

.toolkit-card--featured .toolkit-card__link {
  color: #d4956b;
}

.toolkit-card__icon-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #b5704d, #d4956b);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

/* ========================================
   Community Banner
   ======================================== */
.community-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  background: #1a1a1a;
  overflow: hidden;
}

.community-banner__visual {
  overflow: hidden;
}

.community-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-banner__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-banner__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b5704d;
  margin-bottom: 16px;
}

.community-banner__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.community-banner__text {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 30px;
}

.community-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-pill--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #ccc;
  border: 1px solid #444;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.btn-pill--outline-light:hover {
  border-color: #b5704d;
  color: #fff;
}

/* ========================================
   Useful Apps
   ======================================== */
.useful-apps {
  padding: 80px 60px;
  background: #fafafa;
}

.useful-apps__header {
  margin-bottom: 40px;
}

.useful-apps__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.useful-apps__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.useful-apps__desc {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  color: #777;
}

.useful-apps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.app-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f0f0f0;
}

.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #e0d5cc;
}

.app-card__icon {
  width: 48px;
  height: 48px;
  background: #f5f0eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #b5704d;
  margin: 0 auto 14px;
}

.app-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 4px;
}

.app-card__desc {
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  color: #999;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 60px 40px;
  margin-right: -20px;
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 60px;
}

.footer__brand {}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer__social a:hover {
  color: #e86c2e;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}


.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 10px;
  transition: color 0.3s;
  text-decoration: none;
}

.footer__col a:hover {
  color: #e86c2e;
}

.footer__posts h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer__post-item {
  margin-bottom: 20px;
}

.footer__post-item a {
  font-size: 0.85rem;
  color: #ccc;
  display: block;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.footer__post-item a:hover {
  color: #fff;
}

.footer__post-item .date {
  font-size: 0.75rem;
  color: #666;
}

.footer__cta h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ========================================
   Destinations Page
   ======================================== */
.dest-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.6)),
              url('../images/dest-hero-cover.jpg') center/cover no-repeat;
  padding: 80px 40px;
  margin-top: -20px;
  margin-right: -20px;
}

.dest-hero__back {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.dest-hero__back:hover {
  color: #fff;
}

.dest-hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  max-width: 700px;
}

.dest-hero__count {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-top: 8px;
}

/* Interactive Map */
.map-section {
  padding: 60px 40px;
  text-align: center;
}

.map-section__subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 40px;
}

.map-section__container {
  max-width: 700px;
  margin: 0 auto 60px;
}

.slovakia-map {
  width: 100%;
  height: auto;
}

.map-region__path {
  fill: #f0e8df;
  stroke: #fff;
  stroke-width: 2;
  cursor: pointer;
  transition: fill 0.3s, transform 0.2s;
}

.map-region:hover .map-region__path {
  fill: #FE6204;
}

.map-region__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  fill: #555;
  text-anchor: middle;
  pointer-events: none;
  transition: fill 0.3s;
}

.map-region:hover .map-region__label {
  fill: #fff;
}

.map-section__regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.region-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border-radius: 12px;
  background: #f0e8df;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, transform 0.2s;
}

.region-card:hover {
  background: #FE6204;
  color: #fff;
  transform: translateY(-4px);
}

.region-card__icon {
  font-size: 1.5rem;
  color: #FE6204;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.region-card:hover .region-card__icon {
  color: #fff;
}

.region-card__name {
  font-family: 'Poiret One', cursive;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.region-card__count {
  font-size: 0.75rem;
  color: #aaa;
  transition: color 0.3s;
}

.region-card:hover .region-card__count {
  color: rgba(255,255,255,0.8);
}

/* Rating stars */
.dest-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #FE6204;
}

.dest-card__rating span {
  color: #666;
  font-weight: 600;
}

.dest-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  padding: 60px;
  align-items: start;
}

.dest-card + .dest-card {
  border-top: 1px solid #eee;
}

.dest-card__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.dest-card__info {
  padding: 20px 40px;
}

.dest-card__title {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: #222;
}

.dest-card__category {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}

.dest-card__address {
  font-size: 0.85rem;
  color: #4040c0;
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
}

.dest-card__address::after {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.9em;
}

.dest-card__desc {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.dest-card__details {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.dest-card__details strong {
  color: #444;
}

.dest-card__link {
  font-size: 0.85rem;
  color: #FE6204;
  font-weight: 500;
}

.dest-card__link::after {
  content: ' →';
}

/* ========================================
   Tips Notice (outdated info report)
   ======================================== */
.tips-notice {
  background: #f9f5ef;
  border: 1px solid #e8ddd0;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 40px 0;
  text-align: center;
}

.tips-notice__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tips-notice__btn {
  display: inline-block;
  padding: 10px 28px;
  background: #e8740c;
  color: #fff;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.tips-notice__btn:hover {
  background: #d06600;
}

/* ========================================
   Page Hero (inner pages)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.9)),
              url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&h=500&fit=crop') center/cover no-repeat;
  padding: 80px 40px;
  margin-top: -20px;
  margin-right: -20px;
}

.page-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}

[data-page="tips"] .page-hero {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.85)),
              url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1400&h=500&fit=crop') center/cover no-repeat;
}

[data-page="learn-slovak"] .page-hero {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.85)),
              url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?w=1400&h=500&fit=crop') center/cover no-repeat;
}

/* ========================================
   Tips Grid (category cards)
   ======================================== */
.tips-intro {
  text-align: center;
  padding: 60px 40px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.tips-intro__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 16px;
}

.tips-intro__desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 60px 80px;
}

.tips-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.tips-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tips-card__image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.tips-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.tips-card:hover .tips-card__image img {
  transform: scale(1.05);
}

.tips-card__title {
  font-family: 'Poiret One', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.tips-card__desc {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.tips-card__link {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b5704d;
}

/* ========================================
   Community Page
   ======================================== */
.community-intro {
  text-align: center;
  padding: 80px 40px 60px;
  max-width: 750px;
  margin: 0 auto;
}

.community-intro__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 24px;
}

.community-intro__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

.community-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 60px 40px;
}

.community-photos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.social-link:hover {
  color: #e86c2e;
}

.social-link__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.social-link__icon--instagram {
  color: #E1306C;
}

.social-link__icon--whatsapp {
  color: #25D366;
}

.social-link__icon--youtube {
  color: #FF0000;
}

.social-link__icon--chat {
  color: #E1306C;
}

.social-link__label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.why-join {
  text-align: center;
  padding: 60px 40px;
}

.why-join__title {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 40px;
}

.why-join__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.why-join__item h3 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #222;
}

.why-join__item p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 60px 0;
  align-items: start;
}

.contact-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.contact-section__form {
  padding: 40px;
}

.contact-section__form h2 {
  font-family: 'Poiret One', cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e86c2e;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  padding: 14px 40px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #333;
}

/* ========================================
   Blog Listing
   ======================================== */
.blog-list {
  padding: 60px;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid #eee;
  align-items: center;
}

.blog-post__image img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.blog-post__content {}

.blog-post__title {
  font-family: 'Poiret One', cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-post__tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 16px;
}

.blog-post__excerpt {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-post__link {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e86c2e;
  font-weight: 600;
}

.blog-post__link::after {
  content: ' →';
}

/* ========================================
   Blog Article Page
   ======================================== */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
}

.blog-article__hero-image {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 40px;
}

.blog-article__tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 16px;
}

.blog-article__date {
  font-family: 'Mulish', sans-serif;
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 24px;
  display: block;
}

.blog-article__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.4rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-article__content {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.9;
}

.blog-article__content p {
  margin-bottom: 20px;
}

.blog-article__content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin: 40px 0 16px;
}

.blog-article__content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 32px 0 12px;
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 16px 0 20px 24px;
}

.blog-article__content li {
  margin-bottom: 8px;
}

.blog-article__content blockquote {
  border-left: 3px solid #FE6204;
  padding: 12px 20px;
  margin: 24px 0;
  background: #fdf8f5;
  font-style: italic;
  color: #555;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.85rem;
  color: #FE6204;
  text-decoration: none;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.blog-article__back:hover {
  text-decoration: underline;
}

.blog-article__next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.85rem;
  color: #FE6204;
  text-decoration: none;
  margin-top: 40px;
  letter-spacing: 1px;
  float: right;
}
.blog-article__next:hover {
  text-decoration: underline;
}

/* ========================================
   Page Placeholder
   ======================================== */
.page-placeholder {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.page-placeholder__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #222;
}

.page-placeholder__text {
  font-size: 1rem;
  color: #888;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .toolkit__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__bg {
    width: 100%;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.75) 40%, rgba(26, 26, 26, 0.2) 70%, transparent 100%);
    z-index: 1;
  }

  .hero__text {
    color: #ccc;
  }

  .tips {
    grid-template-columns: 1fr;
  }

  .tips__image {
    height: 400px;
  }

  .blog-preview {
    grid-template-columns: 1fr;
  }

  .blog-preview__image {
    padding: 0 40px;
  }

  .blog-preview__content {
    padding: 40px;
  }

  .dest-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .dest-card__info {
    padding: 20px 0;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .footer__links {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
    gap: 20px;
  }

  .community-photos {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px 40px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }

  .blog-post {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-list {
    padding: 40px;
  }

  .social-links {
    gap: 30px;
  }

  .why-join__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .community-banner {
    grid-template-columns: 1fr;
  }

  .community-banner__visual {
    height: 300px;
  }

  .useful-apps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .hamburger {
    display: block;
  }

  .main {
    margin-left: 0;
  }

  .hero::before {
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 0.3) 80%, transparent 100%);
  }

  .hero__content {
    padding: 60px 30px;
  }

  .hero__title {
    font-size: 2.8rem;
  }


  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .toolkit {
    padding: 50px 30px;
  }

  .toolkit__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolkit-card--featured {
    grid-column: span 2;
  }

  .toolkit__title {
    font-size: 2rem;
  }

  .community-banner {
    grid-template-columns: 1fr;
  }

  .community-banner__visual {
    height: 250px;
  }

  .community-banner__content {
    padding: 40px 30px;
  }

  .community-banner__title {
    font-size: 1.8rem;
  }

  .useful-apps {
    padding: 50px 30px;
  }

  .useful-apps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .useful-apps__title {
    font-size: 1.8rem;
  }

  .tips__content {
    padding: 40px 30px;
  }

  .blog-preview__image {
    padding: 0 30px;
  }

  .blog-preview__content {
    padding: 30px;
  }

  .dest-hero__title {
    font-size: 2rem;
  }

  .dest-card {
    padding: 30px;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
    gap: 16px;
  }

  .community-photos {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px 30px;
    gap: 12px;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 24px;
    padding: 30px;
  }

  .contact-section {
    padding: 0 30px;
  }

  .blog-list {
    padding: 30px;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  .map-section {
    padding: 30px 20px;
  }

  .map-section__regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dest-card {
    grid-template-columns: 1fr;
  }

  .dest-card__info {
    padding: 10px 0;
  }
}

/* ========================================
   Vocabulary Section
   ======================================== */
.vocab-section {
  padding: 60px 60px 40px;
  background: #fff;
}

.vocab-section__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 8px;
  text-align: center;
}

.vocab-section__subtitle {
  font-size: 0.95rem;
  color: #888;
  text-align: center;
  margin-bottom: 32px;
}

/* Search */
.vocab-search {
  max-width: 500px;
  margin: 0 auto 24px;
  position: relative;
}

.vocab-search__input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  color: #333;
  background: #fafafa;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.vocab-search__input:focus {
  border-color: #b5704d;
  box-shadow: 0 0 0 3px rgba(91, 76, 255, 0.1);
  background: #fff;
}

.vocab-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.95rem;
  pointer-events: none;
}

/* Filters bar */
.vocab-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.vocab-group-btn,
.vocab-diff-btn,
.vocab-view-btn,
.vocab-subcat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  background: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.vocab-group-btn:hover,
.vocab-diff-btn:hover,
.vocab-view-btn:hover,
.vocab-subcat-btn:hover {
  border-color: #b5704d;
  color: #b5704d;
}

.vocab-group-btn.active,
.vocab-diff-btn.active,
.vocab-view-btn.active,
.vocab-subcat-btn.active {
  background: #b5704d;
  border-color: #b5704d;
  color: #fff;
}

/* Subcategory bar */
.vocab-subcategories {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.vocab-subcat-btn {
  padding: 6px 14px;
  font-size: 0.78rem;
}

/* Controls row */
.vocab-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.vocab-controls__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vocab-word-count {
  font-family: 'Mulish', sans-serif;
  font-size: 0.85rem;
  color: #999;
  font-weight: 600;
}

.vocab-sk-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.82rem;
  color: #666;
  cursor: pointer;
}

.vocab-sk-label input[type="checkbox"] {
  accent-color: #b5704d;
}

/* Table */
.vocab-table-wrapper {
  overflow-x: auto;
}

.vocab-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Mulish', sans-serif;
}

.vocab-table thead th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 2px solid #eee;
  white-space: nowrap;
}

.vocab-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.vocab-table tbody tr:hover {
  background: #f8f7ff;
}

.vocab-table tbody td {
  padding: 11px 12px;
  font-size: 0.92rem;
  color: #444;
  vertical-align: middle;
}

.vocab-td-sk {
  font-weight: 700;
  color: #b5704d;
}

.vocab-td-diff {
  width: 60px;
}

/* Difficulty dots */
.vocab-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0e0e0;
  margin-right: 3px;
}

.vocab-dot.active {
  background: #b5704d;
}

/* Speak button */
.vocab-speak-btn {
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  vertical-align: middle;
}

.vocab-speak-btn:hover {
  color: #b5704d;
  background: rgba(91, 76, 255, 0.08);
}

.vocab-speak-btn--active {
  color: #b5704d;
  transform: scale(1.25);
}

.vocab-speak-btn--card {
  margin-top: 8px;
  font-size: 1.1rem;
  color: #999;
}

.vocab-speak-btn--card:hover {
  color: #b5704d;
}

/* Play All button */
.vocab-play-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #b5704d, #c4825f);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  font-family: 'Mulish', sans-serif;
}

.vocab-play-all-btn:hover {
  background: linear-gradient(135deg, #4a3be0, #6b5ef0);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 76, 255, 0.3);
}

.vocab-play-all-btn.playing {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  animation: vocab-pulse 1.5s ease-in-out infinite;
}

.vocab-play-all-btn.playing:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
}

@keyframes vocab-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

/* Autoplay row highlight */
.vocab-row-playing {
  background: rgba(91, 76, 255, 0.08) !important;
  transition: background 0.3s ease;
}

.vocab-row-playing td:first-child {
  border-left: 3px solid #b5704d;
}

/* Controls right group */
.vocab-controls__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Word cell with speak btn */
.vocab-td-word {
  white-space: nowrap;
}

.vocab-td-word .vocab-speak-btn {
  margin-right: 4px;
}

/* Cards view */
.vocab-cards-wrapper {
  display: none;
}

.vocab-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.vocab-card {
  perspective: 600px;
  height: 160px;
  cursor: pointer;
}

.vocab-card__front,
.vocab-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  backface-visibility: hidden;
  transition: transform 0.5s;
}

.vocab-card__front {
  background: linear-gradient(135deg, #f8f7ff, #edeaff);
  border: 1.5px solid #e0dcff;
}

.vocab-card__back {
  background: linear-gradient(135deg, #b5704d, #c4825f);
  color: #fff;
  transform: rotateY(180deg);
}

.vocab-card.flipped .vocab-card__front {
  transform: rotateY(180deg);
}

.vocab-card.flipped .vocab-card__back {
  transform: rotateY(0deg);
}

.vocab-card {
  position: relative;
}

.vocab-card__cat {
  font-size: 1.3rem;
}

.vocab-card__sk {
  font-size: 1.15rem;
  font-weight: 700;
  color: #b5704d;
}

.vocab-card__en {
  font-size: 1.05rem;
  font-weight: 700;
}

.vocab-card__uk {
  font-size: 0.9rem;
  opacity: 0.85;
}

.vocab-card__diff {
  display: flex;
  gap: 3px;
}

.vocab-card__back .vocab-speak-btn {
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.vocab-card__back .vocab-speak-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

/* Load More button */
.vocab-load-more {
  display: none;
  margin: 24px auto 0;
  padding: 12px 32px;
  border: 2px solid #b5704d;
  border-radius: 50px;
  background: #fff;
  color: #b5704d;
  font-family: 'Mulish', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.vocab-load-more:hover {
  background: #b5704d;
  color: #fff;
}

.vocab-actions-center {
  text-align: center;
}

/* Language selectors in table header */
.vocab-lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: #b5704d;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  font-weight: 600;
}

.vocab-lang-select option {
  background: #fff;
  color: #333;
}

/* Learned checkbox column */
.vocab-td-check {
  text-align: center;
  width: 60px;
}

.vocab-learned-cb {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #b5704d;
}

.vocab-row-learned {
  opacity: 0.58;
  transition: opacity 0.3s;
}

.vocab-row-learned:hover {
  opacity: 0.78;
}

.vocab-card-learned {
  opacity: 0.58;
  transition: opacity 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  .vocab-section {
    padding: 40px 40px 30px;
  }
}

@media (max-width: 768px) {
  .vocab-section {
    padding: 30px 20px 20px;
  }

  .vocab-section__title {
    font-size: 1.7rem;
  }

  .vocab-filters {
    gap: 6px;
  }

  .vocab-group-btn,
  .vocab-diff-btn,
  .vocab-view-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .vocab-controls__right {
    flex-wrap: wrap;
    gap: 8px;
  }

  .vocab-play-all-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .vocab-td-word {
    white-space: normal;
  }

  .vocab-cards {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .vocab-card {
    height: 140px;
  }

  .vocab-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .vocab-table tbody td {
    padding: 8px 8px;
    font-size: 0.85rem;
  }
}

/* ========================================
   Trial Countdown Banner
   ======================================== */
.trial-countdown-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(90deg, #c0724a, #d4894e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trial-countdown-bar__icon {
  font-size: 1rem;
}

.trial-countdown-bar__link {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}

.trial-countdown-bar__close {
  margin-left: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 4px;
}

/* ========================================
   Onboarding Welcome Modal
   ======================================== */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.onboarding-card {
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 40px 36px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.onboarding-card__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
}

.onboarding-card__emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.onboarding-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.onboarding-card__subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 24px;
}

.onboarding-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onboarding-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #333;
}

.onboarding-card__features li i {
  color: #c0724a;
  width: 18px;
  flex-shrink: 0;
}

.onboarding-card__cta {
  display: inline-block;
  background: #c0724a;
  color: #fff;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  width: 100%;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.onboarding-card__cta:hover {
  background: #a85e3a;
}

.onboarding-card__note {
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 480px) {
  .onboarding-card {
    padding: 28px 20px 24px;
  }
  .trial-countdown-bar {
    font-size: 0.8rem;
  }
}
