/* Pookette.net - Cute & Playful Theme */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

/* CSS Variables for easy customization */
:root {
  --pink: #ffb6c1;
  --pink-light: #ffe4e9;
  --lavender: #e6e6fa;
  --mint: #98fb98;
  --mint-light: #f0fff0;
  --cream: #faf8f4;
  --text-dark: #4a4a4a;
  --text-light: #777;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
  min-height: 100vh;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Navigation */
nav {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: var(--pink-light);
  color: #d4849a;
  transform: translateY(-2px);
}

nav a.active {
  background: var(--pink);
  color: white;
}

/* Main Content */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Cards */
.card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

/* Home Page Hero */
.hero {
  text-align: center;
  padding: 3rem 2rem;
}

.hero h1 {
  font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
  font-size: 4rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.hero-links a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--pink);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-links a:hover {
  background: #f9a0b0;
  transform: scale(1.05);
}

/* Glossary Styles */
.glossary-entry {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px var(--shadow);
  border-left: 4px solid var(--pink);
}

.glossary-entry .term {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.glossary-entry .definition {
  color: var(--text-light);
  font-size: 1.05rem;
}

.glossary-entry .example {
  margin-top: 0.5rem;
  font-style: italic;
  color: #999;
}

.dictionary-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.dictionary-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item .caption {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
}

.gallery-placeholder {
  background: var(--lavender);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 3rem;
}

/* Cat Page Styles */
.cat-showcase {
  text-align: center;
}

.cat-showcase img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-hover);
  margin-bottom: 1.5rem;
}

.cat-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cat-description {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    gap: 1rem;
  }

  nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  main {
    padding: 1rem;
  }
}
