/* General Reset */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f4f4;
}
/* Header Section */
header {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffa500;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

nav ul li a.active, nav ul li a:hover {
  color: #ffa500;
}

/* Hero Section */
#hero {
  background: url(images/10.jpg)no-repeat center center;
    background-size: cover; /* Pastikan gambar mengisi keseluruhan ruang */
  color: #fff;
  text-align: center;
  padding: 100px 50px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.btn-primary {
  background: #ffa500;
  color: #fff;
}

.btn-primary:hover {
  background: #e69500;
}

.btn-secondary {
  background: #fff;
  color: #333;
  border: 2px solid #ffa500;
}

.btn-secondary:hover {
  background: #ffa500;
  color: #fff;
}


/* About Us Section */
#about {
    padding: 50px 0;
    background-color: #fff;
    color: #333;
}


#about .container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

#about h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.about-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Menu Section */
#menu {
  padding: 40px;
  background-color: #F8F8F8; /* Light background */
  text-align: center;
  color: #5A4632; /* Coffee brown */
}

#menu h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

#menu p {
  font-size: 1.1em;
  color: #333;
}

/* Footer */
footer.footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  width: 100%;
  max-width: 100vw;
  position: relative;
  bottom: 0;
}

footer.footer p {
  font-size: 0.9em;
}

/* Menu Section */
#menu {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
}

#menu h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
  color: #5A4632; /* Coffee color */
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu-category h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #5A4632;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

/* Menu Item Layout */
.menu-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item li {
  font-size: 1.2em;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}

.menu-item li span {
  font-weight: bold;
  color: #5A4632; /* Coffee color */
}

#booking h2 {
	text-align: center;
 font-size: 2.5em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#booking form {
  margin: 30px auto;
  width: 60%;
  background-color: #F9F9F9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#booking form label {
  display: block;
  font-size: 1.1em;
  margin: 15px 0 5px;
  text-align: left;
}

#booking form input, 
#booking form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 1em;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
}

#booking form input:focus {
  border-color: #5A4632;
  outline: none;
}

#booking form button {
  background-color: #5A4632; /* Coffee brown */
  color: #fff;
  cursor: pointer;
  border: none;
}

#booking form button:hover {
  background-color: #FFA500; /* Highlight on hover */
}




/* Contact Section Styling */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 1000px;
}

.contact-details {
  flex: 1;
  min-width: 300px;
  background-color: #F9F9F9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-details p {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1.5;
}

.contact-details p span {
  font-weight: bold;
  color: #5A4632; /* Coffee brown */
}

.contact-details a {
  color: #FFA500; /* Highlight links in orange */
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
  color: #5A4632;
}

/* Image Section Styling */
.contact-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Google Maps Section */
.map-container {
  margin-top: 30px;
  text-align: center;
}

.map-container h3 {
  font-size: 1.5em;
  color: #5A4632; /* Coffee brown */
  margin-bottom: 15px;
}

.map-container iframe {
  border: 1px solid #E0E0E0; /* Subtle border for the map */
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* General Contact Section Styling */
#contact {
  padding: 40px;
  background-color: #fff;
  color: #5A4632; /* Coffee brown */
  text-align: center;
}

#contact h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.info-card {
  flex: 1;
  min-width: 200px;
  background: #F9F9F9;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-size: 1.2em;
  color: #5A4632;
  margin-bottom: 10px;
}
/* Social Links */
.social-links {
  text-align: center;
  margin: 20px 0;
}

.social-links h3 {
  color: #5A4632;
  margin-bottom: 10px;
}

.social-links a {
  margin: 0 10px;
}

.social-links .social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-links .social-icon:hover {
  transform: scale(1.1);
}
.map-form-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.map, .contact-form {
  flex: 1;
  min-width: 300px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px;
  background-color: #FFA500; /* Coffee orange */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.contact-form button:hover {
  background-color: #FF8C00;
}

/* Minimalist Testimonials Section */
#testimonials {
  background-color: #fff;  /* White background for a clean look */
  color: #333;  /* Dark gray text for readability */
  padding: 60px 0;
  text-align: center;
}

#testimonials h2 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial {
  background-color: #f9f9f9;  /* Light gray background */
  padding: 30px 20px;
  margin: 20px auto;
  border-radius: 8px;
  width: 80%;  /* Limit the width for readability */
  max-width: 600px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial cite {
  font-size: 1.2em;
  font-weight: 600;
  color: #777;  /* Light gray for author */
  text-transform: uppercase;
}

.testimonial:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow on hover */
}


/* Menu Section */
#menu {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
}

#menu h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #5A4632; /* Coffee color */
}

h3 {
  font-size: 2em;
  margin-top: 30px;
  color: #5A4632; /* Coffee color */
  margin-bottom: 15px;
}

/* Menu Table */
.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.menu-table th, .menu-table td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.menu-table th {
  background-color: #960;
  color: white;
}

.menu-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.menu-table tr:hover {
  background-color: #ddd;
  cursor: pointer;
}

/* Image Styling for Menu Items (medium-sized images) */
.menu-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: #4E3B31; /* Dark brown background */
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Gallery Section Styles */
#gallery {
  padding: 50px 0;
  background-color: #f4f4f4;
}

#gallery h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

#gallery p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Booking Section */
#booking {
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

form label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

form input,
form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background: #ffa500;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #e69500;
}




