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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========== Navbar ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #1a1a2e;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e6a817;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e6a817;
}

/* ========== Hero ========== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 0 5%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #e6a817;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: #e6a817;
  color: #1a1a2e;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #c48d13;
  transform: translateY(-2px);
}

/* ========== Sections ========== */
.section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a2e;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #e6a817;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ========== Content Grid ========== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-card h3 {
  font-size: 1.3rem;
  color: #e6a817;
  margin-bottom: 0.8rem;
}

.content-card p {
  color: #555;
  font-size: 0.95rem;
}

/* ========== Section Backgrounds ========== */
.lions-section {
  background: linear-gradient(135deg, #f5f0e1, #fff);
}

.cats-section {
  background: linear-gradient(135deg, #e8f0f5, #fff);
}

/* ========== Comparison Table ========== */
.comparison-section {
  background: #1a1a2e;
  color: #fff;
}

.comparison-section .section-title {
  color: #e6a817;
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #16213e;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #0f3460;
}

.comparison-table th {
  background: #e6a817;
  color: #1a1a2e;
  font-weight: 700;
}

.comparison-table tr:hover {
  background: rgba(230, 168, 23, 0.1);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #e6a817;
}

/* ========== Gallery ========== */
.gallery-section {
  background: #f0f0f0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-placeholder {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lion-bg {
  background: linear-gradient(135deg, #c48d13, #8b6914);
}

.cat-bg {
  background: linear-gradient(135deg, #5a8a9a, #3d6b7a);
}

/* ========== Facts ========== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

.fact-card:hover {
  transform: translateY(-3px);
}

.fact-number {
  width: 50px;
  height: 50px;
  background: #e6a817;
  color: #1a1a2e;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.fact-card p {
  color: #555;
  font-size: 0.95rem;
}

/* ========== Footer ========== */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 3rem 5% 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.footer-section h3 {
  color: #e6a817;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-section ul a {
  color: #ccc;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-section ul a:hover {
  color: #e6a817;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #888;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-grid,
  .gallery-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }
}
