* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}

body {
    color: #fff;
    background-color: #fff;
}

/* NAVIGASI */
nav {
    background-color: #5b2c1e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}


.logo {
    height: 55px;
    width: 65px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

.lang-switch select {
    padding: 5px 8px;
    background: #ffcc00;
    color: #5b2c1e;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.contact-hero {
    background-color: #5b2c1e;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.contact-content h1 {
    font-size: 80px;
    font-weight: 800;
    color: #f7d8a4;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    color: #f7d8a4;
}

.garis-putih {
    width: 80%;
    height: 1.5px;
    border: none;
    background-color: #fff;
}

.contact-social {
    background: #5b2c1e;
    padding: 60px 20px;
    text-align: center;
    color: #f7d8a4;
}

.contact-subtitle {
    max-width: 900px;
    margin: 0 auto 45px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.contact-card {
    text-decoration: none;
    color: #f7d8a4;
    text-align: center;
    width: 150px;
}

.contact-card i {
    font-size: 34px;
    background: #f7d8a4;
    color: #63340D;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0 5px;
}

.contact-card p {
    font-size: 14px;
    opacity: 0.9;
}

#lokasi {
  background-color: #5b2c1e;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.map-container {
  max-width: 900px;
  height: 400px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto; /* pastikan bisa digeser */
}

.alamat {
  margin-top: 30px;
}

.alamat .ikon {
  font-size: 40px;
  color: #f4c27f;
  margin-bottom: 10px;
}

.alamat p {
  color: #f7d8a4;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}


/* Footer */
.footer {
    display: flex;
    background-color: #f2d6a2;
    color: #3e2f20;
}

.footer-left img {
    width: 150px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-right {
    flex: 1;
    padding: 25px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-column ul li a {
    color: #3e2f20;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #a56a2f;
}

.footer-bottom {
    text-align: right;
    margin-top: 50px;
    font-size: 13px;
    color: #4a3a2a;
}


/* Untuk HP (max-width 768px) */
@media (max-width: 768px) {
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    height: auto;
}

/* Logo tetap di kiri */
nav .logo img {
    max-height: 35px;
}

/* Menu di tengah, jarak antar item dirapatkan */
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    font-size: 13px;
}

  /* Switch bahasa di kanan */
.lang-switch select {
    font-size: 12px;
    padding: 3px 6px;
}
}

/* ===== Tablet ≤ 1024px ===== */
@media (max-width: 1024px) {
  .contact-content h1 {
    font-size: 65px;
  }

  .contact-content p {
    font-size: 24px;
  }
}

/* ===== Tablet / HP besar ≤ 768px ===== */
@media (max-width: 768px) {
  .contact-hero {
    background-color: #5b2c1e;
    min-height: 95vh; /* full layar */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 100px; /* kasih ruang atas untuk navbar */
}

.contact-content h1 {
    font-size: 95px; /* lebih besar */
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.contact-content p {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    color: #f7d8a4;
    max-width: 700px;
    margin: 0 auto;
}

}

/* ===== HP kecil ≤ 480px ===== */
@media (max-width: 480px) {
  .contact-hero {
    padding: 100px 15px 60px;
  }

  .contact-content h1 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .contact-content p {
    font-size: 14px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .contact-row {
    gap: 25px;
    margin-bottom: 35px;
    justify-content: center;
  }

  .contact-card {
    width: 42%;
  }

  /* Phone Number jadi sendiri di baris pertama */
  .contact-row:first-of-type .contact-card:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  #lokasi {
    padding: 40px 15px;
  }

  .map-container {
    height: 250px; /* lebih pas untuk HP */
    max-width: 100%;
    box-shadow: none; /* biar simple di HP */
  }

  .alamat {
    margin-top: 20px;
  }

  .alamat .ikon {
    font-size: 30px; /* kecilin icon */
  }

  .alamat p {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 10px; /* biar gak nempel pinggir */
  }
}

/* ====== RESPONSIVE FOOTER (≤ 768px) ====== */
@media (max-width: 768px) {
  .footer {
    flex-direction: row; /* tetap horizontal */
    align-items: stretch;
  }

  .footer-left img {
    width: 110px;
    height: 100%;
    object-fit: cover;
  }

  .footer-right {
    padding: 20px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 20px;
    width: 100%;
  }

  .footer-column {
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
  }
}

/* ====== HP kecil ≤ 480px ====== */
@media (max-width: 480px) {
  .footer-left img {
    width: 95px;
  }

  .footer-container {
    gap: 15px;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-column ul li {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}