/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* ===== COMMON PAGE ELEMENTS ===== */
.section-nav {
  margin-bottom: 40px;
}

.content-section {
  margin: 60px 0;
}

.content-section h2,
.content-block h2,
.section .container > div h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px !important;
  color: #2c2c2c;
  margin-bottom: 24px;
  font-weight: 600;
}

.content-block {
  margin-bottom: 50px;
}

.content-block:first-of-type {
  margin-top: 0;
}

.content-block h3 {
  font-size: 20px;
  color: var(--accent-wine);
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.content-block p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-block ul {
  margin: 20px 0;
  padding-left: 20px;
}

.content-block li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

/* ===== TOUR CARDS ===== */
.tour-card {
  background: white;
  padding: 30px;
  border-left: 4px solid #d4af37;
  margin-bottom: 30px;
  border-radius: 3px;
}

.tour-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.tour-card ul {
  list-style: none;
  padding: 0;
}

.tour-card li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.tour-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.tour-card-details {
  padding-left: 30px;
  margin-top: 10px;
}

.tour-card-details p {
  color: #555;
  margin: 8px 0;
}

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(212, 175, 55, 0.08);
  padding: 40px;
  border-left: 4px solid #d4af37;
  border-radius: 4px;
  margin-top: 40px;
}

.info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.info-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== PAGE NAVIGATION ===== */
.page-navigation {
  margin-top: 60px;
  text-align: center;
}

.page-navigation p {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
}

.page-navigation a {
  color: var(--accent-wine, #722f37);
  text-decoration: underline;
  font-weight: 600;
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-block;
  padding: 14px 42px;
  background: linear-gradient(135deg, #722f37, #6b3a52);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3);
}

/* ===== CATEGORY FILTER BUTTONS ===== */
.category-filter-btn:hover {
  background: #7d6d4d !important;
  border-color: #7d6d4d !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 136, 96, 0.3);
}

.category-filter-btn.active {
  background: #9b8860 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(155, 136, 96, 0.4);
}

.category-filter-btn:not(.active) {
  background: white !important;
  color: #9b8860 !important;
}

/* ===== NAVIGATION ACTIVE STATE ===== */
.nav__link--active {
  color: var(--accent-wine, #722f37);
}
