:root {
  --primary: #D62828;
  --secondary: #231F20;
  --surface: #1E1A1A;
  --text: #F4F4F4;
  --muted: #C7C7C7;
  --header-bg: rgba(35,31,32,.95);
  --hero-overlay-start: rgba(35,31,32,.45);
  --hero-overlay-end: rgba(35,31,32,.75);
  --panel-bg: rgba(35,31,32,.55);
  --panel-border: rgba(214,40,40,.16);
  --card-bg: rgba(214,40,40,.95);
  --card-border: rgba(255,255,255,.18);
  --input-bg: #181414;
  --footer-bg: #181414;
  --border-muted: rgba(255,255,255,.08);
  --box-shadow: 0 24px 80px rgba(0,0,0,.5);
  --about-bg: rgba(35,31,32,.75);
}

.light-theme {
  --secondary: #f5f5f5;
  --surface: #ffffff;
  --text: #111111;
  --muted: #666;
  --header-bg: rgba(255,255,255,.95);
  --hero-overlay-start: rgba(255,255,255,.45);
  --hero-overlay-end: rgba(255,255,255,.75);
  --panel-bg: rgba(255,255,255,.95);
  --panel-border: rgba(255,0,0,.12);
  --input-bg: #ffffff;
  --footer-bg: #f4f4f4;
  --border-muted: rgba(0,0,0,.08);
  --box-shadow: 0 24px 80px rgba(0,0,0,.08);
  --about-bg: rgba(255,255,255,.92);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: Segoe UI, Arial, sans-serif; scroll-behavior: smooth; }
body { background: var(--secondary); color: var(--text); }

header { position: sticky; top: 0; background: var(--header-bg); padding: 15px 6%; z-index: 999; border-bottom: 2px solid var(--primary); }
nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
nav .brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--text); }
nav .brand .logo { width: 56px; height: 56px; object-fit: contain; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: #fff; }
nav .brand span { font-size: 1.05rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
nav a { color: var(--text); text-decoration: none; margin-left: 0; padding: 10px 0; transition: .2s; }
nav a:hover { color: var(--primary); }
nav .menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; flex-direction: column; gap: 5px; align-items: flex-end; padding: 10px; }
nav .menu-toggle span { display: block; width: 28px; height: 3px; background: var(--text); border-radius: 2px; }
.theme-toggle { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: var(--text); padding: 10px 14px; border-radius: 999px; font-size: 1rem; cursor: pointer; transition: background .25s ease, border .25s ease, transform .25s ease; }
.theme-toggle:hover { background: rgba(255,255,255,.14); transform: translateY(-1px); }
nav .nav-links { display: flex; align-items: center; gap: 18px; }

.sidebar { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--surface); padding: 25px 20px; display: flex; flex-direction: column; gap: 18px; transition: right .3s ease; z-index: 1000; box-shadow: -5px 0 30px rgba(0,0,0,.35); }
.sidebar.open { right: 0; }
.sidebar-close { align-self: flex-end; background: none; border: none; color: var(--text); font-size: 2rem; line-height: 1; cursor: pointer; }
.sidebar a { color: var(--text); text-decoration: none; font-size: 1rem; padding: 12px 0; border-bottom: 1px solid var(--border-muted); }
.sidebar a:hover { color: var(--primary); }

