* {
  margin: 0;
  padding: 0;

}

body, html {
  font-family: 'Arial', sans-serif;
}

.hero-section {
  background: url('images/header-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;

  flex-wrap: wrap;
}

.logo img {
  width: 100px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-links li {
  cursor: pointer;
  font-weight: bold;
  color: white;
}

.contact {
  text-align: right;
  font-size: 12px;
  color: #fff;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
}

.hero-content h5 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content span {
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding:20px;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 10px ;
    width: 100%;
    gap: 10px;
  }
  .nav-links li{
    width:100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
}

.live-coffee-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 50px;
  background-color: #fff;
  flex-wrap: wrap;
}

.video-box {
  position: relative;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.video-box img {
  width: 100%;
  display: block;
}


.content-box {
  max-width: 500px;
}

.content-box h6 {
  font-size: 12px;
  color: gray;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.content-box p {
  color: #555;
  margin-bottom: 15px;
}

.signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 24px;
  color: #333;
}

@media (max-width: 768px) {
  .live-coffee-section {
    flex-direction: column;
    text-align: center;
  }

  .content-box {
    margin-top: 20px;
  }
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}

.menu-section {
  padding: 60px 30px;
  text-align: center;
}

.menu-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.menu-section p {
  color: #777;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.menu-item h4 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.menu-item h4 span {
  color: #c89c4c;
  font-weight: bold;
}

.menu-item p {
  color: #888;
  font-size: 14px;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
.menu-section {
  padding: 60px 30px;
  text-align: center;
}

.menu-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.menu-section p {
  color: #777;
  margin-bottom: 40px;
}
body {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* Make second image taller (like your layout) */
.tall {
  height: 415px;
}

@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery img {
    width: 90%;
    height: auto;
  }

  .tall {
    height: auto;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.yellow-section {
  background-color: #b68834;
  color: white;
  padding: 50px 20px;
  margin-top: 80px;
  text-align: center;
}

.info-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.info-box {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 20px;
}

.info-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.info-box h3 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.stars {
  color: white;
  margin: 5px 0;
}

.stars i {
  color: gold;
  margin: 0 2px;
}

.info-box p {
  font-size: 20px;
  color: #fff;
  margin-top: 10px;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.stat {
  text-align: center;
  min-width: 150px;
}

.stat h2 {
  font-size: 36px;
  margin: 0;
}

.stat span {
  font-size: 16px;
  opacity: 0.9;
}
menu-section {
  padding: 60px 30px;
  text-align: center;
}

.menu-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.menu-section p {
  color: #777;
  margin-bottom: 40px;
}
.blog-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px;
}

.blog-card {
  width: 45%;
  background-color: #fff;
}

.blog-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.blog-content {
  padding: 15px 0;
}

.categories {
  font-size: 14px;
  color: #888;
}

.blog-content h4 {
  font-weight: bold;
  margin: 10px 0;
}

.description {
  color: #888;
  font-size: 14px;
}

.date {
  margin-top: 10px;
  font-size: 14px;
  color: #00000010;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card { 
    width: 100%;
  }
}
.footer-area {
  background: url('images/footer-bg.jpg')no-repeat center/cover;
  min-height: 80vh; /* Full screen height */
  display: flex;
  align-items: flex-end; /* Push content to the bottom */
  padding-bottom: 60px; /* Add space from bottom */
  color: #fff;
}

.footer-content {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-col h5 {
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-col p {
  color: #ddd;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  width: 70%;
  border-radius: 3px 0 0 3px;
}

.newsletter-form button {
  background: #ffcc00;
  border: none;
  padding: 0 15px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}

.newsletter-form button i {
  color: #000;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .social-icons {
    justify-content: center;
  }
}