/* Baby Besa Website Styles */
/* Premium Luxury Branding: Warm Rust & Sophisticated Accents */

:root {
  /* Premium Luxury Rust Color Palette */
  --primary-orange: #e6753c;
  --primary-orange-light: #f0ad7e;
  --primary-orange-lighter: #f8d4c2;
  --primary-orange-dark: #c85a2c;
  --primary-orange-darker: #a0461f;

  /* Luxury Accents */
  --accent-gold: #d4af37;
  --accent-sage: #8fa69f;
  --accent-cream: #fdf7f3;

  /* Text & Neutral */
  --amazon-color: #FF9900;
  --text-dark: #2d2d2d;
  --text-light: #666666;
  --white: #FFFFFF;
  --bg-light: #fdf7f3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, var(--primary-orange-lighter) 0%, var(--primary-orange-light) 100%);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(230, 117, 60, 0.15);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1) rotate(5deg);
}

.logo-text h1 {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin: 0;
  font-weight: 700;
}

.logo-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

.nav-links a:hover {
  color: var(--primary-orange-dark);
  background-color: rgba(230, 117, 60, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--accent-cream) 0%, var(--primary-orange-lighter) 50%, var(--primary-orange-light) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--primary-orange-dark);
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 0.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(230, 117, 60, 0.35);
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50px;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(230, 117, 60, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange-dark);
}

.btn-secondary:hover {
  background: var(--primary-orange-lighter);
  color: var(--primary-orange-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(230, 117, 60, 0.2);
}

.btn-amazon {
  background: linear-gradient(135deg, var(--amazon-color) 0%, #e68900 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

.btn-amazon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange-dark);
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(230, 117, 60, 0.3);
}

/* Featured Book Section */
.featured-book {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 3rem;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--primary-orange);
  margin: 1rem auto;
  border-radius: 2px;
}

.book-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.book-image {
  text-align: center;
}

.book-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.book-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

.book-details h3 {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

.book-details h4 {
  font-size: 1.5rem;
  color: var(--primary-orange-dark);
  margin-bottom: 1.5rem;
}

.book-details p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.features {
  list-style: none;
  margin: 2rem 0;
}

.features li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 1.3rem;
}

.book-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Coming Soon Books */
.coming-soon {
  padding: 4rem 2rem;
  background: var(--white);
}

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

.book-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(230, 117, 60, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 117, 60, 0.1);
}

.book-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(230, 117, 60, 0.2);
  border-color: rgba(230, 117, 60, 0.3);
}

.book-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.book-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  box-shadow: 0 6px 20px rgba(230, 117, 60, 0.35);
  position: relative;
}

.coming-soon-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 25px;
}

/* Values Section */
.values-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(230, 117, 60, 0.08);
  border-top: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(230, 117, 60, 0.2);
  border-top-color: var(--primary-orange);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #444444 100%);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: #cccccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555555;
  color: #999999;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-orange-lighter) 0%, var(--primary-orange-light) 100%);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    padding: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

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

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

  .book-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .book-actions {
    flex-direction: column;
  }
}

/* Page-specific styles */
.page-header {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--primary-orange-lighter) 0%, var(--primary-orange-light) 100%);
  padding: 3rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Music Notes Animation */
.music-note {
  display: none;
}
