@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --main-green: #243930;
    --accent-yellow: #c69e63;
    --bg: #0e1512;
    --light: #e1ebe2;
    --text: #e8efe9;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 10px 30px rgba(0,0,0,.25);
    --muted: #b8c3bc;
    --card: #16231f;
    --radius: 18px;
    --reveal-distance: 24px;
    --reveal-duration: 700ms;
    --reveal-ease: cubic-bezier(.2,.65,.2,1);
    
    --hero-h: 90vh;
    --slide-dur: 7000ms;
    --fade-dur: 900ms;
    --parallax: 18px;
    --min-scale: 1.1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    background: var(--bg);
}
.text-light{
    color: var(--text) !important;
}
figure {
    margin: 0 !important ;
}
a:hover{
  color: inherit;
}

.title{
    font-family: "Playfair Display", serif;
}

.img-line{
  aspect-ratio: 7 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bg-light{
  background: var(--light);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* teks + icon di tengah */
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #16231fbb;
  color: var(--text);
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(6px);
}

.button--primary {
  background: var(--accent-yellow);
  color: #111;
  border-color: transparent;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  color: var(--light);
}


/* ======================================= */
/* Page */
/* ======================================= */
/* Container hero */
.hero-page {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: flex-end; /* Konten di bawah */
  padding: 0 50px 30px 50px;
  overflow: hidden;
}

/* Overlay untuk efek gelap agar teks terbaca */
.hero-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: flex-end;
}

/* Responsive */
@media(max-width: 768px){
  .hero-page {
    height: 300px;
    padding: 0 20px 20px 20px;
  }
}
/* ======================================= */
/* end Page */
/* ======================================= */

/* ======================================= */
/* Hero */
/* ======================================= */
.hero-bg {
  position: relative;
  height: var(--hero-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--fade-dur) ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.03);
    --tx: 0px;
    --ty: 0px;
  will-change: transform, opacity;
  z-index: 0;
}
.hero__slide.is-visible { opacity: 1; z-index: 1; }
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.hero__slide.zoom-out { animation: zoomOut var(--slide-dur) linear both; }
.hero__slide.zoom-in  { animation: zoomIn  var(--slide-dur) linear both; }

@keyframes zoomOut {
  from { transform: translate3d(var(--tx), var(--ty), 0) scale(calc(var(--min-scale) + 0.08)); }
  to   { transform: translate3d(var(--tx), var(--ty), 0) scale(var(--min-scale)); }
}
@keyframes zoomIn {
  from { transform: translate3d(var(--tx), var(--ty), 0) scale(var(--min-scale)); }
  to   { transform: translate3d(var(--tx), var(--ty), 0) scale(calc(var(--min-scale) + 0.08)); }
}

.hero__content {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  bottom: 70px;
  max-width: 70%;
  z-index: 2;
}



.hero-widget{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  width:100%;
  max-width: 100%;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-widget{
  bottom: 23px !important;
}
}
.eyebrow {
  display: inline-block;
  padding: .35rem .6rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__title {
  margin: .65rem 0 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3.8vw, 44px);
  line-height: 1.05;
  font-weight: 400;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero__desc {
  font-family: "Playfair Display", serif;
  font-weight: 200;
  font-size: clamp(15px, 3.8vw, 30px);
  color: #e8e8e8;
  opacity: .92;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none !important; }
}

@media (max-width: 768px) {
  .hero__content {
    bottom: 0;
    max-width: 100%;
  }
  .hero {
    height: 90vh;
  }
}
/* ======================================= */
/*End Hero */
/* ======================================= */


/* ======================================= */
/*Widget */
/* ======================================= */

.widget-booking-wrapper {
  position: absolute;
  left: 10px;
  top: 83vh;
  width: calc(100% - 20px);
  z-index: 10;
  pointer-events: auto;
  border-radius: 12px;
  overflow: hidden;
}



/* Responsive */

@media (max-width: 992px) {
  .widget-booking-wrapper {
    width: 90%;
    margin-bottom: -20px;
    top:86vh;
  }
}
/* ======================================= */
/*End Widget */
/* ======================================= */


