:root {
  --main-color: #8e7754;
  --second-color: #e0c679;
  --section-background: #dedcdc;
  --main-padding: 120px;
}
/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Alegreya", serif;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
/* Media Query */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 1400px) {
  .container {
    width: 1350px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
ul {
  list-style: none;
}

/* Header Section */
header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.3s ease;
}
header.scrolled {
  position: fixed;
  background: rgba(64, 61, 56, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}
header.scrolled .container {
  min-height: 70px;
}
header.scrolled .logo img {
  width: 150px;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
  transition: min-height 0.3s ease;
}
header .logo img {
  width: 180px;
  display: block;
  transition: width 0.3s ease;
}

/* Toggle Button */
header .toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  z-index: 1100;
  position: relative;
}
header .toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header .toggle:active {
  transform: scale(0.92);
}

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}
header nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
header nav .main-nav {
  display: flex;
  align-items: center;
}
header nav .main-nav li {
  position: relative;
}
header nav .main-nav li a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 18px;
  color: white;
  transition: color 0.3s ease;
  text-transform: capitalize;
  position: relative;
  letter-spacing: 0.3px;
}
header nav .main-nav li a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 2px;
  background-color: var(--second-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 1px;
}
header nav .main-nav li a:hover::after,
header nav .main-nav li a.active::after {
  transform: scaleX(1);
}
header nav .main-nav li a:hover {
  color: var(--second-color);
}
header nav .main-nav li a.active {
  color: var(--second-color);
}
header nav .main-nav li a .caret {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.has-submenu:hover > a .caret {
  transform: rotate(180deg);
}
header nav .main-nav .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  background-color: #443f38;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  z-index: 2000;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}
header nav .main-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #443f38 transparent;
}
.has-submenu:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header nav .main-nav .sub-menu li {
  width: 100%;
}
header nav .main-nav .sub-menu li a {
  color: #ccc;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 400;
}
header nav .main-nav .sub-menu li a::after {
  display: none;
}
header nav .main-nav .sub-menu li > a:hover {
  background-color: rgba(224, 198, 121, 0.15);
  color: var(--second-color);
  padding-left: 25px;
}

/* Landing Section */
.landing {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../image/drew-coffman-1872.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing .text {
  text-align: center;
  color: white;
}
.landing .text .Welcome {
  font-size: 22px;
  margin-bottom: 30px;
}
.landing .text h2 {
  font-size: 76px;
  margin-bottom: 30px;
  font-family: Alegreya;
}
.landing .text .about {
  font-weight: 400;
  font-size: 20px;
  max-width: 620px;
  line-height: 2;
  font-family: Alegreya Sans;
}
.landing .text .btns .btn {
  padding: 16px 20px;
  color: white;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
  padding: 16px 20px;
}
.landing .text .btns .btn:hover {
  color: black;
}
.landing .text .btns .btn.btn-1 {
  background-color: var(--main-color);
  border: white;
  transition: 0.4s;
}
.landing .text .btns .btn-1:hover {
  background-color: white;
}
.landing .text .btns .btn.btn-2 {
  transition: 0.4s;
  border: 2px solid white;
  background-color: transparent;
}
.landing .text .btns .btn-2:hover {
  background-color: white;
}
.landing .scroll-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 2px solid white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  z-index: 5;
}
.landing .scroll-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  margin-top: 8px;
  animation: scroll-down 3s ease-in-out infinite;
}
@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 0.85;
  }
  15% {
    opacity: 0.65;
  }
  25% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

/* about-section Section */
.about-section {
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
  background-color: #fff;
}
.about-section .container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.about-section .container .left {
  position: relative;
  padding: 20px;
  flex: 1;
}
.about-section .container .left::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -3px;
  width: 92%;
  height: 92%;
  border: 3px solid var(--second-color);
  border-radius: 10px;
  z-index: 1;
  transform: translate(-15px, -15px);
  transition: transform 0.5s ease;
}
.about-section .container .left:hover::before {
  transform: translate(-5px, -5px);
}
.about-section .container .left img {
  max-width: 100%;
  width: 600px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
  position: relative;
  transition: transform 0.5s ease;
}
.about-section .container .left:hover img {
  transform: scale(1.02);
}

.about-section .container .right {
  flex: 1;
}
.about-section .container .right h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #333;
  font-weight: 500;
}
.about-section .container .right p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}
.about-section .container .right ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  cursor: default;
}
.about-section .container .right ul li:hover {
  transform: translateX(10px);
}
.about-section .container .right ul li i.icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--second-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: var(--main-color);
  font-size: 16px;
  transition: 0.3s;
}
.about-section .container .right ul li:hover i.icon {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
  transform: rotate(360deg);
}
.about-section .container .right ul li span {
  font-size: 17px;
  color: #555;
}

/* Location Section */
.location-section {
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
  background-color: var(--section-background);
}
.location-section .container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.location-section .container .left {
  flex: 1;
}
.location-section .container .left h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #333;
  font-family: "Alegreya", serif;
}
.location-section .container .left p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}
.location-section .container .left .btn-location {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--main-color);
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(142, 119, 84, 0.3);
}
.location-section .container .left .btn-location:hover {
  background-color: #333;
  transform: translateY(-3px);
}
.location-section .container .right {
  flex: 1;
}
.location-section .container .right img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50px 0 50px 0;
  box-shadow: 15px 15px 0px rgba(142, 119, 84, 0.2);
  transition: all 0.4s ease;
  object-fit: cover;
  height: 400px;
  width: 100%;
}
.location-section .container .right:hover img {
  border-radius: 0 50px 0 50px;
  box-shadow: -15px 15px 0px rgba(142, 119, 84, 0.4);
  transform: translateY(-5px);
}