.hero { position: relative; width: 100%; min-height: 90vh; padding: 20px; display: flex; align-items: center; justify-content: center; text-align: center; background-color: var(--secondary); background-image: linear-gradient(180deg, var(--hero-overlay-start), var(--hero-overlay-end)), url('../images/foto tampak luar.jpeg'); background-position: center center; background-size: cover; background-repeat: no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--hero-overlay-start), var(--hero-overlay-end)); pointer-events: none; }
.hero-content { position: relative; max-width: 700px; padding: 40px 35px; background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 24px; backdrop-filter: blur(10px); box-shadow: var(--box-shadow); }
.hero h1 { font-size: 3.5rem; line-height: 1.05; text-transform: uppercase; letter-spacing: .06em; color: #d62828; text-shadow: 0 12px 25px rgba(0,0,0,.55); }
.hero-subtitle { margin-top: 12px; color: var(--muted); font-size: 1rem; letter-spacing: .16em; text-transform: uppercase; opacity: .9; }
.slogan-wrapper { position: relative; overflow: hidden; height: 2.5em; margin: 22px 0 0; }
.slogan-text { display: inline-block; white-space: nowrap; padding-left: 100%; font-size: 1.45rem; color: var(--text); text-transform: uppercase; -webkit-text-stroke: 0.5px #d62828; letter-spacing: 0.06em; text-shadow: 0 0 6px rgba(214,40,40,0.5); animation: runningText 12s linear infinite; animation-play-state: running; }
.slogan-wrapper:hover .slogan-text { animation-play-state: paused; }
@keyframes runningText { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.hero-location { margin-top: 18px; color: var(--muted); font-size: 1rem; opacity: .95; }

.btn { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; padding: 14px 26px; min-height: 52px; border-radius: 999px; text-decoration: none; margin: 24px 0 0; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,0,0,.24); background: #c00; }
.btn-wa { display: inline-flex; margin-top: 16px; padding: 12px 18px; min-height: 48px; border-radius: 999px; font-size: .95rem; }

section { padding: 70px 8%; max-width: 1100px; margin: auto; width: 100%; }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; background: rgba(0,0,0,.75); padding: 30px; border-radius: 24px; color: #fff; }
.about-heading { grid-column: 1 / -1; margin-bottom: 12px; }
.about-heading h2 { font-size: 2rem; color: var(--primary); margin: 0; }
.about-grid p { color: #fff; line-height: 1.8; font-size: 1.1rem; }
.about-text { padding: 24px; }
.about-visual { display: grid; gap: 18px; }
.about-image { overflow: hidden; border-radius: 16px; min-height: 260px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-captions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-caption { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); }
.photo-caption span { font-weight: 700; color: #fff; font-size: 1rem; }
.about-photo-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; border: 2px solid rgba(255,255,255,.18); }

#info { padding-top: 10px; }
.info-panel-wrapper { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 26px; margin-top: 24px; }
.info-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.info-btn { flex: 1 1 160px; min-width: 150px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: var(--text); padding: 16px 18px; border-radius: 20px; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.light-theme .info-btn { color: #111; }
.info-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }
.info-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 18px 45px rgba(214,40,40,.18); }
.info-content { margin-top: 22px; }
.info-panel { display: none; color: var(--text); }
.info-note { margin-top: 18px; color: var(--text); font-size: 0.92rem; line-height: 1.7; opacity: .88; font-style: italic; }
.light-theme .info-note { color: #111; }
.info-panel.active { display: block; }
.info-panel h3 { margin-bottom: 12px; font-size: 1.3rem; color: #fff; }
.info-panel p { line-height: 1.8; color: rgba(255,255,255,.9); }
.light-theme .info-panel h3 { color: #111; }
.light-theme .info-panel p { color: rgba(0,0,0,.8); }

#booking { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 40px 50px; margin-top: 30px; }
#booking h2, #booking p, #booking button { color: #ff4d4d; }
#booking h2 { margin-bottom: 20px; text-shadow: 0 0 16px rgba(255,77,77,.45); }
#booking p { color: rgba(255,77,77,.95); text-shadow: 0 0 12px rgba(255,77,77,.22); line-height: 1.8; }
#booking input, #booking textarea, #booking select { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #ff4d4d; }
#booking input::placeholder, #booking textarea::placeholder { color: rgba(255,77,77,.72); }
#booking button { background: var(--primary); color: #fff; box-shadow: 0 0 25px rgba(255,0,0,.35); border: 1px solid rgba(255,255,255,.14); display: inline-flex; align-items: center; gap: 10px; }
#booking button:hover { box-shadow: 0 0 28px rgba(255,0,0,.5); }
.booking-note { margin-bottom: 20px; color: #fff; text-shadow: 0 0 14px rgba(255,255,255,.25); font-size: 1rem; line-height: 1.7; }

.btn-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); box-shadow: 0 0 12px rgba(255,255,255,.18); }
h2 { color: var(--primary); margin-bottom: 20px; -webkit-text-stroke: 0.5px #fff; }

#contact { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 30px; margin-top: 30px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.contact-card { background: var(--panel-bg); padding: 18px; border-radius: 14px; border: 1px solid var(--panel-border); color: var(--text); }
.contact-card h3 { margin-bottom: 8px; color: var(--primary); }
.contact-card p { color: var(--muted); margin-bottom: 12px; }
.contact-grid .booking-note { color: var(--text); text-shadow: none; font-size: 1rem; line-height: 1.7; }

.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.04); color: var(--text); text-decoration: none; border: 1px solid rgba(255,255,255,.06); font-weight: 600; }
.social-btn:hover { transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; margin-right: 6px; flex-shrink: 0; }
.social-btn.whatsapp { background: #25D366; color: #fff; border-color: rgba(0,0,0,.06); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-btn.tiktok { background: #010101; color: #fff; }

.cards { display: grid; grid-template-columns: repeat(4, minmax(220px, 1fr)); gap: 20px; }
.card { background: #d62828; padding: 20px; border-radius: 18px; transition: .3s; border: 1px solid rgba(255,255,255,.14); color: #fff; overflow: hidden; box-shadow: 0 18px 45px rgba(214,40,40,0.25); display: flex; flex-direction: column; justify-content: flex-start; min-height: auto; }
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(214,40,40,.35); }
.card h3 { margin: 0 0 10px; color: #fff; font-size: 1.3rem; }
.card p { color: #fff; line-height: 1.7; margin: 0 0 16px; flex: 1; font-size: .98rem; }
.card img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; display: block; margin-bottom: 16px; }
.card .btn-wa { margin-top: auto; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; align-items: start; }
.gallery figure { margin: 0; display: flex; flex-direction: column; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 45px rgba(0,0,0,.12); transition: transform .3s ease, box-shadow .3s ease; }
.gallery figure:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,.18); }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; display: block; }
.gallery figcaption { padding: 14px 16px 18px; color: var(--muted); font-size: .95rem; line-height: 1.6; text-align: center; background: rgba(0,0,0,.03); }
.gallery figcaption::first-letter { text-transform: uppercase; }

.partner-section { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; padding: 40px 0 26px; margin: 40px 0; }
.partner-heading { max-width: 900px; margin: 0 auto 24px; text-align: center; }
.partner-heading h2 { margin-bottom: 12px; color: var(--primary); }
.partner-heading p { color: var(--muted); line-height: 1.8; max-width: 760px; margin: 0 auto; }
.partner-slider { overflow: hidden; }
.partner-track { display: flex; gap: 24px; align-items: center; padding: 8px 0; animation: slideLeft 18s linear infinite; }
.partner-item { flex: 0 0 auto; width: 200px; height: 120px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; box-shadow: 0 16px 30px rgba(0,0,0,.08); transition: transform .3s ease; }
.partner-item img { max-width: 160px; max-height: 80px; object-fit: contain; }
.partner-item:hover { transform: translateY(-4px); }
@keyframes slideLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

input, textarea, select { width: 100%; padding: 14px 16px; margin: 10px 0; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background: var(--input-bg); color: var(--text); box-shadow: inset 0 2px 10px rgba(0,0,0,.12); transition: border-color .25s ease, box-shadow .25s ease; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(214,40,40,.12); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.78); }
button { background: var(--primary); color: #fff; border: none; padding: 12px 24px; border-radius: 12px; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
button:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(214,40,40,.18); }

footer { background: #090909; color: #eee; padding: 35px; text-align: center; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: start; max-width: 1100px; margin: 0 auto 30px; text-align: left; background: #d62828; border-radius: 24px; padding: 30px; }
.footer-info h3 { margin-bottom: 12px; color: #fff; font-size: 1.2rem; }
.footer-info p { color: rgba(255,255,255,.82); line-height: 1.8; }
.footer-feedback-form { display: grid; gap: 16px; max-width: 760px; width: 100%; margin: 0; }
.footer-feedback-form label { font-weight: 700; color: #fff; }
.footer-feedback-form textarea, .footer-feedback-form input { width: 100%; min-height: 56px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: var(--text); resize: vertical; padding: 14px 16px; border-radius: 14px; box-shadow: inset 0 2px 10px rgba(0,0,0,.12); }
.footer-feedback-form button { justify-self: flex-start; background: #25D366; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 8px 18px rgba(0,0,0,.18); min-width: 160px; }
.footer-feedback-form button:hover { background: #1ebe5b; }

.profile-card { background: #111; border: 1px solid rgba(255,0,0,.12); padding: 25px; border-radius: 16px; }
.profile-card ul { margin-top: 15px; list-style: disc inside; line-height: 1.8; color: #ccc; }
.profile-card strong { color: var(--primary); }

.wa { position: fixed; right: 20px; bottom: 20px; background: #25D366; color: #fff; padding: 15px 18px; border-radius: 50px; text-decoration: none; font-weight: bold; }
.wa svg { width: 20px; height: 20px; vertical-align: middle; display: inline-block; }

/* ========================================================
   RESPONSIVE MOBILE (MAX-WIDTH: 768PX)
   Hanya 1 blok media query ini saja di bagian paling bawah
   ======================================================== */
@media (max-width: 768px) {
  /* Header & Nav */
  header { padding: 15px 5%; }
  nav { justify-content: space-between; }
  nav .nav-links { display: none; }
  nav .menu-toggle { display: flex; }
  .theme-toggle { padding: 10px 12px; font-size: 0.95rem; }
  .nav .brand span { font-size: 0.95rem; }

  /* Hero Section */
  .hero { min-height: auto; padding: 60px 16px; }
  .hero-content { width: 100%; max-width: 100%; padding: 24px 16px; border-radius: 16px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-subtitle, .hero-location { font-size: 0.85rem; letter-spacing: 0.1em; }
  .slogan-text { font-size: 1.1rem; }
  
  .btn, .btn-wa { width: 100%; justify-content: center; }
  .hero .btn { width: 100%; max-width: none; margin-top: 16px; justify-content: center; }

  /* Global Section */
  section { padding: 50px 5%; }
  .section-action { display: flex; justify-content: center; margin-top: 20px; }

  /* About Section */
  .about-grid { grid-template-columns: 1fr; gap: 16px; padding: 20px; border-radius: 16px; }
  .about-heading h2 { font-size: 1.6rem; }
  .about-grid p { font-size: 0.95rem; line-height: 1.6; }
  .about-text { padding: 0; order: 1; }
  .about-visual { order: 2; gap: 12px; }
  .about-image { min-height: 200px; }
  .about-grid img { max-height: 250px; object-fit: cover; }
  
  .about-photo-captions { grid-template-columns: 1fr; }
  .photo-caption { flex-wrap: wrap; justify-content: flex-start; }
  .about-photo-thumb { width: 44px; height: 44px; }

  /* Booking & Contact */
  #booking { padding: 24px 20px; margin-top: 20px; }
  #contact { padding: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { padding: 16px; }
  .contact-grid .booking-note { font-size: 0.98rem; padding: 0 6px; }

  /* Cards & Gallery */
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: auto; }
  .gallery figure { border-radius: 16px; }

  /* Misc (Sidebar, Socials, Partner, Info) */
  .sidebar { width: 100%; max-width: 320px; }
  
  .socials { flex-direction: column; gap: 10px; }
  .social-btn { width: 100%; justify-content: center; padding: 12px; }
  
  .partner-section { padding: 30px 0 18px; margin: 32px 0; }
  .partner-heading { text-align: left; }
  .partner-track { animation: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 10px; }
  .partner-item { min-width: 160px; width: auto; height: 110px; scroll-snap-align: center; border-radius: 16px; }
  .partner-item img { max-height: 60px; }
  .partner-slider { padding: 0 4px; }
  
  .info-buttons { gap: 12px; }
  .info-btn { flex: 1 1 auto; min-width: 0; padding: 14px 12px; font-size: 0.95rem; }
  .info-panel-wrapper { padding: 22px; }
  .info-note { font-size: 0.95rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .footer-feedback-form button { width: 100%; justify-self: stretch; }
  
  .wa { right: 14px; bottom: 14px; padding: 12px; }
}