/* ======================================= */
/* Header */
/* ======================================= */
.header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
    position: fixed;
    background: rgba(14, 21, 18, 0.97);
    box-shadow: var(--shadow);
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand img { height: 70px; width: 70px; }

/* Rounded image */
.img-rounded {
    border-radius: var(--radius);
    overflow: hidden;
}

/* Potrait style crop */
.img-land {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius);
}


/* Menu desktop */
.nav__links {
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 999px;
    padding: 10px;
    justify-content: center;
    transition: all 0.3s ease;
}
.nav__link {
    padding: 10px 15px;
    border-radius: 999px;
    transition: 0.25s ease;
    opacity: 1;
}
.nav__link:hover,
.nav__link.active {
    background: var(--light);
    color: var(--main-green);
}
.header.scrolled .nav__links {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

/* Language selector */
.nav__right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px;
    border-radius: 999px;
}
.lang a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 999px;
}
.lang a.active {
    background: var(--main-green);
    color: white;
}
.lang img { width: 15px; height: 15px; border-radius: 50%; }

/* ========== MOBILE VERSION ========== */
@media (max-width: 992px) {
  #nav-links{
    background: rgba(14, 21, 18, 0.97);
  }
.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% - 40px);
  margin: 20px;
  flex-direction: column;
  gap: 15px;
  background: rgba(14, 21, 18, 0.97);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}


  .nav__links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Hover di mobile jadi underline kuning */
  .nav__link {
    display: inline-block;
    padding: 8px 0;
    width: 100%;
  }
  .nav__link:hover,
  .nav__link.active {
    background: none;
    color: var(--accent-yellow);
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
    text-underline-offset: 4px;
  }


  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    transition: transform 0.3s ease;
  }

  .nav__toggle span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Animasi berubah menjadi X */
  .nav__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Language tetap di kanan */
  .nav__right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .lang {
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 6px;
    border-radius: 999px;
  }
}

/* =================================== */
/* End Header */
/* =================================== */



/* =================================== */
/* Footer Navigation Mobile */
/* =================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--light);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.nav-item {
  text-align: center;
  color: var(--main-green);
  font-size: 12px;
  text-decoration: none;
  flex: 1;
}

.nav-item:hover {
  color: var(--accent-yellow);
}

.nav-item i {
  font-size: 22px;
  display: block;
  margin-bottom: 5px;
}

/* Tombol Book di tengah */
.book-btn {
  background: var(--accent-yellow);
  color: var(--light);
  width: 90px;
  height: 70px;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px; /* naik ke atas */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 14px;
  flex-direction: column;
  text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.book-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

    .book-btn i {
      font-size: 24px;
      margin-bottom: 4px;
    }

    .book-btn span {
      font-size: 12px;
    }

    /* Default: hidden di desktop */
    .bottom-nav {
      display: none;
    }

    /* Tampilkan hanya di mobile */
    @media (max-width: 768px) {
      .bottom-nav {
        display: flex;
      }
    }
/* =================================== */
/* end Footer Navigation Mobile */
/* =================================== */



/* =================================== */
/* Widget */
/* =================================== */
/* --- Container utama sidebar --- */
.bg-white {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}

/* --- Widget umum --- */
.widget {
  margin-bottom: 25px;
}

.widget h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.line-left{
  
  padding-left: 8px;
  border-left: 4px solid var(--accent-yellow); /* kuning elegan */
}

.widget p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Bloglist (Posting terbaru) --- */
.widget-post ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-post li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 12px;
}

.widget-post li:last-child {
  border-bottom: none;
}

.widget-post .d-image {
  flex: 0 0 55px;
  margin-right: 12px;
}

