/* ============================================
   🌿 SANTRI GABUT QUOTES THEME (Final Version)
   Modern-Card | Hijau–Emas–Coklat | Elegan & Ringan
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@600&family=Poppins:wght@400;600&display=swap');

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

/* ============================================
   VARIABEL WARNA
   ============================================ */
:root {
  --bg1: #0f2f25;               /* deep emerald black */
  --bg2: #124c3b;               /* emerald premium */
  --card-bg: rgba(255, 255, 255, 0.08);  /* glass premium */

  --accent: #17c56f;            /* emerald vibrant premium */
  --accent2: #c47b35;           /* rich copper luxury */

  --text: #f5f5f5;              /* premium soft white */
  --muted: #bfbfbf;             /* silver-muted */

  --bg-footer: #0b241d;         /* deeper emerald footer */
  --footer-text: #e8e5dd;       /* warm premium ivory */
}
/* versi light mode */
html.light {
  --bg1: #f8f6ef;               /* ivory premium */
  --bg2: #ffffff;               /* clean white */
  --card-bg: rgba(0, 0, 0, 0.04);

  --accent: #1faa59;            /* emerald soft premium */
  --accent2: #b46f3a;           /* copper luxury */

  --text: #1f1f1f;              /* graphite-black premium */
  --muted: #6d6d6d;             /* gray muted */

  --bg-footer: #f4f1e7;         /* ivory footer */
  --footer-text: #1f1f1f;
}
/* ============================================
   BODY
   ============================================ */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
  color: var(--text);
  line-height: 1.7;
  scroll-behavior: smooth;
  transition: background 0.4s ease;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 2px solid rgba(212,175,55,0.4);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--accent2);
  text-decoration: none;
  letter-spacing: 1px;
}

.site-header .brand img {
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--accent2);
  background: #fff8dc;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}
.site-header .brand img:hover {
  transform: rotate(-5deg) scale(1.05);
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: var(--accent2);
  color: #2b1f0a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 40px 30px;
  border-radius: 20px;
  margin-top: 25px;
  background: linear-gradient(135deg, rgba(46,125,50,0.25), rgba(212,175,55,0.15));
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero h1 {
  font-family: 'Noto Serif', serif;
  font-size: 32px;
  color: var(--accent2);
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 16px;
  color: var(--muted);
}

/* ============================================
   QUOTES GRID
   ============================================ */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  margin-top: 30px;
}

/* QUOTE CARD */
.quote {
  background: var(--card-bg);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  margin-bottom: 18px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent2);
}
.quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.quote p {
  font-size: 20px;
  font-style: italic;
  color: var(--text);
}
.quote .meta {
  color: var(--muted);
  margin-top: 10px;
  font-size: 14px;
  border-top: 1px dashed rgba(255,255,255,0.2);
  padding-top: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #2b1f0a;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: all .3s;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--muted);
}

/* ============================================
   SIDEBAR & CARD
   ============================================ */
.card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  border: 1px solid rgba(212,175,55,0.15);
}

/* ============================================
   GALLERY QUOTES
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 25px;
}

.gallery-item img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
  background: var(--card-bg);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  margin-top: 30px;
}
.page-content h1 {
  font-family: 'Noto Serif', serif;
  color: var(--accent2);
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.page-content h2 {
  color: var(--accent);
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
}
.page-content p {
  color: var(--text);
  margin-bottom: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-footer);
  color: var(--footer-text);
  padding: 45px 20px 25px;
  margin-top: 50px;
  border-top: 3px solid var(--accent2);
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.site-footer h3.brand {
  color: var(--accent2);
  font-family: 'Noto Serif', serif;
  font-size: 22px;
}

.site-footer h4 {
  color: var(--accent);
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 6px;
}
.site-footer ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer ul li a:hover {
  color: var(--accent2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  font-size: 14px;
  color: var(--muted);
}

/* ============================================
   RESPONSIVE & NAV TOGGLE
   ============================================ */
