body {
  font-family: 'Lato', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Hero Banner Styles */
.hero-banner {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-banner h1 {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #92400e;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  letter-spacing: 0.02em;
}

.hero-banner p {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  color: #92400e;
  letter-spacing: 0.02em;
}

.photo-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.photo-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Navbar enhancements */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar a {
  position: relative;
  transition: color 0.3s ease;
}

.navbar a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ec4899, #f97316);
  border-radius: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 3rem !important;
  }
  
  .hero-banner p {
    font-size: 1.25rem !important;
  }
  
  .photo-container {
    aspect-ratio: 1;
  }
}

@media (max-width: 480px) {
  .hero-banner h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-banner p {
    font-size: 1.1rem !important;
  }
}

/* About Page Styles */
.about-page {
  min-height: 100vh;
  background: #ec4899;
}

.about-banner {
  background: #7f1d1d;
  color: white;
  padding: 2rem;
  border-radius: 0 12px 12px 0;
}

.about-banner h1 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  margin: 0;
}

.about-content {
  background: #fce7f3;
  padding: 2rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.about-content h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  color: #7f1d1d;
  margin-bottom: 2rem;
}

.about-content p {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #7f1d1d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-photo {
  background: #ec4899;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

.about-photo-img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
  max-width: 400px;
}

.about-photo-img:hover {
  transform: scale(1.02);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
  .about-banner h1 {
    font-size: 2rem !important;
  }
  
  .about-content h2 {
    font-size: 2rem !important;
  }
  
  .about-content p {
    font-size: 1rem !important;
  }
}

.hero {
  background: #ffe4ef;
  padding: 48px 0 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  display: flex;
  align-items: center;
  max-width: 900px;
  width: 100%;
  gap: 40px;
}
.author-photo img {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(233,30,99,0.15);
  width: 180px;
  height: 220px;
  object-fit: cover;
}
.hero-text {
  max-width: 500px;
}
.author-name {
  font-size: 2.5rem;
  margin: 0 0 8px 0;
  font-family: 'Playfair Display', serif;
}
.tagline {
  font-size: 1.3rem;
  margin: 0 0 16px 0;
  font-weight: 600;
}
.welcome-message {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.btn-pink {
  background: #e91e63;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
  display: inline-block;
}
.btn-pink:hover {
  background: #ad1457;
}

.featured-books {
  background: #fff;
  padding: 40px 0 32px 0;
  text-align: center;
}
.featured-books h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: #e91e63;
}
.books-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.book-card {
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(233,30,99,0.07);
  padding: 16px 12px 20px 12px;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.book-card img {
  border-radius: 8px;
  margin-bottom: 12px;
  width: 120px;
  height: 180px;
  object-fit: cover;
}
.book-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-section {
  display: flex;
  justify-content: center;
  gap: 48px;
  background: #fce4ec;
  padding: 32px 0;
  margin-top: 24px;
}
.info-section > div {
  flex: 1 1 200px;
  max-width: 260px;
}
.about h3, .instagram h3, .search h3 {
  color: #e91e63;
  margin-bottom: 10px;
}
.insta-grid {
  display: flex;
  gap: 8px;
}
.insta-grid img {
  border-radius: 8px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.search input[type="text"] {
  width: 100%;
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
}
.search-quote {
  font-style: italic;
  color: #ad1457;
  font-size: 0.95rem;
}

.footer {
  background: #222;
  color: #fff;
  padding: 18px 0;
  text-align: center;
  margin-top: 0;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-socials {
  color: #e91e63;
  font-weight: bold;
} 