:root {
  --gold: #c9b47a;
  --dark: #0f0f0f;
  --mid: #1e1e1e;
  --light: #f8f7f5;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: #222;
  line-height: 1.7;
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(15,15,15,0.4);
  backdrop-filter: blur(10px);
  padding: 18px 18px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000;
  transition: background 0.4s;
}
header.scrolled { background: rgba(15,15,15,0.9); }
.logo {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}
nav {
  display: flex;
  align-items: center;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  transition: color .3s;
}
nav a:hover { color: var(--gold); }
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: all .3s;
}
@media(max-width:850px){
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(15,15,15,0.95);
    flex-direction: column;
    width: 100%;
    display: none;
    text-align: center;
    padding: 15px 0;
  }
  nav.open { display: flex; }
  nav a { margin: 12px 0; font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  header { padding: 15px 25px; }
}

/* ---------- HERO (Video) ---------- */
.hero {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}
.hero-video {
  opacity: 0;
}
.hero.loaded .hero-video {
  opacity: 1;
}
.hero.loaded .hero-img {
  opacity: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 850px;
  padding: 0 20px;
  animation: fadeIn 2s ease-out;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  paddin-left: 10px;
  padding-right: 10px;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
  border-color: var(--gold);
}


.hero p {
  font-size: 1.25rem;
  color: #eaeaea;
  max-width: 650px;
  margin: 0 auto;
}
.hero .divider {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 25px auto;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SECTIONS ---------- */
section { padding: 110px 20px; max-width: 1150px; margin:auto; }
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 70px;
  font-weight: 500;
  position: relative;
}
h2.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 15px auto 0;
}

/* ---------- PACKAGES ---------- */
.packages {
  display: grid;
  gap: 40px;
}
.package-card {
  background: white;
  border-radius: 14px;
  padding: 50px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  transition: transform .4s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.package-card:hover { transform: translateY(-5px); }
.package-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.package-info .price {
  font-weight: 500;
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.package-info p { color: #444; margin-bottom: 8px; }
.package-img img {
  width: 100%;
  border-radius: 10px;
  transition: transform .6s ease;
}
.package-card:hover img { transform: scale(1.04); }
@media(max-width:900px){
  .package-card { grid-template-columns: 1fr; text-align: center; padding:35px; }
}

/* ---------- ARTICLES ---------- */
.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}
.article {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform .3s;
}
.article:hover { transform: translateY(-4px); }
.article h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.article p { font-size: 0.95rem; color: #555; margin-bottom: 10px; }
.article a { color: var(--gold); text-decoration: none; font-weight: 500; }


:root {
  --gold: #c9b47a;
  --dark: #0f0f0f;
  --mid: #1e1e1e;
  --light: #f8f7f5;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: #222;
  line-height: 1.7;
  margin: 0;
}


.all-articles-btn {
  display: inline-block;
  background: var(--dark, #0f0f0f);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1em;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.all-articles-btn:hover {
  background: var(--gold, #c9b47a);
  color: #000;
  transform: translateY(-2px);
}
.all-articles-btn i {
  margin-right: 8px;
}


/* HEADER */
header {
  position: sticky;
  top: 0;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(10px);
  padding: 18px 18px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000;
}


.logo a{
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-decoration: none;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
}
nav a:hover { color: var(--gold); }

/* CONTENT LAYOUT */
.main-content {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 26px auto;
  padding: 0 10px;
}
@media(max-width:900px){
  .main-content { grid-template-columns: 1fr; }
}

/* ARTICLE */
article {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}
article h1 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 15px;
}
article .meta {
  font-size: 0.95rem;
  color: #666;
}
article img {
  width: 100%;
  border-radius: 10px;
  margin: 25px 0;
}
article h2 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  margin-top: 35px;
  margin-bottom: 15px;
}
article p {
  margin-bottom: 15px;
  color: #333;
}
article ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
article ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
article ul li::before {
  content: "\f00d"; /* Font Awesome cross */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}
blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
  color: #444;
  margin: 25px 0;
}


/* PAKETID */

.small-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.small-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.small-hero .hero-content {
  position: absolute;
  z-index: 2;
}

.extra-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}
.extra-services .service {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  flex: 1 1 280px;
}
.extra-services i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
}
.extra-services h4 {
  margin-bottom: 8px;
  font-weight: 600;
}


.extra-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}
.extra-services .service {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  flex: 1 1 260px;
}
.extra-services i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 40px auto;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
}
.faq-answer {
  display: none;
  padding: 0 0 15px;
  color: #555;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  display: block;
}


/* SIDEBAR */
aside {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 25px;
  height: fit-content;
}
aside h3 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
aside .related-article {
  margin-bottom: 15px;
}
aside .related-article a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
aside .related-article a:hover {
  text-decoration: underline;
}

/* CTA SECTION */
.cta {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
  margin-top: 80px;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #ddd;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
  border-color: var(--gold);
}



/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 80px 20px;
  text-align: center;
}
.footer-inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-inner img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.footer-info { max-width: 500px; text-align: left; }
.footer-info h3 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.footer-info p { margin: 6px 0; color: #ccc; }
footer small {
  display: block;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}
footer a { color: var(--gold); text-decoration: none; }

@media(max-width:700px){
  .footer-inner { flex-direction: column; text-align:center; }
  .footer-info { text-align:center; }
}