/* Backing Section */
.baking-section {
  padding: 75px 20px;
  text-align: center;
  background-color: #fff;
}
.baking-section .container {
  margin: 0 auto;
}
.baking-section .container .section-title {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 30px;

  color: #333;
}
.baking-section .container .section-subtitle {
  color: #777;
  margin-bottom: 70px;
  font-size: 16px;
}
.baking-section .container .our-baking {
  display: flex;
  gap: 30px;
}
.baking-section .container .our-baking .baking-card {
  text-align: center;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.baking-section .container .our-baking .baking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.baking-section .container .our-baking .baking-card .card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.baking-section .container .our-baking .baking-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.baking-section .container .our-baking .baking-card:hover .card-image img {
  transform: scale(1.1);
}
.baking-section .container .our-baking .baking-card .card-image .price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--main-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.baking-card .card-details {
  padding: 25px 20px;
  text-align: center;
  background-color: #fff;
}
.baking-card .card-details h3 {
  font-family: "Alegreya", serif;
  font-size: 24px;
  color: #443f38;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.baking-card .card-details p {
  font-family: sans-serif;
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 0;
}
.baking-card:hover .card-details h3 {
  color: var(--main-color);
}

/* Contact Section */
.contact {
  background-color: var(--section-background);
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.contact .contact-information {
  flex: 1;
}
.contact .contact-information h2 {
  font-size: 35px;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  font-family: "Alegreya", serif;
}
.contact .contact-information p {
  font-size: 16px;
  line-height: 1.8;
  color: #777;
  margin-bottom: 30px;
  max-width: 540px;
  width: 100%;
}
.contact .contact-information form input,
.contact .contact-information form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 5px;
  font-family: inherit;
  outline: none;
  transition: 0.3s;
}
.contact .contact-information form input:focus,
.contact .contact-information form textarea:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 8px rgba(142, 119, 84, 0.2);
}
.contact .contact-information form button {
  background-color: var(--main-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(142, 119, 84, 0.3);
}
.contact .contact-information form button:hover {
  background-color: #333;
  transform: translateY(-3px);
}
.contact .contact-information .contact-details-list ul {
  padding: 0;
  margin-top: 30px;
  list-style: none;
}
.contact .contact-information .contact-details-list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact .contact-information .contact-details-list ul li i {
  width: 40px;
  height: 40px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background-color: var(--main-color);
  color: white;
  font-size: 14px;
}
.contact .contact-information .contact-details-list ul li span {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}
.contact .contact-location {
  flex: 1;
  height: 100%;
}
.contact-location iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 15px;
  border: none;
  filter: grayscale(30%);
  transition: filter 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-location iframe:hover {
  filter: grayscale(0%);
}

/* Footer Section */
footer {
  background-color: #403d38;
  color: #b3b3b3;
  font-family: "Alegreya", serif;
}
footer .main-footer {
  padding: 80px 0;
}
footer .main-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
footer .main-footer .container .footer-col {
  flex: 1;
  min-width: 250px;
}
footer .main-footer .container .footer-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: normal;
}
footer .main-footer .container .footer-col p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}
footer .main-footer .container .footer-col .highlight {
  margin-top: 20px;
}
footer .main-footer .container .footer-col ul {
  list-style: none;
  padding: 0;
}
footer .main-footer .container .footer-col ul li {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 18px;
  cursor: pointer;
}
footer .main-footer .container .footer-col ul li:not(:last-child) {
  border-bottom: 1px solid #b3b3b330;
}
footer .main-footer .container .footer-col ul li i {
  margin-right: 12px;
  font-size: 12px;
  margin-top: 5px;
  color: #b3b3b3;
}
footer .bottom-footer {
  background-color: #353330;
  padding: 50px 0;
  text-align: center;
  padding-top: 70px;
}
footer .bottom-footer .container .footer-logo {
  max-width: 375px;
  margin-bottom: 20px;
  opacity: 0.9;
}
footer .bottom-footer .container p {
  font-size: 14px;
  color: #888;
}
footer .bottom-footer .container ul.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  gap: 20px;
}
footer .bottom-footer .container ul.social-media li {
  background-color: #484540;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: linear 0.4s;
}
footer .bottom-footer .container ul.social-media li.facebook:hover {
  background-color: #1877f2;
}
footer .bottom-footer .container ul.social-media li.google:hover {
  background-color: #ea4335;
}
footer .bottom-footer .container ul.social-media li.linkedin:hover {
  background-color: #0a66c2;
}
footer .bottom-footer .container ul.social-media li.twitter:hover {
  background-color: #1da1f2;
}
footer .bottom-footer .container ul.social-media li a {
  color: #8c8a86;
}
footer .bottom-footer .social-media li:hover a {
  transform: rotate(360deg);
  transition: 0.4s;
}

/* Pop-up window */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(68, 63, 56, 0.6);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-content {
  background-color: #fff;
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  overflow: hidden;
  position: relative;
  animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-image {
  flex: 1;
  background-color: #f0f0f0;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.modal-info h2 {
  font-family: "Alegreya", serif;
  font-size: 32px;
  color: #443f38;
  margin-bottom: 10px;
}
.price-display {
  font-size: 24px;
  color: var(--main-color);
  font-weight: bold;
  font-family: sans-serif;
}
.divider {
  width: 50px;
  height: 3px;
  background-color: var(--second-color);
  margin: 15px 0 20px 0;
  border-radius: 2px;
}
.modal-info p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.close-btn:hover {
  color: #d9534f;
  transform: rotate(90deg);
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-image {
    height: 250px;
  }
  .modal-info {
    padding: 25px;
  }
}

/* Animation JS */
.hidden-element {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.show-element {
  opacity: 1;
  transform: translateY(0);
}
