* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  background-image:
  linear-gradient(rgba(0, 0, 0, 0.3), transparent), url(../Image/coffee_1.jpg);
  background-size: cover;
  background-position: center;
  padding: 0 8%;
  position: relative;
}
/*  Hamburger */
.menu-btn, .close-btn {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  display: none; 
}
nav {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
nav ul {
  flex: 1;
  text-align: right;
  padding-right: 30px;
  
}
nav ul li {
  display: inline-block;
  list-style: none;
  margin: 30px 60px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 15px;
}
nav ul li a::after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: width 0.3s;
}
nav ul li a:hover::after {
  width: 50%;
}

.text-box {
  color: #fff;
  position: absolute;
  bottom: 8%;
}
.text-box p {
  font-size: 50px;
  font-weight: 600;
}
.text-box h1 {
  font-size: 190px;
  line-height: 160px;
  margin-left: -10px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url(../Image/OIP.jpeg);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back 20s linear infinite;
}
@keyframes back {
  100% {
    background-position: 2000px 0;
  }
}
.text-box h3 {
  font-size: 40px;
  font-weight: 500;
}
.text-box .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.text-box a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  margin-right: 20px;
  border: 2px solid #fff;
  align-items: center;
  background: transparent;
  display: inline-flex;
}
.text-box a span {
  font-size: 30px;
  line-height: 15px;
  margin-right: 5px;  
}

.social-icons{
  position: absolute;
  right: 5%;
  bottom: 8%;
}


.social-icons a {
    text-decoration: none; 
    color: #ffffff;        
    display: flex;         
    align-items: center;
    gap: 8px;              
    margin-bottom: 10px;  
}

.social-icons a:hover {
    color: #f0f0f0;        
    opacity: 0.8;
}

@media (max-width: 992px) {
  nav {
    justify-content: flex-end;
    padding: 20px 0;
  }

  .menu-btn {
    display: block; 
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 70%;
    height: 100vh;
    background:  #c5a059; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px;
    transition: 0.5s;
    z-index: 1000;
    text-align: left;
  }

  nav ul li {
    margin: 15px 0;
  }

  .close-btn {
    display: block;
    align-self: flex-end;
    margin-bottom: 30px;
  }


  #check:checked ~ ul {
    right: 0;
  }


  .text-box h1 {
    font-size: 80px;
    line-height: 80px;
  }
  .text-box p { font-size: 30px; }
  .text-box h3 { font-size: 20px; }

  .social-icons {
  display: none;
}
}
@media (max-width: 768px) {    
    .text-box .row span{
        display: flex;
        flex-direction: column; 
        align-items: center;    
        text-align: center;     
        gap: 15px;            
    }
}
/* About */
.about{
  height: 600px;
  margin-top: 40px;
}
.image {
    display: flex;           
    justify-content: center;  
    align-items: center;      
    flex-wrap: wrap;         
    gap: 10px;                  
    padding: 20px 10%;
}

.about h1 {
    padding: 10px 80px;
    text-justify: auto;
    text-align: justify;
    margin-top: 10px;
}

.about p {
    padding: 10px 80px;
    text-justify: auto;
    text-align: justify;
}
@media (max-width: 600px) {
  .text-box h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .image img {
    width: 100% !important;
    height: auto !important;
  }
  .about {
    height: auto;
    padding-bottom: 50px;
  }
}

/* Menu */

.menu {
    padding: 5rem 7%; 
    background:  #c5a059;
    text-align: center;  
    margin-top: 40px;  
}

/* Judul MENU */
.menu h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 80px;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}



.box {
    padding: 2rem;
    background: #13161a; 
    border: 1px solid #c5a059; 
    border-radius: 15px;
    transition: 0.3s ease;
}

.box:hover {
    background: #fff;
}


.box img {
    height: 15rem;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.box h3 {
    color: #fff;
    font-size: 1.8rem;
    padding: 1.5rem 0 0.5rem;
}


.box .price {
    color: #c5a059; 
    font-size: 1.5rem;
    font-weight: bold;
}

.box .price span {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-left: 8px;
}


.box a {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 2.5rem;
    font-size: 1.4rem; 
    border-radius: 5px;
    background: #c5a059; 
    color: #000; 
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.box:hover h3, 
.box:hover .price,
.box:hover .price span {
    color: #000;
}

.box:hover a {
    background: #fff;
    color: #000;
}

#menu {
    clear: both;
    display: block;
    overflow: hidden;
}


/* Review */

.review {
    background: #C59D5F;
    padding: 3rem 9%;
}

.review .heading {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}


.review .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem; 
}

