
/* ================= HERITAGE HERO ================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");
@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext");
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quintessential&display=swap');




* {
  font-family: "Quintessential", serif; 
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;

  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.heritage-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url("2A.jpg") center center / cover no-repeat;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  overflow: hidden;
}






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

.heritage-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
}

.heritage-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.heritage-hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 32px;
}

.heritage-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.heritage-btn {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.heritage-btn.primary {
  background: #f4c430;
  color: #000;
  font-weight: 600;
}

.heritage-btn.primary:hover {
  background: #ffd95a;
  transform: translateY(-2px);
}

.heritage-btn.outline {
  border: 1.5px solid #fff;
  color: #fff;
}

.heritage-btn.outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .heritage-hero {
    min-height: 80vh;
  }

  .heritage-hero p {
    font-size: 16px;
  }
}


/* ================= HERITAGE OVERVIEW SECTION ================= */

.heritage-overview {
  padding: 100px 20px;
  background: #f7f7f7;
}

.heritage-overview-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.heritage-subtitle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;

  color: #8a6d3b;
  margin-bottom: 14px;
}

.heritage-overview-text h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
  line-height: 1.2;
  color: #1e1e1e;
}

.heritage-overview-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.heritage-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: #1a4d5c;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.heritage-link:hover {
  border-color: #1a4d5c;
}

/* Right image */
.heritage-overview-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .heritage-overview-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .heritage-overview {
    padding: 70px 20px;
  }
}


/* ================= STICKY SIDE NAV ================= */

.heritage-side-nav {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 999;
}

.heritage-side-nav ul {
  list-style: none;
  padding: 14px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.heritage-side-nav li {
  margin: 10px 0;
}

.heritage-side-nav a {
  font-size: 14px;
  color: #1a4d5c;
  text-decoration: none;
  font-weight: 600;
}

.heritage-side-nav a:hover {
  text-decoration: underline;
}

/* Hide on mobile */
@media(max-width: 900px) {
  .heritage-side-nav {
    display: none;
  }
}


/* ================= HERITAGE ITEM ================= */

.heritage-item {
  padding: 100px 20px;
}

.heritage-item-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.heritage-item.reverse .heritage-item-inner {
  direction: rtl;
}

.heritage-item.reverse .heritage-content {
  direction: ltr;
}

.heritage-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.heritage-era {

  font-size: 13px;
  letter-spacing: 2px;
  color: #8a6d3b;
}

.heritage-content h2 {
  font-size: 36px;
  margin: 12px 0;
}

.heritage-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

@media(max-width: 900px) {
  .heritage-item-inner {
    grid-template-columns: 1fr;
  }
}


/* ================= TIMELINE ================= */

.heritage-timeline {
  padding: 100px 20px;
  background: #0f2e38;
  color: white;
  text-align: center;
}

.heritage-timeline h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.timeline {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 30px;
}

.timeline-item {
  padding: 25px;
  border-left: 4px solid #f4c430;
  background: rgba(255,255,255,0.08);
  text-align: left;
}

.timeline-item span {
  font-weight: bold;
  font-size: 18px;
}


/* ================= MAP ================= */

.heritage-map {
  padding: 80px 20px;
  text-align: center;
}

.heritage-map h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.heritage-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  border: none;
}

/* ================= HERITAGE HERO ================= */

.heritage-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
  background: #1a1a1a; /* fallback behind image */
}

/* Background Image */
.heritage-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* change to contain for full no-crop */
  object-position: center top;
  opacity: 0.85;
  z-index: 1;
}

/* Dark gradient overlay for readability */
.heritage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 2;
}

.heritage-hero-content {
  position: relative;
  max-width: 850px;
  z-index: 3;
  color: #fff;
}

.heritage-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.heritage-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.heritage-hero-content p {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.95;
  max-width: 750px;
  margin: 0 auto;
}

.heritage-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.heritage-btn {
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

.heritage-btn.primary {
  background: #f4c430;
  color: #000;
}

.heritage-btn.primary:hover {
  background: #ffd95a;
}

.heritage-btn.outline {
  border: 1.5px solid #fff;
  color: #fff;
  background: transparent;
}

.heritage-btn.outline:hover {
  background: rgba(255,255,255,0.15);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1024px) {
  .heritage-hero {
    height: 75vh;
  }
}

@media(max-width: 768px) {
  .heritage-hero {
    height: 65vh;
  }
  .heritage-hero-content h1 {
    font-size: 32px;
  }
  .heritage-hero-content p {
    font-size: 16px;
  }
}

@media(max-width: 480px) {
  .heritage-hero {
    height: 60vh;
  }
}