@media(max-width: 900px) {
  .main-grid { grid-template-columns: 1fr; }
  .main-nav {
    display: none;
    flex-direction: column;
    background: var(--card-bg);
    padding: 15px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  body.nav-open .main-nav {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .main-nav a {
    margin: 8px 0;
    text-align: center;
    color: var(--text);
    font-weight: 600;
  }
  body.nav-open .menu-toggle {
    transform: rotate(180deg);
  }
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.3s ease;
}
/* About*/
.sg-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.sg-tentang-card {
  background: var(--sg-card);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  padding: 28px;
  animation: fadeIn 0.4s ease-out;
}

.sg-hero {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sg-logo-box {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(37, 96, 59, 0.2);
  flex-shrink: 0;
}

.sg-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.sg-title {
  margin: 0;
  font-size: 28px;
}

.sg-subtitle {
  color: var(--sg-text-muted);
  margin-top: 4px;
}

.sg-intro {
  margin: 20px 0;
  padding: 16px;
  border-left: 4px solid var(--sg-accent);
  background: rgba(127, 183, 126, 0.08);
  border-radius: 10px;
}

.sg-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}

.sg-content h2 {
  color: var(--sg-accent);
  margin-top: 20px;
  margin-bottom: 8px;
}

.sg-content ul {
  padding-left: 20px;
}

.sg-why {
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
  border-radius: 10px;
  color: #222;
  font-size: 15px;
}

.sg-sidebar {
  background: #fffdfb;
  border-radius: 12px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

.sg-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(37, 96, 59, 0.1);
  border-radius: 999px;
  color: var(--sg-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.sg-box h3 {
  margin: 8px 0;
}

.sg-box p {
  color: var(--sg-text-muted);
  margin-bottom: 10px;
}

.sg-btn {
  display: block;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.sg-btn-wa {
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: #fff;
}

.sg-btn-mail {
  border: 1px dashed rgba(37, 96, 59, 0.3);
  color: var(--sg-accent);
  background: transparent;
}

.sg-footer {
  font-size: 14px;
  color: var(--sg-text-muted);
  margin-top: 14px;
}

@media (max-width: 820px) {
  .sg-layout {
    grid-template-columns: 1fr;
  }

  .sg-logo-box {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
/* ==== Disclaimer Page Styles ==== */
.sg-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.sg-page {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  color: #333;
}

.sg-logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sg-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sg-page-title {
  font-size: 2em;
  text-align: center;
  color: #2e2e2e;
  margin-bottom: 8px;
}

.sg-page-date {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-bottom: 25px;
}

.sg-page-content h2 {
  font-size: 1.25em;
  color: #006b5f;
  margin-top: 24px;
  margin-bottom: 8px;
}

.sg-page-content p {
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 10px;
}

.sg-contact-list {
  list-style: none;
  margin-top: 10px;
  padding: 0;
}

.sg-contact-list li {
  margin: 6px 0;
}

.sg-contact-list a {
  color: #006b5f;
  text-decoration: none;
}

.sg-contact-list a:hover {
  text-decoration: underline;
}

/* 🌿 Style tambahan untuk halaman Kerja Sama */

.paket-card {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
  color: #333;
}

.paket-card:hover {
  transform: scale(1.04);
}

/* Bronze */
.paket-bronze {
  background: #f7efe1;
  border-top: 5px solid #b58b4d;
}

/* Silver */
.paket-silver {
  background: #f0f0f0;
  border-top: 5px solid #c0c0c0;
}

/* Gold */
.paket-gold {
  background: #fff7dc;
  border-top: 5px solid #d4af37;
}

/* Platinum */
.paket-platinum {
  background: linear-gradient(135deg, #e6f3e6, #fff9e5);
  border-top: 5px solid #58a46e;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.contact-card h2 {
    font-family: 'Noto Serif', serif;
    color: var(--accent2);
    margin-bottom: 18px;
    text-align: center;
}

.contact-card input, 
.contact-card textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 15px;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: var(--muted);
}

.contact-card button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info .info-item h4 {
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-info .info-item p {
    color: var(--text);
}

/* Google Maps Embed */
.contact-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 12px;
}

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