/* ===== style.css ===== */
/* Daratan Kopi 25 - Premium, Animasi Super Halus & Kaya */
/* Tema: kopi hangat, elegan, fokus menu asli & alamat Dengkek */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  background-color: #fcf8f4;
  color: #362a24;
  line-height: 1.65;
  overflow-x: hidden;
  opacity: 0;
  animation: bodyFadeIn 1s ease forwards;
}

@keyframes bodyFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ===== PRELOADER ANIMASI ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2d221e;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s,
    visibility 0.8s;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  color: #f7e9db;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  animation: pulseGlow 1.5s infinite;
}

.preloader-progress {
  width: 200px;
  height: 3px;
  background: rgba(178, 138, 92, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.preloader-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #b28a5c;
  animation: progressLoad 1.8s ease forwards;
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(178, 138, 92, 0.2);
  }
  50% {
    text-shadow: 0 0 25px rgba(178, 138, 92, 0.6);
  }
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ===== NAVBAR SUPER SMOOTH ===== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 25px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
}

.navbar.scrolled {
  background: #2a1f1b;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

.nav-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  position: relative;
}

.logo-text {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fcf3e6;
  letter-spacing: -0.5px;
  transition: all 0.3s;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: #b28a5c;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #fcf3e6;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.2s;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  color: #b28a5c;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-link:hover::before {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fcf3e6;
  cursor: pointer;
  transition: transform 0.2s;
}

.hamburger:hover {
  transform: scale(1.1);
}

/* ===== HERO DENGAN PARALLAX & PARTIKEL ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1512568400610-62da28bc8a13?q=80&w=1974&auto=format&fit=crop")
    center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  margin-top: -100px;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(38, 27, 21, 0.9) 15%,
    rgba(55, 40, 33, 0.7) 70%
  );
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding: 0 24px;
  margin-left: 6%;
  animation: slideInLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge-wrapper {
  margin-bottom: 30px;
}

.hero-badge {
  display: inline-block;
  background: rgba(178, 138, 92, 0.2);
  backdrop-filter: blur(8px);
  padding: 10px 28px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(245, 225, 196, 0.4);
  animation: float 4s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: float 4s infinite;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.title-line {
  display: block;
  overflow: hidden;
  animation: revealText 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  transform: translateY(100%);
  opacity: 0;
}

.line-1 {
  animation-delay: 0.2s;
}
.line-2 {
  animation-delay: 0.4s;
}
.line-3 {
  animation-delay: 0.6s;
}

@keyframes revealText {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 650px;
  animation: fadeInUp 1s 0.8s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s 1s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

.scroll-text {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, white, transparent);
}

/* ===== BUTTONS DENGAN ANIMASI ===== */
.btn-primary {
  position: relative;
  background: #b28a5c;
  color: #1f1714;
  padding: 14px 38px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #dbb88c;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  z-index: 1;
}

.btn-primary i {
  transition: transform 0.3s;
}

.btn-primary:hover {
  background: #9f7347;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(159, 115, 71, 0.3);
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(178, 138, 92, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(178, 138, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(178, 138, 92, 0);
  }
}

.btn-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  border: 2px solid white;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}

.btn-primary:hover .btn-ring {
  opacity: 0.3;
  transform: scale(1.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid #e7d1b5;
  color: #fcf3e6;
  padding: 14px 38px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e7d1b5;
  transition: left 0.4s;
  z-index: -1;
}

.btn-outline:hover {
  color: #2d221e;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -60%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.btn-hover-lift {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-link {
  color: #b28a5c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 5px;
}

.btn-link span {
  position: relative;
}

.btn-link span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #b28a5c;
  transition: width 0.3s;
}

.btn-link:hover span::after {
  width: 100%;
}

.btn-link i {
  transition: transform 0.3s;
}

.btn-link:hover i {
  transform: translateX(8px);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.overline {
  display: block;
  color: #b28a5c;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #362a24;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s 0.1s both;
}

.section-title span {
  color: #b28a5c;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(178, 138, 92, 0.2);
  z-index: -1;
}

.section-subtitle {
  color: #65534a;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 0.8s 0.2s both;
}

/* ===== ABOUT ===== */
.about {
  background: #fffdfa;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 60px -20px rgba(45, 34, 28, 0.25);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.5s;
}

.image-wrapper:hover {
  transform: perspective(1000px) rotateY(-5deg);
}

.image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #2d221e;
  color: #fdf1e2;
  padding: 14px 28px;
  border-radius: 60px;
  font-weight: 600;
  border: 1px solid #b28a5c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-badge {
  animation: pulseGlow 2.5s infinite;
}

.decoration-dots {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#b28a5c 3px, transparent 3px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: -1;
}

