/* France Voyage Découverte — Travel guide stylesheet v3.0
   Palette: Coral orange + warm sand + teal accents
   Typography: Poppins sans + Playfair Display serif
   Layout: Modern card-based with rounded corners */

:root {
  --primary: #e85d75;
  --primary-dark: #d63d5a;
  --primary-light: #ff8fa3;
  --secondary: #008b8b;
  --secondary-dark: #006666;
  --accent: #ffb347;
  --ink: #1a1a2e;
  --soft-ink: #3a3a4e;
  --muted: #6b6b7b;
  --line: #e0e0e8;
  --paper: #fffef9;
  --wash: #f8f5f0;
  --coral-soft: #fff0f3;
  --teal-soft: #e8f8f8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 { 
  font-family: var(--serif); 
  font-weight: 600; 
  line-height: 1.3;
  color: var(--ink);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ====== TOP BAR ====== */
.top-bar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links a {
  color: #fff;
  margin-left: 20px;
  opacity: 0.9;
}

.top-bar-links a:hover { opacity: 1; }

/* ====== HEADER ====== */
.main-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.logo-icon {
  font-size: 32px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--soft-ink);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.main-nav a:hover::after { width: 100%; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
}

/* ====== HERO SECTION ====== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-section h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #fff;
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--wash);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--serif);
}

.stat-label {
  font-size: 14px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== SECTIONS ====== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ====== DESTINATION CARDS ====== */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.destination-card.featured {
  grid-column: span 2;
}

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-image.paris {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-image.cote-azur {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-image.loire {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-image.provence {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.card-content {
  padding: 24px;
}

.card-category {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content h3 a {
  color: var(--ink);
}

.card-content h3 a:hover {
  color: var(--primary);
}

.card-content p {
  font-size: 15px;
  color: var(--soft-ink);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}

/* ====== GUIDES GRID ====== */
.guides-section {
  background: var(--wash);
  border-radius: var(--radius-lg);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guide-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.guide-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.guide-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
}

.guide-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.guide-links {
  list-style: none;
  text-align: left;
}

.guide-links li {
  margin-bottom: 10px;
}

.guide-links a {
  font-size: 14px;
  color: var(--soft-ink);
  padding-left: 16px;
  position: relative;
}

.guide-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ====== SEASONS ====== */
.seasons-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.season-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.season-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.season-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.season-icon { font-size: 20px; }

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.season-card {
  background: var(--teal-soft);
  padding: 32px;
  border-radius: var(--radius-md);
}

.season-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-dark);
}

.season-card p {
  font-size: 15px;
  color: var(--soft-ink);
  line-height: 1.6;
}

/* ====== NEWSLETTER ====== */
.newsletter-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 80px 0;
}

.newsletter-box {
  background: #fff;
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.newsletter-box h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.newsletter-box p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--line);
  border-radius: 50px;
  font-size: 16px;
  font-family: var(--sans);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-note {
  font-size: 13px;
  color: var(--muted);
}

/* ====== FOOTER ====== */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-note {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 12px;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.6;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .destination-grid, .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-card.featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-section h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 28px; }
  .destination-grid, .guides-grid, .season-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .section-header h2 { font-size: 32px; }
}
