/* ========================================= */
/* --- GENERAL & UTILITY STYLES --- */
/* ========================================= */
/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #03362F;
  font-family: 'Montserrat', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* ========================================= */
/* --- NAVIGATION & HERO SECTION --- */
/* ========================================= */
/* Navbar */
nav {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

nav li {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 1px;
}

nav li.logo {
  font-weight: bold;
  font-size: 20px;
  color: #D4AC87;
}

nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #B58B5E;
}

/* Main Hero */
main {
  position: relative;
  text-align: center;
  padding: 60px 0;
}

.image-container {
  position: relative;
  z-index: 1;
}

.image-container img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  opacity: 0;
  animation: zoomIn 1.2s ease-out forwards, float 4s ease-in-out infinite alternate;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-container img:hover {
  transform: scale(0.83) translateY(-5px);
  box-shadow: 0 15px 50px rgba(181, 139, 94, 0.6);
}

.name-overlay {
  position: absolute;
  top: 150px;
  width: 100%;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  letter-spacing: 10px;
  color: transparent;
  -webkit-text-stroke: 1.5px #D4AC87;
  z-index: 1;
  pointer-events: none;
  transform: scale(0.9);
  opacity: 0;
  animation: zoomInText 1.4s ease-out forwards;
  animation-delay: 0.3s;
}

/* Tagline */
.tagline {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.tagline p {
  margin: 4px 0;
}

.tagline .underline {
  border: 1px solid white;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 15px;
}

/* ========================================= */
/* --- MAIN CONTENT & SECTIONS --- */
/* ========================================= */
/* Container & Background Image */
.container {
  position: relative;
  width: 100vw;
  height: 600px;
  overflow: hidden;
}

.container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  color: #c2b8aa;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.text-overlay .highlight {
  color: #b58b5e;
}

.text-overlay em {
  font-style: italic;
}

.learn-more {
  display: block;
  margin-top: 15px;
  color: #b58b5e;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.learn-more:hover {
  transform: scale(1.05);
}

/* Books */
.book-section {
  background-color: #043027;
  color: #a0b4ad;
  padding: 40px 20px;
}

.book-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.book-cover {
  width: 300px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.book-cover:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(181, 139, 94, 0.7);
  filter: brightness(1.1);
}

.book-description {
  flex: 1;
}

.book-description h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #39574a;
  padding-bottom: 8px;
  margin-bottom: 20px;
  color: #39574a;
}

.book-description p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
  color: #b0c1b9;
}

.buy-now {
  color: #b58b5e;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.buy-now:hover {
  transform: scale(1.05);
  text-decoration: underline;
}

/* ========================================= */
/* --- FOOTER SECTIONS --- */
/* ========================================= */
/* Newsletter */
.newsletter {
  background: #022B23;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #195140;
  transition: background 0.3s ease;
}

.newsletter:hover {
  background: #03362F;
}

.newsletter h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #39574a;
}

.newsletter h2 {
  font-family: 'Times New Roman', serif;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 25px;
  color: #b58b5e;
  transition: color 0.3s ease;
}

.newsletter:hover h2 {
  color: #ffcc70;
}

.newsletter form input[type="text"],
.newsletter form input[type="email"] {
  background-color: #03362F;
  border: 1px solid #b58b5e;
  padding: 10px 15px;
  margin: 5px 10px;
  border-radius: 30px;
  color: #fff;
  font-style: italic;
  width: 220px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.newsletter form input:hover,
.newsletter form input:focus {
  border-color: #ffcc70;
  box-shadow: 0 0 10px rgba(255,204,112,0.6);
  outline: none;
}

.newsletter form button {
  background: linear-gradient(135deg, #ffb347, #ffcc70);
  color: #043027;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.newsletter form button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(255,179,71,0.6);
  filter: brightness(1.15);
}

/* Instagram link */
.instagram {
  text-align: center;
  padding: 40px 20px;
}

.instagram-link {
  color: #b58b5e;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, letter-spacing 0.3s ease, color 0.3s ease;
}

.instagram-link:hover {
  transform: scale(1.08);
  letter-spacing: 3px;
  color: #ffcc70;
}

/* Footer Navigation */
.navigate {
  text-align: center;
  padding: 40px 20px;
}

.navigate ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  columns: 2;
  column-gap: 50px;
  font-style: italic;
  font-family: 'Times New Roman', serif;
  font-size: 18px;
  color: #b0c1b9;
}

.navigate ul li {
  margin-bottom: 12px;
}

.navigate ul li a {
  color: #b0c1b9;
  text-decoration: none;
}

.navigate ul li a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #195140;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  color: #607c6b;
  font-family: 'Montserrat', sans-serif;
}

/* ========================================= */
/* --- ANIMATIONS & RESPONSIVE DESIGN --- */
/* ========================================= */
/* Animations */
@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes zoomInText {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  nav ul { gap: 20px; font-size: 14px; }
  nav li.logo { font-size: 18px; }
  .image-container img { width: 220px; height: 280px; }
  .name-overlay { font-size: 40px; letter-spacing: 3px; top: 100px; -webkit-text-stroke: 0.8px #D4AC87; }
  .container { height: 400px; }
  .text-overlay { width: 90%; font-size: 16px; line-height: 1.4; }
  .learn-more { font-size: 12px; letter-spacing: 1px; }
  .book-container { flex-direction: column; align-items: center; text-align: center; }
  .book-cover { width: 200px; margin-bottom: 20px; }
  .book-description { font-size: 14px; }
  .newsletter h2 { font-size: 24px; }
  .newsletter form input[type="text"], .newsletter form input[type="email"] { font-size: 14px; width: 100%; margin: 8px 0; }
  .newsletter form button { width: 100%; padding: 10px 0; }
  .instagram-link { font-size: 14px; padding-top: 20px; }
  .navigate ul { columns: 1; font-size: 16px; }
}