* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.navbar {
  position:fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 24px;
}

.logo-icon {
  font-size: 26px;
  color: #c1ab84;
}


.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #c1ab84;
}


.hero {
  height: 100vh;
  background: url("../images/bakery.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}


.hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 20px;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 70px;
  margin-bottom: 20px;
  font-family: "MonteCarlo", cursive;
  font-weight: 400;
  font-style: normal;


}

.description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}


.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-primary {
  background-color: #c1ab84;
  color: #fff;
}

.btn-primary:hover {
  background-color: #b1996e;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
}






.about-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 25px;
  color: #222;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  color: #555;
  font-size: 16px;
}

.about-list .icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #8e7754;
  font-size: 16px;
}


.location-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.location-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.location-text {
  flex: 1;
}

.location-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #222;
}

.location-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.location-image {
  flex: 1;
}

.location-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}



.baking-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 42px;
  margin-bottom: 10px;
  color: #333;
}

.section-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 60px;
}

.baking-cards {
  display: flex;
  gap: 30px;
}

.card {
  flex: 1;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 25px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.card p {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 10px;
}


.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}


.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info .desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-info .subtitle {
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #444;
}

/* ICONS */
.contact-list i {
  width: 40px;
  height: 40px;
  background: #b2955b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}


.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.footer {
  background-color: #403d38;
  color: #bfbfbf;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 80px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  border-bottom: 1px solid #4a4742;
  padding-bottom: 10px;
}

.footer-col ul li i {
  margin-right: 10px;
  color: #c1ab84;
}

.footer-bottom {
  background-color: #353330;
  text-align: center;
  padding: 40px 0;
}

.footer-bottom h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}

.footer-bottom p {
  margin-bottom: 20px;
  font-size: 14px;
}

.social i {
  margin: 0 10px;
  font-size: 18px;
  cursor: pointer;
  color: #bfbfbf;
}

.social i:hover {
  color: #c1ab84;
}

