@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Lora:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root {
  --navy: #1a1a2e;
  --navy-dark: #0f0f1a;
  --gold: #d4af37;
  --cream: #f5f0e0;
  --cream-light: #faf7f0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #e0d8c8;
  --text-muted: #888;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lora', Georgia, 'Times New Roman', serif; color: var(--text-dark); line-height: 1.7; background: var(--white); }

a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: #e8c84a; text-decoration: underline; }

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

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.3; }

/* ── HEADER / NAVIGATION ── */
.site-header {
  background: var(--navy-dark);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-logo img { width: 50px; height: auto; }

nav { display: flex; align-items: center; }

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  justify-content: center;
}

nav ul li a {
  color: var(--text-light);
  font-family: 'Lora', serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  display: block;
  transition: color .3s;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--gold);
  text-decoration: none;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 8px 20px !important;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-cta:hover {
  background: #e8c84a;
  color: var(--navy-dark) !important;
  text-decoration: none !important;
}

.social-icons { display: flex; gap: 15px; align-items: center; }
.social-icons a { color: var(--text-light); font-size: 18px; }
.social-icons a:hover { color: var(--gold); }

.cart-icon { color: var(--text-light); font-size: 20px; margin-left: 15px; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; }

/* ── MARQUEE / TICKER ── */
.marquee-wrapper {
  background: var(--navy);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.marquee-text {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
}

@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,15,26,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero h2 {
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 30px;
}

.hero p { font-size: 18px; line-height: 1.8; color: var(--cream); }

/* ── CONTENT SECTIONS ── */
.section { padding: 80px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--text-light); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--gold); }
.section--navy a { color: var(--gold); }

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: 700;
}

.section-subtitle em { font-style: italic; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col .text-col h2 { font-size: 30px; margin-bottom: 10px; }
.two-col .text-col h3 { font-size: 18px; margin-bottom: 20px; font-weight: 400; }
.two-col .text-col p { margin-bottom: 15px; font-size: 16px; line-height: 1.8; }

.two-col .image-col img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ── CONTENT TEXT BLOCKS ── */
.content-block { max-width: 900px; margin: 0 auto; }
.content-block h2 { font-size: 32px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.content-block h3 { font-size: 20px; margin-bottom: 20px; font-weight: 400; font-style: italic; text-transform: uppercase; letter-spacing: 1px; }
.content-block p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.content-block img { margin: 30px auto; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

.content-block .inline-images {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.content-block .inline-images img { flex: 1 1 300px; max-width: 48%; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 35px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.btn:hover { background: #e8c84a; text-decoration: none; color: var(--navy-dark); }

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

.btn--outline:hover { background: var(--gold); color: var(--navy-dark); }

/* ── IMAGE GALLERY (Multimedia/Publicity) ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 20px 15px 15px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .caption { opacity: 1; }

/* Page title for inner pages */
.page-title-section {
  background: var(--navy);
  padding: 60px 20px;
  text-align: center;
}

.page-title-section h1 {
  font-size: 42px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-title-section .subtitle {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* ── HISTORY INFOGRAPHIC ── */
.history-section { text-align: center; padding: 60px 20px; }
.history-section h2 { font-size: 36px; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 4px; }
.history-section img { max-width: 100%; margin: 0 auto; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: var(--text-light);
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(212,175,55,0.3);
}

.footer-social { display: flex; justify-content: center; gap: 25px; margin-bottom: 20px; }
.footer-social a { color: var(--text-light); font-size: 22px; }
.footer-social a:hover { color: var(--gold); }

.site-footer p { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; }

/* ── BOOK SECTION (dark bg with image) ── */
.book-section {
  background: var(--navy);
  color: var(--text-light);
  padding: 80px 20px;
}

.book-section .two-col { align-items: start; }

.book-section h2, .book-section h3 { color: var(--gold); }
.book-section h2 { font-size: 28px; margin-bottom: 5px; }
.book-section h3 { font-size: 18px; font-weight: 400; font-style: italic; margin-bottom: 15px; }
.book-section p { font-size: 16px; line-height: 1.8; margin-bottom: 15px; }

/* ── HISTORY CHANNEL SECTION ── */
.hc-section {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hc-section .hc-inner { position: relative; z-index: 2; }
.hc-section img { max-width: 300px; margin: 0 auto 20px; }
.hc-section h2 { color: var(--white); font-size: 26px; margin-bottom: 20px; }

/* ── FOLLOW US / SOCIAL IMAGES ── */
.follow-section { text-align: center; padding: 60px 20px; }
.follow-section h2 { font-size: 28px; margin-bottom: 30px; color: var(--navy); }
.follow-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.follow-images img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ── HORIZONTAL RULE ── */
hr {
  border: none;
  border-top: 1px solid var(--gold);
  max-width: 100px;
  margin: 30px auto;
  opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col--reverse { direction: ltr; }
  .hero h1 { font-size: 32px; }
  .section { padding: 50px 15px; }
  nav ul { flex-direction: column; gap: 5px; }
  .header-inner { flex-direction: column; gap: 15px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

@media (max-width: 600px) {
  .hero { min-height: 60vh; }
  .hero h1 { font-size: 26px; }
  .hero h2 { font-size: 18px; }
  .section-title { font-size: 26px; }
  .marquee-text { font-size: 16px; }
  .menu-toggle { display: block; }
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; width: 100%; }
}