.about-text {
  padding-right: 20px;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.tag-line {
  width: 50px;
  height: 2px;
  background: #b28a5c;
}

.tag-text {
  color: #b28a5c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2d221e;
}

.about-text h2 span {
  color: #b28a5c;
  border-bottom: 4px solid #b28a5c;
  padding-bottom: 5px;
}

.address-highlight {
  background: #fcf3e8;
  padding: 20px;
  border-radius: 20px;
  border-left: 6px solid #b28a5c;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  position: relative;
}

.address-highlight i {
  color: #b28a5c;
  font-size: 1.3rem;
}

.tooltip {
  background: #2d221e;
  color: #f7e9db;
  padding: 6px 16px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 10px;
}

.text-gradient {
  background: linear-gradient(135deg, #b28a5c, #8b6b4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.about-desc {
  margin-bottom: 35px;
  color: #4f3f38;
  font-size: 1.05rem;
}

.stats-container {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #b28a5c;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #5f4e45;
  font-weight: 500;
  margin-top: 8px;
}

/* ===== MENU CARD 3D ===== */
.menu {
  background: #fcf7f2;
  position: relative;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.menu-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  border: 1px solid rgba(178, 138, 92, 0.1);
  transform-style: preserve-3d;
}

.card-rotate {
  transition:
    transform 0.5s,
    box-shadow 0.5s;
}

.card-rotate:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-10px);
  box-shadow: 0 40px 50px -15px rgba(97, 65, 48, 0.2);
  border-color: #b28a5c;
}

.menu-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #b28a5c;
  color: white;
  padding: 6px 18px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(178, 138, 92, 0.4);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.menu-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.menu-card:hover .menu-img img {
  transform: scale(1.12);
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
}

.menu-info {
  padding: 28px 25px;
}

.menu-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b28a5c;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid #b28a5c;
  padding-bottom: 4px;
}

.menu-info h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #2d221e;
  margin-bottom: 12px;
}

.menu-desc {
  color: #65534a;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0e0ce;
  padding-top: 20px;
}

.menu-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4e3b32;
}

.menu-tag {
  background: #fcf3e8;
  padding: 6px 16px;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b28a5c;
}

.menu-cta {
  text-align: center;
  margin-top: 60px;
}

/* ===== GALERI DENGAN ZOOM ===== */
.gallery {
  background: #fffdfa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.05);
}

.gallery-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-img-wrapper:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.gallery-img-wrapper:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-weight: 600;
  font-size: 1.1rem;
}

/* ===== TESTIMONI SLIDER ===== */
.testimonials {
  background: #f3eee8;
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  background: white;
  padding: 45px 40px;
  border-radius: 36px;
  box-shadow: 0 20px 40px -10px rgba(60, 40, 30, 0.1);
  border: 1px solid #eadbcb;
  margin: 0 10px;
}

.quote-icon i {
  color: #b28a5c;
  opacity: 0.3;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #362a24;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar i {
  font-size: 2.8rem;
  color: #b28a5c;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 700;
  color: #2d221e;
}

.user-location {
  font-size: 0.85rem;
  color: #8b6b4a;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #dac2aa;
  color: #362a24;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #b28a5c;
  color: white;
  border-color: #b28a5c;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4bc9e;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #b28a5c;
  transform: scale(1.3);
}

/* ===== LOKASI ===== */
.location {
  background: #fffbf7;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: stretch;
}

.map-container {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 40px -12px rgba(53, 40, 33, 0.2);
  border: 1px solid #dac2aa;
  height: 420px;
  transition: transform 0.4s;
}

.map-container:hover {
  transform: scale(1.02);
}

.map-wrapper {
  height: 100%;
}

.address-card {
  background: white;
  padding: 45px 40px;
  border-radius: 32px;
  border: 1px solid #d4bc9e;
  box-shadow: 0 25px 45px -10px rgba(59, 45, 38, 0.1);
  height: 100%;
  position: relative;
  transition: transform 0.4s;
}

.address-card:hover {
  transform: translateY(-8px);
}

.address-icon {
  width: 70px;
  height: 70px;
  background: #b28a5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.address-icon i {
  font-size: 2rem;
  color: white;
}

