@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}

a:hover {
  color: #FFC000;
}

/* Section shared */
section, footer {
  padding: 60px 5%;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
}

/* ======================== */
/*        Hero Section       */
/* ======================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 5% 60px;
}

.hero-label {
  font-size: 0.95rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: #E97132;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-image {
  max-width: 160px;
  margin-bottom: 24px;
}

.hero-image img {
  width: 100%;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #E97132;
  text-transform: uppercase;
  font-weight: 600;
}

/* ======================== */
/*       Book Sections       */
/* ======================== */
.book-section {
  padding: 60px 5%;
}

.book-card {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.book-card.reverse {
  flex-direction: row;
}

.book-image {
  flex: 0 0 21%;
  max-width: 21%;
}

.book-image img {
  width: 100%;
  border-radius: 4px;
}

.book-info {
  flex: 1;
}

.book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFC000;
  margin-bottom: 6px;
}

.book-author {
  font-size: 0.95rem;
  color: #7F7F7F !important;
  font-style: italic;
  margin-bottom: 28px;
}

.book-info p {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
}

.btn-buy {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 30px;
  background-color: #E97132;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn-buy:hover {
  background-color: #FFC000;
  color: #000;
}

/* ======================== */
/*      Photo Gallery        */
/* ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0px;
  margin-bottom: 40px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}

/* ======================== */
/*      About Section        */
/* ======================== */
.about-section {
  padding: 60px 5%;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.8;
}

.about-content em {
  font-style: italic;
}

.about-welcome {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 24px;
}

/* ======================== */
/*      AI Sections          */
/* ======================== */
.ai-section {
  padding: 60px 5%;
}

.ai-image {
  max-width: 240px;
  margin-bottom: 24px;
}

.ai-image img {
  width: 100%;
  border-radius: 4px;
}

.ai-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.8;
}

/* ======================== */
/*      Coming Soon          */
/* ======================== */
.coming-soon-section {
  padding: 60px 5%;
}

.coming-soon-section .section-heading {
  margin-bottom: 20px;
}

.coming-soon-image {
  max-width: 50%;
}

.coming-soon-image img {
  width: 100%;
  border-radius: 4px;
}

/* ======================== */
/*         Footer            */
/* ======================== */
.contact-section {
  padding: 60px 5% 80px;
}

.contact-name {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}

.contact-email {
  margin-bottom: 14px;
}

.contact-email a {
  font-size: 1.1rem;
  color: #fff;
  text-decoration: underline;
}

.contact-link {
  color: #fff;
  font-size: 1rem;
}

.contact-link a {
  color: #fff;
  text-decoration: underline;
}

/* ======================== */
/*       Responsive          */
/* ======================== */
@media (max-width: 1024px) {
  .hero-name {
    font-size: 3.5rem;
  }

  .book-card,
  .book-card.reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-image {
    flex: 0 0 auto;
    max-width: 80%;
  }

}

@media (max-width: 600px) {
  section, footer {
    padding: 40px 5%;
  }

  .hero-name {
    font-size: 2.4rem;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .book-info p {
    font-size: 1.05rem;
  }

  .book-image {
    max-width: 100%;
  }
}