.widget-post img.circle-widget {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.widget-post .d-content {
  flex: 1;
}

.widget-post .d-content h4 {
  font-size: 0.95rem;
  margin: 0 0 5px;
  line-height: 1.4;
  color: #222;
  transition: color 0.3s ease;
}

.widget-post .d-content h4:hover {
  color:  var(--accent-yellow); /* hover kuning */
}

.widget-post .d-date {
  font-size: 0.8rem;
  color: #999;
}

/* --- Tags / Kategori --- */
.widget_tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.widget_tags li {
  display: inline-block;
}

.widget_tags a {
  display: inline-block;
  padding: 6px 12px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #444;
  transition: all 0.3s ease;
}

.widget_tags a:hover {
  background:  var(--accent-yellow);
  border-color: #f39c12;
  color: #fff;
}
/* =================================== */
/* End Widget */
/* =================================== */



/* =================================== */
/* Post Read */
/* =================================== */
/* POST READ */
.post-title{
    font-family: "Playfair Display", serif;
}
.blog-read {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}
.blog-read img {
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
    max-height: 480px;
}

/* Badge category */
.about__badge {

    margin-bottom: 15px;
}

.about__badge .badge-category {
    display: inline-block;
    background: #243930;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

    /* Post Content Headings */
#post-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #243930;
    margin-top: 30px;
    margin-bottom: 15px;

}

#post-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a5d55;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 5px;
}
#post-content p {
    color: #4a5d55;
}

/* TOC List Style */
#table-of-contents {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(198, 158, 99, 0.3);
}

#toc-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

#toc-list li {
    margin-bottom: 6px;
}

#toc-list li a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

#toc-list li a:hover {
    color: #c69e63;
}

#toc-list li ul {
    margin-top: 5px;
    margin-left: 15px;
    padding-left: 10px;
    border-left: 1px dashed #ccc;
}

/* POST READ END */

/* Container gambar */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
        aspect-ratio: 5 / 3;
}

/* Gambar */
.gallery-item img {
    width: 100%;
    height:100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay blur */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Teks di tengah */
.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h4 {
    opacity: 1;
    transform: scale(1);
}

/* crumb */

.crumb {
  color: #777;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.crumb {
  color: #777;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.de-navbar-left.de_light #subheader .crumb {
  color: #333;
}

.crumb{
  font-size: 14px;
  margin-bottom: 15px;
}

.crumb li {
  display: inline;
  text-decoration: none;
  letter-spacing: 0;
}

.crumb li:after {
  content: "●";
  font-size: 10px;
  margin: 0 10px 0 10px;
  opacity: .5;
}

.crumb li:last-child:after {
  display: none;
}

.crumb a {
  text-decoration: none;
  opacity: .75;
}

.crumb li .active {
  font-weight: bold;
}

.de_light .crumb a:hover {
  color: #fff;
}

.crumb{
  margin-bottom: 0;
}
/* =================================== */
/* end Post Read */
/* =================================== */


/* =================================== */
/* Section */
/* =================================== */
/* Sections */
section {
  padding: 72px 0;
}
.section__head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
}
.section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3.5vw, 34px);
}

.section__title-sm {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 26px);
}


.text-main{
    color:var(--main-green);
}
.section__desc {
  color: var(--muted);
  max-width: 760px;
}
/* =================================== */
/* end Section */
/* =================================== */