.pulse-animation {
  animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
  0% {
    box-shadow: 0 0 0 0 rgba(178, 138, 92, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(178, 138, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(178, 138, 92, 0);
  }
}

.address-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d221e;
  margin-bottom: 20px;
}

.address-full {
  background: #f5ede4;
  padding: 20px;
  border-radius: 18px;
  margin: 25px 0;
  border-left: 6px solid #b28a5c;
}

.address-landmark {
  background: #2d221e;
  color: #f7e9db;
  padding: 15px 20px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.highlight {
  background: #b28a5c;
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  margin-left: 5px;
}

.openhours,
.contact-small {
  margin-bottom: 15px;
  color: #4f3f38;
}

.openhours i,
.contact-small i {
  color: #b28a5c;
  margin-right: 10px;
}

.btn-map {
  display: inline-block;
  background: #3e2c26;
  color: white;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  border: 1px solid #b28a5c;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-map:hover {
  background: #5a433a;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(90, 67, 58, 0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: #241c18;
  color: #f3e5d8;
  padding: 70px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffefd5;
  margin-bottom: 15px;
}

.footer-brand h3 span {
  color: #b28a5c;
}

.footer-address,
.footer-tagline {
  color: #d4bc9e;
  margin-bottom: 8px;
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8d9c4;
  font-size: 1.3rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #b28a5c;
  color: #241c18;
  transform: translateY(-5px);
}

.footer-links h4,
.footer-menu-highlight h4 {
  color: #ffefd5;
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul,
.footer-menu-highlight ul {
  list-style: none;
}

.footer-links li,
.footer-menu-highlight li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e6d7c2;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #b28a5c;
  padding-left: 8px;
}

.footer-menu-highlight span {
  color: #d4bc9e;
  position: relative;
  padding-bottom: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 188, 158, 0.2);
  padding-top: 30px;
}

.copyright {
  text-align: center;
  color: #cbb29b;
}

.small {
  font-size: 0.9rem;
  margin-top: 8px;
  opacity: 0.8;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #b28a5c;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(178, 138, 92, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 99;
  border: 2px solid white;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #9f7347;
  transform: translateY(-8px);
}

.back-to-top .tooltip {
  position: absolute;
  top: -40px;
  right: 0;
  background: #2d221e;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  white-space: nowrap;
}

.back-to-top:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

/* ===== ANIMASI REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s,
    transform 0.9s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.9s,
    transform 0.9s;
}

.slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.9s,
    transform 0.9s;
}

.slide-right.active,
.slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

.zoom-in.active {
  opacity: 1;
  transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    background: #2d221e;
    width: 100%;
    height: 100vh;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding-top: 60px;
    z-index: 100;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
  .hero {
    background-attachment: scroll;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-content {
    margin-left: 0;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .stats-container {
    justify-content: space-around;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  .btn-primary,
  .btn-outline {
    padding: 12px 28px;
  }
  .menu-card {
    margin: 0;
  }
  .address-full {
    padding: 15px;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.advantages {
  background: linear-gradient(135deg, #fcf8f4 0%, #f9f0e7 100%);
  position: relative;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.advantage-card {
  background: white;
  border-radius: 32px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  border: 1px solid rgba(178, 138, 92, 0.1);
  text-align: center;
  transform-style: preserve-3d;
}

.advantage-card:hover {
  transform: perspective(1000px) rotateX(3deg) rotateY(3deg) translateY(-10px);
  box-shadow: 0 40px 50px -15px rgba(97, 65, 48, 0.2);
  border-color: #b28a5c;
}

.advantage-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(145deg, #b28a5c, #9f7347);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 25px rgba(178, 138, 92, 0.25);
  transform: rotate(10deg);
  transition: transform 0.3s;
}

.advantage-card:hover .advantage-icon {
  transform: rotate(0deg) scale(1.1);
}

.advantage-icon i {
  font-size: 2.8rem;
  color: white;
}

.advantage-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d221e;
  margin-bottom: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.advantage-schedule {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.schedule-badge {
  background: #b28a5c;
  color: white;
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin: 0 auto;
}

.schedule-time {
  color: #65534a;
  font-weight: 600;
  font-size: 1rem;
}

.advantage-card p {
  color: #4f3f38;
  line-height: 1.7;
  margin-bottom: 25px;
}

.advantage-link {
  color: #b28a5c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.advantage-link:hover {
  border-bottom-color: #b28a5c;
  gap: 12px;
}

/* ===== LOGO GAMBAR ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fcf3e6;
  letter-spacing: -0.5px;
}

/* Preloader logo */
.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.preloader-img {
  height: 80px;
  width: auto;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .preloader-img {
    height: 60px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .advantage-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
  .advantage-icon {
    width: 70px;
    height: 70px;
  }
  .advantage-icon i {
    font-size: 2.2rem;
  }
}

/* ===== FOOTER CONTACT ===== */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #e6d7c2;
}

.footer-contact i {
  width: 20px;
  text-align: center;
}

.footer-hours {
  color: #b28a5c;
  font-weight: 600;
  margin-top: 10px;
}

.footer-hours i {
  margin-right: 8px;
}

/* Product Image Frame Styles */
.product-image-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(178, 138, 92, 0.2);
  border: 3px solid #b28a5c;
}

.product-image-frame-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.product-image-frame:hover .product-image-frame-img {
  transform: scale(1.1);
}

.product-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(178, 138, 92, 0.9), transparent);
  padding: 20px 15px 15px;
  text-align: center;
}

.product-image-text {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 20px;
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

/* Sembunyikan weight yang lama */
.product-weight-large {
  display: none;
}
