/* Purple Dragon - Modern Pride-Inspired Design */

:root {
  /* Primary Purple Gradient (evolved from original #790153) */
  --primary-900: #4a0330;
  --primary-800: #6b044a;
  --primary-700: #8b0560;
  --primary-600: #a91277;
  --primary-500: #c72c8f;
  --primary-400: #d855a8;
  --primary-300: #e87fc1;
  --primary-200: #f3a9d9;
  --primary-100: #f8d3ed;
  --primary-50: #fcedf8;

  /* Accent Coral (complementary to purple) */
  --accent-600: #ff6b9d;
  --accent-500: #ff8ab3;
  --accent-400: #ffa9c8;

  /* Neutrals with warmth */
  --gray-900: #2d2d3a;
  --gray-800: #3f3f4f;
  --gray-700: #555566;
  --gray-600: #6e6e7d;
  --gray-500: #8a8a99;
  --gray-400: #a8a8b5;
  --gray-300: #c6c6d0;
  --gray-200: #e4e4e8;
  --gray-100: #f2f2f5;
  --gray-50: #f9f9fb;

  /* Semantic */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-max: 1200px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(139, 5, 96, 0.08);
  --shadow-md: 0 4px 16px rgba(139, 5, 96, 0.12);
  --shadow-lg: 0 8px 32px rgba(139, 5, 96, 0.16);
  --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-500) 0%, var(--primary-500) 100%);
  --gradient-light: linear-gradient(180deg, var(--primary-50) 0%, #ffffff 100%);
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-800);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.25rem;
  color: var(--primary-700);
}

h3 {
  font-size: 1.75rem;
  color: var(--primary-600);
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

strong {
  font-weight: 600;
  color: var(--gray-900);
}

em {
  font-style: italic;
  color: var(--gray-700);
}

/* Header */
.site-header {
  background: var(--gradient-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  letter-spacing: -0.5px;
}

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

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
  border-bottom-color: var(--accent-400);
  color: var(--primary-100);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--gradient-light);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.35rem;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.btn-outline {
  border-color: var(--primary-600);
  color: var(--primary-700);
  background: #ffffff;
}

.btn-outline:hover {
  background: var(--primary-600);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Content Sections */
.content-section {
  padding: var(--section-padding);
}

.section-light {
  background: #ffffff;
}

.section-alt {
  background: var(--gradient-light);
}

.section-dark {
  background: var(--gray-900);
  color: var(--gray-200);
}

.section-dark h2 {
  color: var(--primary-300);
}

.section-dark p {
  color: var(--gray-300);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* Destination Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.destination-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

.destination-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.destination-card-content {
  padding: 1.75rem;
}

.destination-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-700);
}

.destination-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.destination-card .btn {
  width: 100%;
}

/* Feature Boxes */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid var(--gray-100);
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.feature-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 0;
}

/* Image with Text Sections */
.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.image-text-section img {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.image-text-section.reverse {
  direction: rtl;
}

.image-text-section.reverse > * {
  direction: ltr;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-section h4 {
  color: var(--primary-300);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section a {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--primary-300);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-800);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.active {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--primary-700);
  }

  .image-text-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.85rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }
}