/* =================================== */
/* About */
/* =================================== */
/* About */
.about__card {
  background: linear-gradient(180deg, #172722, #0f1a17);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* gambar menutupi container */
  display: block;    /* hilangkan space di bawah */
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about__badge { display:flex; flex-wrap:wrap; gap:8px; margin-top: 16px; }
.badge {
  display: inline-block; /* supaya lebarnya ikut teks */
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap; /* mencegah teks terpotong ke bawah */
}
  .nav__underline:hover{
    color: var(--accent-yellow);
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
    text-underline-offset: 4px;
  }
/* =================================== */
/* end About */
/* =================================== */



/* =================================== */
/* Pagination */
/* =================================== */
  /* pagination */

.page-link{
  margin: 0 5px;
  font-weight: bold;
  color: var(--accent-yellow);
  background: none;
}

.page-link{
  width: 40px;
  border: none;
  border-radius:100%;
  -moz-border-radius:100%;
  -webkit-border-radius:100%;
}

.page-link:hover{
  background: none;
  color : var(--accent-yellow);

}

.page-item.active .page-link{
  background: var(--main-green);
}


@media (max-width: 900px){ .about { grid-template-columns: 1fr; } }
/* =================================== */
/* end Pagination */
/* =================================== */


/* =================================== */
/* Featured */
/* =================================== */
.features {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
  margin-top: 18px;
}
.feature {
  background: #13211c;
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  color: #dbe6df;
}

@media (max-width: 1100px){ .features { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px){ .features { grid-template-columns: repeat(2,1fr); } }
/* =================================== */
/* end Featured */
/* =================================== */


/* =================================== */
/* Slider */
/* =================================== */
.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.slides {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .6s var(--reveal-ease);
}
.slide {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
}
.slide::after {
  content:"";
  position:absolute;
  inset:0;
}
.slide__caption {
  position:absolute;
  inset:auto 0 0 0;
  padding: 20px;
  z-index:1;
  font-weight:600;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.5));
}
.slider__controls {
  position:absolute;
  inset:auto 12px 12px auto;
  display:flex;
  gap:8px;
  z-index:2;
}
.slider__btn {
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid var(--border);
  background: rgba(20,32,28,.9);
  color:#fff;
  cursor:pointer;
}
/* =================================== */
/* end Slider */
/* =================================== */


/* =================================== */
/* Posts */
/* =================================== */
    /* Posts */
    .card__title {
      font-size: medium;
      color: inherit; /* ambil warna dari parent */
      text-decoration: none; /* hilangkan underline */
    }

.post {
  text-decoration: none; /* hilangkan underline di seluruh kartu */
  color: inherit; /* paksa warna teks tetap sama */
}

.post:hover {
  color: inherit; /* pastikan saat hover tetap tidak biru */
}

.card {
  text-decoration: none;
  color: inherit; /* ambil warna dari parent */
  background: #12201b;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card__media { height: 220px; background: #0c1613; overflow:hidden; }
.card__body { padding: 10px; display:flex; flex-direction:column;}
.card__title {font-size: medium; }
.card__desc { color: var(--muted); font-size: small; }
.card__meta { display:flex; justify-content:space-between; align-items:center; font-size: 12px; color: var(--muted); padding: 8px 16px; border-top:1px solid var(--border); }
@media (max-width: 1000px){ .posts { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 680px){ .posts { grid-template-columns: 1fr;} }
/* =================================== */
/* end Posts */
/* =================================== */

/* Footer */
footer { background: #0c1411; border-top: 1px solid var(--border); margin-top: 3px; }
.footer__grid { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; padding: 48px 0; }
.footer__brand { color: var(--muted); max-width: 520px; }
.footer__col h4 { margin: 0 0 10px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-yellow); }
.footer__link { display:block; padding: 6px 0; color: #dfe7e1; opacity: .9; }
.footer__col a:hover { color: #bbbcbb !important;}
.footer__bottom { border-top: 1px solid var(--border); padding: 14px 0; font-size: 13px; color: var(--muted); display:flex; flex-wrap:wrap; gap:8px; justify-content:space-between; align-items:center; }

/* Accent separators */
.accent-line { width: 64px; height: 2px; background: var(--accent-yellow); margin: 10px 0 0; }

/* Utility */
.muted { color: var(--muted); }
.grid-2 { display:grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
@media (max-width: 900px){ .grid-2 { grid-template-columns: 1fr; } }

/* Floating book button */
.float-book { position: fixed; right: 18px; bottom: 18px; background: var(--accent-yellow); color:#111; border-radius: 999px; padding: 12px 18px; font-weight:700; box-shadow: var(--shadow); }

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
* { animation: none !important; transition: none !important; }
}


/* Features list */
.features { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 18px; }
.feature { background: #13211c; border:1px solid var(--border); border-radius: 14px; padding: 14px; font-size: 13px; color: #dbe6df; }
@media (max-width: 1100px){ .features { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px){ .features { grid-template-columns: repeat(2,1fr); } }