body{
    padding: 0px;
    margin: 0px;
    background-color: #efe7d3;
}

.hamburger {
  display: none; 
  cursor: pointer;
}
.hamburger img {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .hamburger {
  display: block;
  position: absolute;
  top: 150px;
  left: 5%;
  padding: 15px;
  border-radius: 8px;
  background-color: white; 
  }
}

@media (max-width: 992px) and (min-width: 740px) {
  .hamburger {
  display: block;
  position: absolute;
  top: 140px;
  left: 5%;
  padding: 15px;
  border-radius: 8px;
  background-color: white;
  }
}

.brand-logo{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    padding: 20px 20px;
}

.nav-bar{
    display: flex;
    align-items: center;
    background-color: #3e1f1a;
}

.brand-name{
    font-size: 25px;
    margin: 10px;
    margin-right: 350px;
    color: white;
}

.nav-items{
    display: flex;
    margin-left: 10px;
    margin-right: 100px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    margin-left: 50px;
}

.nav-items:hover {
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
}

body {
  background:  #efe7d3;
  color: white;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5px 10% 60px; 
  min-height: calc(100vh - 80px);
}


.hero-content {
  max-width: 50%;
}

.hero-content .tagline {
  font-family: 'Pacifico', cursive;
  font-size: 26px;
  font-weight: normal;
  color: #ff9d2b;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #4b2e2e;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #4b2e2e;
}

.about {
  padding: 8px 8%;
  background: #efe7d3;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-img img {
  width: 360px;
  height: 280px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  margin-right: 70px;
}

.about-text {
  flex: 1;
  color: #fff;
}

.about-text h2 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #f4a261;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 25px;
  color: #4b2e2e;
}

.about-text .btn.readmore {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 25px;
  background: #f4a261;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.about-text .btn.readmore:hover {
  background: #e76f51;
  color: #fff;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #ff9d2b, #ff6a00);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ff6a00, #ff9d2b);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #e76f51;
  color: #fff;
  background: #e76f51;
}

.btn-outline:hover {
  background: #e76f51;
  color: #fff;
  transform: scale(1.05);
}

.hero-image img {
  width:450px;
  max-width:100%;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    margin-top: 30px;
}
}

.services {
  text-align: center;
  padding: 100px 10%;
  background: #efe7d3;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff9d2b;
  margin-right: 85px;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: #3c0d13;
  border-radius: 16px;
  padding: 30px 20px;
  width: 280px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffcc80;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0dada;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer {
  background-color: #3e1f1a; 
  color: #f5e6d3;
  padding: 40px 20px;
  text-align: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer h2, .footer h4 {
  margin-bottom: 15px;
  color: #ffe0b2; 
}

.footer p, .footer a {
  margin: 5px 0;
  color: #f5e6d3;
  text-decoration: none;
}

.footer a:hover {
  color: #ffcc80; 
}

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

.footer ul li {
  margin-bottom: 8px;
}

.footer-contact strong {
  color: #ffcc80;
}

.footer .socials a {
  font-size: 20px;
  margin-right: 10px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}
.footer .socials a:hover {
  opacity: 0.7;
}

hr {
  border: 0.5px solid #f5e6d3;
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #f5e6d3;
}

@media (max-width: 992px) {
  .nav-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .brand-logo {
    margin-bottom: 10px;
  }

  .brand-name {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .nav-items {
    margin: 8px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-image img {
    width: 280px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-container > div {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .brand-name {
    margin: 10px 0;
    font-size: 18px;
  }

  .nav-items {
    display: block;
    margin: 6px 0;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-image img {
    width: 220px;
  }

  .footer h2, 
  .footer h4 {
    font-size: 18px;
  }

  .footer p, 
  .footer a {
    font-size: 14px;
  }
}