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


body {
  font-family: 'Inter', sans-serif;
  background: #0e0e0e;
  color: #e6e6e6;
  line-height: 1.6;
}


.site-header {
  background: #000;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}


.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  color: #dddddd;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: #ffffff;
}



.dropdown {
  position: relative;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 220px;
  padding: 6px 0;
  border: 1px solid #222;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  z-index: 99999;
}


.dropdown:hover .dropdown-menu {
  display: block;
}


.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}


.dropdown-menu li a:hover {
  background: #222;
}


.hero {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 30px;
}



.hero-slideshow {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 60px;
  align-items: center;
  opacity: 0;
  animation: slideshow 16s infinite;
}


.slide1 { animation-delay: 0s; }
.slide2 { animation-delay: 4s; }
.slide3 { animation-delay: 8s; }
.slide4 { animation-delay: 12s; }

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-text h3 {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  color: #bbbbbb;
}

.hero-text p {
  max-width: 520px;
  margin-bottom: 25px;
  color: #cccccc;
}

.hero-btn {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-btn:hover {
  background: #ffffff;
  color: #000;
}


.hero-image img {
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}


@keyframes slideshow {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}


.current-titles {
  max-width: 1200px;
  margin: 100px auto 80px;
  padding: 0 30px;
}

.current-titles h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 30px;
  color: #ffffff;
  letter-spacing: 1px;
}

.titles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.titles-grid img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.titles-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}



.books-hero {
  padding: 100px 0 40px;
  text-align: center;
  background: #f3f3f1;
}

.books-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 3px;
  color: #222;
}

.books-page {
  padding: 60px 8%;
  background: #f7f7f5;
}

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

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

.book-card img {
  width: 100%;
  max-width: 180px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.book-card img:hover {
  transform: translateY(-6px);
}

.book-card h3 {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
}

.dropdown-menu {
  list-style: none;
}


.about-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 80px;
  align-items: start;
}

.about-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #ffffff;
}

.about-text p {
  margin-bottom: 22px;
  color: #cccccc;
  font-size: 15px;
  line-height: 1.8;
}

.about-text em {
  color: #ffffff;
  font-style: italic;
}


.about-image img {
  width: 100%;
  border: 6px solid #1a1a1a;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}


.site-footer {
  background: #000;
  border-top: 1px solid #222;
  margin-top: 120px;
  color: #ccc;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  color: #bbb;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 18px 20px;
  font-size: 12px;
  color: #777;
}


.contact-page {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 30px;
}

.contact-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-subtitle {
  margin-bottom: 40px;
  color: #bbbbbb;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cccccc;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #111;
  border: 1px solid #333;
  color: #ffffff;
  padding: 10px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.form-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.form-buttons input {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 26px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-buttons input:hover {
  background: #ffffff;
  color: #000;
}



.site-footer {
  border-top: 1px solid #222;
  margin-top: 120px;
  padding: 30px;
  text-align: center;
  font-size: 12px;
  color: #888;
}
/* =========================
   FAQ PAGE (BLACK THEME)
========================= */

.faq-page {
  background: #000;
  color: #fff;
  padding: 100px 40px;
  min-height: 100vh;
}

.faq-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 3px;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto 80px;
}

.faq-section h2 {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 25px;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
}

.faq-item {
  font-size: 16px;
  letter-spacing: 2px;
  padding: 18px 0;
  border-bottom: 1px solid #222;
  cursor: default;
  color: #ddd;
}

.faq-item:hover {
  color: #fff;
}
