/* Favorite Tours Armenia – clean, warm, modern */
:root {
  --bg: #faf7f2;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #c45c26;
  --accent-dark: #8b3a1a;
  --border: #e8e0d5;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(0,0,0,0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

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

a:hover {
  text-decoration: underline;
}

/* Header / Hero */
.hero {
  background: linear-gradient(160deg, #1a1a1a 0%, #2d1f14 50%, #3d2a1a 100%);
  color: #fff;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1.5" fill="%23ffffff15"/><circle cx="70" cy="60" r="1" fill="%23ffffff10"/><circle cx="40" cy="80" r="1.2" fill="%23ffffff12"/></svg>');
  opacity: 0.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: #fff;
  font-weight: 500;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
  text-decoration: none;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 5%;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  max-width: 800px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 4.5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* Tour cards */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.tour-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.tour-image {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.badge {
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.tour-body {
  padding: 1.5rem;
}

.tour-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.tour-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tour-body ul {
  list-style: none;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.tour-body li {
  padding: 0.2rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.tour-body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.link {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Videos section */
.videos {
  background: #f0ebe3;
  border-radius: var(--radius);
  margin: 2rem 5%;
  max-width: none;
  text-align: center;
}

.video-placeholder {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.play-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.video-placeholder p {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.video-placeholder small {
  opacity: 0.6;
}

/* About */
.about {
  text-align: center;
}

.about p {
  max-width: 640px;
  margin: 0 auto 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem 5%;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--muted);
}

footer a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 700px) {
  nav ul {
    gap: 1.2rem;
    font-size: 0.9rem;
  }

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

  section {
    padding: 3rem 1.25rem;
  }

  .videos {
    margin: 1rem;
  }
}
