/* ========================================
   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: #fff;
  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;
}

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

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

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.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: #fff;
}

.sidebar__lang {
  margin-top: auto;
  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;
}

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

.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;
}

.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;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 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__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;
}

.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: #f0ebe4;
  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: #faf8f5;
  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: 1/1;
}

.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: ' →';
}

/* ========================================
   Page Hero (inner pages)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  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;
}

.page-hero__title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  font-style: italic;
}

/* ========================================
   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(3, 1fr);
  gap: 40px;
  padding: 40px 60px 80px;
  background: #f5f0eb;
}

.tips-card {
  text-align: center;
}

.tips-card__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.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;
  color: #222;
  margin-bottom: 8px;
}

.tips-card__link {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e86c2e;
  font-weight: 600;
  transition: color 0.3s;
}

.tips-card__link:hover {
  color: #d45a1e;
}

/* ========================================
   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) {
  .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;
  }

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

  .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;
  }
}

@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__content {
    padding: 60px 30px;
  }

  .hero__title {
    font-size: 2.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: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .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;
  }
}
