/* ========================================
   Паттайя Гид — Main Stylesheet
   ======================================== */

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

:root {
  --color-primary: #0066cc;
  --color-primary-dark: #004d99;
  --color-primary-light: #3399ff;
  --color-accent-yellow: #ffcc00;
  --color-accent-green: #2ecc71;
  --color-bg: #f5f8fc;
  --color-white: #ffffff;
  --color-text: #2c3e50;
  --color-text-light: #5a6f80;
  --color-border: #dce4ec;
  --color-footer-bg: #1a2a3a;
  --color-footer-text: #c0ccd8;
  --gradient-hero: linear-gradient(135deg, #0066cc 0%, #00a3cc 50%, #2ecc71 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

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

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.header__logo i {
  font-size: 1.6rem;
  color: var(--color-accent-yellow);
}

.header__logo span {
  color: var(--color-text);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  padding: 8px 0;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: var(--color-text);
  font-size: 0.9rem;
  transition: background var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.burger__line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,204,0.85) 0%, rgba(0,163,204,0.75) 50%, rgba(46,204,113,0.65) 100%);
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent-yellow);
  color: var(--color-text);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

/* --- Section --- */
.section {
  padding: 70px 0;
}

.section--alt {
  background: var(--color-white);
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

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

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__image--beaches {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.card__image--temple {
  background: linear-gradient(135deg, #e6a817, #cc5500);
}

.card__image--nightlife {
  background: linear-gradient(135deg, #6a0572, #ab0439);
}

.card__body {
  padding: 20px;
}

.card__tag {
  display: inline-block;
  background: var(--color-bg);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.4;
}

.card__text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.card__link:hover {
  gap: 10px;
}

/* --- Attractions --- */
.attractions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.attraction-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.attraction-item:hover {
  transform: translateY(-2px);
}

.attraction-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-white);
}

.attraction-item__icon--blue { background: var(--color-primary); }
.attraction-item__icon--green { background: var(--color-accent-green); }
.attraction-item__icon--yellow { background: var(--color-accent-yellow); color: var(--color-text); }
.attraction-item__icon--orange { background: #e67e22; }

.attraction-item__title {
  font-weight: 600;
  font-size: 1rem;
}

.attraction-item__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* --- Article Page --- */
.article-hero {
  background: linear-gradient(135deg, #004d99, #00a3cc);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 60px 0 50px;
  position: relative;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,51,102,0.82) 0%, rgba(0,120,180,0.72) 100%);
  z-index: 1;
}

.article-hero > .container {
  position: relative;
  z-index: 2;
}

.article-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.article-hero__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.article-hero__meta i {
  margin-right: 5px;
}

/* Hero overlay — dark gradient over background-image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,51,102,0.82) 0%, rgba(0,120,180,0.72) 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 50px;
}

.hero-overlay .container h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 12px;
}

.hero-overlay .container p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

/* Breadcrumbs inside hero (white text) */
.hero-overlay .breadcrumbs,
.article-hero .breadcrumbs {
  padding: 0 0 14px 0;
  font-size: 0.85rem;
  background: transparent;
  border-bottom: none;
}

.hero-overlay .breadcrumbs ol,
.article-hero .breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-overlay .breadcrumbs li,
.article-hero .breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-overlay .breadcrumbs li + li::before,
.article-hero .breadcrumbs li + li::before {
  content: '›';
  color: rgba(255,255,255,0.6);
  margin-right: 6px;
}

.hero-overlay .breadcrumbs a,
.article-hero .breadcrumbs a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.hero-overlay .breadcrumbs a:hover,
.article-hero .breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-overlay .breadcrumbs span[itemprop="name"],
.article-hero .breadcrumbs span[itemprop="name"] {
  color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 14px 0;
  font-size: 0.85rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: '/';
  color: var(--color-text-light);
}

.breadcrumbs__link {
  color: var(--color-text-light);
}

.breadcrumbs__link:hover {
  color: var(--color-primary);
}

.breadcrumbs__current {
  color: var(--color-text);
  font-weight: 500;
}

/* Article Content */
.article-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.article-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.article-text h2 {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

.article-text h3 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin: 28px 0 10px;
}

.article-text p {
  margin-bottom: 18px;
  line-height: 1.75;
}

.article-text ul, .article-text ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.article-text ul { list-style: disc; }
.article-text ol { list-style: decimal; }

.article-text li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.article-text img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Info Box */
.info-box {
  background: #e8f4fd;
  border-left: 4px solid var(--color-primary, #0077cc);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--color-primary-dark, #003d7a);
}

.info-box p, .info-box ul, .info-box ol {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Tip Box */
.tip-box {
  background: #fff8e1;
  border-left: 4px solid #f9a825;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}

.tip-box h4, .tip-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #e65100;
}

.tip-box ul {
  margin-bottom: 0;
  padding-left: 20px;
  list-style: disc;
}

.tip-box li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin: 36px 0 14px;
}

.article-content h3 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin: 28px 0 10px;
}

.article-content p {
  margin-bottom: 18px;
  line-height: 1.75;
}

.article-content ul {
  margin-bottom: 18px;
  padding-left: 20px;
  list-style: disc;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.article-content strong {
  color: var(--color-primary-dark);
}

/* Image Placeholder */
.img-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #e0e8f0, #c5d5e8);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.img-placeholder i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  opacity: 0.5;
}

/* FAQ Accordion */
.faq {
  margin: 24px 0;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  font-family: var(--font-main);
  transition: background var(--transition);
}

.faq__question:hover {
  background: var(--color-bg);
}

.faq__question i {
  transition: transform var(--transition);
  color: var(--color-primary);
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 20px 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Read Also */
/* --- Article Images --- */
.article-img {
  margin: 30px 0;
}
.article-img img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.article-img figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 8px;
  font-style: italic;
}

.read-also {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--color-border);
}

.read-also__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary-dark);
}

.read-also__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.read-also__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.read-also__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.read-also__card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-white);
}

.read-also__card-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.4;
}

/* --- Newsletter --- */
.newsletter {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.newsletter__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter__text {
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter__input:focus {
  border-color: var(--color-white);
}

.newsletter__btn {
  background: var(--color-accent-yellow);
  color: var(--color-text);
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font-main);
  transition: transform var(--transition);
}

.newsletter__btn:hover {
  transform: scale(1.05);
}

.newsletter__message {
  margin-top: 14px;
  font-size: 0.95rem;
  display: none;
}

.newsletter__message.show {
  display: block;
}

/* --- Related Articles --- */
.related-articles {
  background: var(--color-bg);
  padding: 50px 0;
  border-top: 1px solid var(--color-border);
}

.related-articles h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 28px;
  text-align: center;
}

.related-articles .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.related-articles .card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--color-text);
}

.related-articles .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-articles .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.related-articles .card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 16px;
  margin: 0;
  line-height: 1.4;
}

/* --- Footer --- */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 50px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}

.footer__heading {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__text {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--color-footer-text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent-yellow);
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer__contacts i {
  color: var(--color-accent-yellow);
  width: 18px;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* --- Contacts Section --- */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition);
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--color-primary);
}

.contact-card__title {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    padding: 80px 24px 24px;
    z-index: 1050;
  }

  .nav.open {
    right: 0;
  }

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

  .nav__link {
    width: 100%;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .article-hero__title {
    font-size: 1.7rem;
  }

  .newsletter__form {
    flex-direction: column;
  }

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

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

  .attractions-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 0 70px;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .section {
    padding: 50px 0;
  }

  .article-content h2 {
    font-size: 1.3rem;
  }
}

/* --- Overlay for mobile nav --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
}

.nav-overlay.show {
  display: block;
}