* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 18px;
}

/* ===== Top bar ===== */
.top-bar {
  background: #8a7f7b;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 17px;
}

/* Header base styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  background: #fff;
}

.logo img {
  max-height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 20px 5%;
  background: white;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f15a24;
}

/* Hamburger button hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: black;
}

/* Responsive styles */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .logo {
    max-height: 60px;
  }

  nav.active {
    display: block;
    height: 85vh;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    text-align: center;
  }
  nav ul li {
    font-size: 20px;
    margin-top: 20px;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url("../assets//homeHero.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
}

.hero-content {
  background: #fff;
  padding: 40px 50px;
  border-radius: 20px;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-size: 3rem; /* 2.5rem se bada */
  color: #7a6f6b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content .btn {
  display: inline-block;
  background: #f15a24;
  color: #fff;
  padding: 14px 28px; /* button bada */
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px; /* 16px se bada */
  transition: 0.3s;
}

.hero-content .btn:hover {
  background: #d94b1f;
}

/* //////////////////////// Responsive Hero //////////////////////////// */

@media (max-width: 768px) {
.hero {
  height: auto;
  padding: 20px;
  background: url("../assets//homeHero.webp") 
}

.hero-content {
  background: #ffffff3b;
  backdrop-filter: blur(10px);
  padding: 40px 50px;
}

.hero-content h1 {
  color: #fff;
}
  
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 60px 80px;
  background: #fff;
  max-width: 1140px;
  margin: 0 auto;
}

.reviews h2 {
  font-size: 2.8rem; 
  font-weight: bold;
  color: #7a6f6b;
  margin-bottom: 40px;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #faf9f9;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card h3 {
  color: #7a6f6b;
  margin-bottom: 15px;
  font-size: 20px; /* bada */
}

.card p {
  color: #8a7f7b;
  line-height: 1.7;
  font-size: 17px; /* 15px se bada */
  margin-bottom: 15px;
}

.card span {
  font-weight: bold;
  color: #555;
  font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
.reviews {
  padding: 20px;
}

.reviews h2 {
  text-align: center;
}

.review-cards {
  grid-template-columns: repeat(1, 1fr);
}
.contact-section {
  padding:  20px;
}

.location-hours {
  padding: 20px 4%;
  margin: 0px auto;
}


}

/* ===== Contact Section ===== */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.form-container {
  max-width: 800px;
  width: 100%;
}

.form-container h2 {
  font-size: 2.3rem; /* 2rem se bada */
  font-weight: bold;
  margin-bottom: 20px;
  color: #7b726e;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

input,
textarea {
  width: 100%;
  padding: 18px 22px;
  border: 2px solid #b5aeaa;
  border-radius: 50px;
  font-size: 1.1rem; /* bada */
  outline: none;
  color: #5f5555;
}

.row input {
  flex: 1;
}

textarea {
  resize: none;
  height: 140px;
  border-radius: 20px;
}

button {
  background: #f1592a;
  color: #fff;
  border: none;
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 1.1rem; /* bada */
  cursor: pointer;
  transition: 0.3s;
  align-self: flex-start;
}

button:hover {
  background: #d64a1e;
}

/* ===== Location ===== */
.location-hours {
  display: flex;
  justify-content: space-between;
  padding: 50px 4%;
  background: #fff;
  max-width: 1140px;
  border-radius: 15px;
  margin: 50px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container {
  flex: 1;
  position: relative;
}

.address-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff5a1f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 18px; /* 16px se bada */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 15px;
}

.hours-container {
  flex: 1;
  padding-left: 50px;
}

.hours-container h2 {
  font-size: 42px; /* 40px se bada */
  color: gray;
  font-weight: bold;
  margin-bottom: 20px;
}

.hours-container p {
  font-size: 22px; /* 20px se bada */
  margin: 10px 0;
  color: gray;
}

@media (max-width: 768px) {
  .location-hours {
    flex-direction: column;
    padding: 20px;
  }

  .hours-container {
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  .address-tag {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* Footer  */

.site-footer {
  background: #8a7f7b;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.footer-icons a {
  color: #fff;
  font-size: 22px;
  transition: 0.3s;
}

.footer-icons a:hover {
  color: #f15a24; /* hover pe orange effect */
}
