/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f5f1eb;
  color: #2c1b18;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
header {
  background: #1e1412;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-weight: bold;
}

.logo span {
  color: #c6a969;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #c6a969;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('https://drive.google.com/thumbnail?id=1S_9jW316xI9JIw3DUShwIEpFL56iAopI&sz=w2000')
  no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #c6a969;
  color: #1e1412;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #a8894f;
}

/* About */
.about {
  padding: 80px 0;
  text-align: center;
  
}
.pemilik{
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 25px;
   background: #ebe3d5;
   padding: 10px 10px;
   border-radius: 15px;
   margin-top: 50px;
}
.pemilik p{
  text-align: right;
}
.pemilik img{
  height: 40vh;
  border-radius: 15px;
  object-fit: cover;
  transition: 0.3s;
}
.pemilik img:hover{
  transform: translateY(-10px);
}
.judul-pemilik{
  display: flex;
  justify-content: center;
  align-items: top;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 10px;
  text-align: right;

}
.sejarah{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 30px;
}
.sejarah img{
  height: 40vh;
  border-radius: 25px;
  object-fit: cover;
  transition: 0.3s;
}
.sejarah img:hover{
  transform: translateY(-10px);
}
.judul-sejarah p{
  text-align: left;
  color:#2c1b18;
}
/* Menu */
.menu {
  background: #ebe3d5;
  padding: 80px 0;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.card img {
  height: 20vh;
  border-radius: 15px;
  
}

.card:hover {
  transform: translateY(-10px);
}

.card span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #1e1412;
}

/* Contact */
.contact{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 50px;
}

.contact-info{
    max-width: 300px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.form-class{
    background: #d8cfc1;
    padding: 30px;
    border-radius: 15px;
    max-width: 250px;
    margin-bottom: 50px;
}

.form-class input,
.form-class textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 5px;
}
button{
  width: 100%;
  border-radius: 5px;
}
/* Footer */
footer {
  background: #1e1412;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    right: -100%;
    background: #1e1412;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    transition: 0.3s;
  }

  .nav-menu.active {
    right: 20px;
  }

  .hamburger {
    display: flex;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}
@media (max-width:768px){

.pemilik{
  flex-direction: column;
  text-align: center;
}

.pemilik p{
  text-align: center;
}

.sejarah{
  flex-direction: column;
}

}