.review .box-container .box {
    background: #fff; 
    border: 0.1rem solid #e6e6e6;
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex; 
    align-items: flex-start; 
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1); 
    transition: 0.3s ease;
}

.review .box-container .box:hover {
    transform: translateY(-5px);    
}

.review .box-container .box .user-part {
    margin-right: 2rem; 
    flex-shrink: 0; 
}

.review .box-container .box .user-part .user {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover; 
    border: 0.2rem solid #e6e6e6; 
    padding: 0.2rem;
    background: #fff;
}

.review .box-container .box .user-part.no-photo {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    background: #f1f1f1;
    border: 0.1rem solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review .box-container .box .user-part.no-photo i {
    font-size: 3rem;
    color: #b7b7b7;
}

.review .box-container .box .info-part {
    flex-grow: 1; 
}

.review .box-container .box .info-part h3 {
    font-size: 2rem;
    color: #333; 
    margin: 0;
}

.review .box-container .box .info-part .location {
    font-size: 1.4rem;
    color: #777; 
    margin-bottom: 0.5rem;
}

.review .box-container .box .info-part .stars i {
    font-size: 1.4rem;
    color: #f1c40f; 
}

.review .box-container .box .info-part .testimonial {
    font-size: 1.5rem;
    color: #555; 
    line-height: 1.6;
    padding-top: 1rem; 
}

@media (max-width: 768px) {
    .review .box-container {
        display: block; 
    }
}
/* Contact Us */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
}

.map {
    flex: 1 1 400px; 
}

.map iframe {
    width: 100%;
    height: 450px; 
    border-radius: 10px;
    border: none;
}

.contact-row h3 {
    color: white;         
    font-size: 35px;        
    text-align: center;    
    margin-bottom: 20px;    
    width: 100%;            
    display: block;
}


/* Styling Tombol Submit */
.get-contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.get-contact .btn {
    width: fit-content;
    background: #ff4757;
    color: white;
    padding: 10px 30px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}
.contact .get-contact form .btn:hover {
    background: #333; 
    letter-spacing: 2px;
}

.get-contact {
    flex: 1 1 400px; 
    background: transparent;
}

.contact-row form {
    text-align: center;
    padding: 1rem;
}

.contact-row form h3 {
    color: white;           
    font-size: 35px;       
    text-align: center;    
    margin-bottom: 20px;    
    width: 100%;           
    display: block;
}

.inputBox {
    display: flex;
    align-items: center;
    background: #E8E741; 
    margin: 1rem 0;
    padding: 0 1rem;
    border: 1px solid #000;
}

.inputBox span {
    font-size: 1.5rem;
    color: #000;
}

.inputBox input {
    width: 100%;
    padding: 1.2rem; 
    font-size: 1.2rem;
    background: none;
    border: none;
    color: #000;
    outline: none;
}


.footer {
    background: #13131a; 
    text-align: center;
    padding: 2rem 0;
}

.footer .share {
    display: flex;
    justify-content: center;
    gap: 0.8rem; 
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}


.footer .share a {
    height: 3rem;            
    width: 3rem;
    line-height: 3rem;        
    font-size: 1.2rem;        
    color: #fff;            
    border-radius: 50%;       
    display: inline-block;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer .share a.fa-facebook,
.footer .share a.fa-facebook-f {
    background-color: #3b5998;
}

.footer .share a.fa-youtube {
    background-color: #ff0000;
}

.footer .share a.fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer .share a.fa-linkedin,
.footer .share a.fa-linkedin-in {
    background-color: #0077b5;
}

.footer .share a:hover {
    transform: scale(1.1);    
    filter: brightness(1.2);  
}

.footer .credit {
    font-size: 1.4rem;       
    color: #fff;
    font-weight: 300;
    padding-top: 1rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer .credit span {
    color: #d3ad7f;           
    font-weight: bold;
}