* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #f4f2e6;
}

/******************************NAV BAR*********************************************/
header,
.announce-bar,
nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #fefefe;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(62, 37, 33, 0.08);
}
/* --- Announcement Bar --- */
.announce-bar {
  background: #3e2521;
  color: #f4f2e6;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 24px;
}

.announce-bar span {
  opacity: 0.85;
}

.announce-center {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1px;
}

.announce-right {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.countdown {
  display: flex;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #d8b78a;
}

/* --- Main Nav --- */
.main-nav {
  background: #f4f2e6;
  border-bottom: 1px solid #e0d8cc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 62px;
}

/* --- Left Links --- */
.nav-links-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.nav-links-left a,
.nav-shop {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3e2521;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s;
}

.nav-links-left a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #d8b78a;
  transition: width 0.25s ease;
}

.nav-links-left a:hover,
.nav-shop:hover {
  color: #d8b78a;
}

.nav-links-left a:hover::after {
  width: 100%;
}

.nav-shop .chevron {
  font-size: 14px;
  line-height: 1;
}

/* --- Logo --- */
.nav-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text {
  font-family: "Lobster Two", cursive;
  font-size: 1.55rem;
  color: #3e2521;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
}

.logo-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7a5c4a;
  text-align: center;
  margin-top: 2px;
}

/* --- Right Icons --- */
.nav-icons {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #3e2521;
}

.nav-icons svg {
  cursor: pointer;
  transition:
    color 0.2s,
    stroke 0.2s;
  color: #3e2521;
  stroke: #3e2521;
  display: block;
}

.nav-icons svg:hover {
  color: #d8b78a;
  stroke: #d8b78a;
}

.nav-divider {
  height: 14px;
  width: 1px;
  background: #c8bfb4;
}

.cart-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #3e2521;
  color: #f4f2e6;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 700;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/******************************HERO SECTION*********************************************/
.hero {
  height: 100vh;
  background-image: url("/images/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-content {
  position: absolute;
  left: 38%;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-align: center;
}

h1 {
  font-size: 3.5rem;
}

.hero p {
  width: 500px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: 1px;
}

.hero-cta-btns button {
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  border: black solid 2px;
  width: 200px;
  padding: 15px 0;
  margin: 20px 15px;
}

.hero-cta-btns {
  display: flex;
  justify-content: space-around;
}

.hero-shop-btn,
.hero-new-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1;
}

.hero-shop-btn::before,
.hero-new-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 150%;
  background-color: #d8b78a;
  top: 50%;
  left: 0;
  transform: skewX(30deg) translate(-180%, -50%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.hero-shop-btn:hover,
.hero-new-btn:hover {
  color: #fefefe;
  background-color: #2a1a17;
}

.hero-shop-btn:hover::before,
.hero-new-btn:hover::before {
  transform: skewX(30deg) translate(180%, -50%);
}

.hero-shop-btn:active,
.hero-new-btn:active {
  transform: scale(0.97);
}

/******************************SECTION DIVIDER*********************************************/
.section-divider {
  background: #3e2521;
  color: #f4f2e6;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

/******************************CATEGORIES SECTION*********************************************/

.categories {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 30px 0px;
}

.catergory {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  color: black;
  font-weight: 600;
}

.catergory img,
.new-cat {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  cursor: pointer;
  border: 1px solid #3e2521;
}

.new-cat {
  background: black;
  color: #f4f2e6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 5px;
}

/******************************FEATURED SECTION*********************************************/
.featured-section {
  padding: 0 25px;
  display: flex;
  flex-direction: column;
}

.featured-section h2 {
  font-weight: 500;
  letter-spacing: 3px;
}

.featured-section p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: 1px;
}

.featured-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.featured-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.featured-price {
  font-weight: 600;
}

.featured-item img {
  height: 400px;
  width: 285px;
}

.featured-item button {
  width: 285px;
  padding: 10px 0;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  border: black solid 2px;
}

.featured-name,
.new-name {
  width: 285px;
}

.featured-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1;
}

.featured-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 150%;
  background-color: #d8b78a;
  top: 50%;
  left: 0;
  transform: skewX(30deg) translate(-180%, -50%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.featured-btn:hover {
  color: #fefefe;
  background-color: #2a1a17;
}

.featured-btn:hover::before {
  transform: skewX(30deg) translate(180%, -50%);
}

.featured-btn:active {
  transform: scale(0.97);
}

/******************************SEVICES SECTION*********************************************/
.services-section {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-section h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-align: center;
  color: #574b31;
  margin-bottom: 20px;
}

.services-main-container {
  display: flex;
  gap: 20px;
  width: 90%;
}

.services-container1,
.services-container2 {
  flex: 1;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: #fefefe;
}

.services-container1:hover,
.services-container2:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.services-container1 {
  padding: 40px;
  display: flex;
  align-items: center;
}

.services-container1 p {
  background: #f4f2e6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 1px;
  padding: 10px;
}
.services-container1 span {
  font-weight: 600;
}
.services-container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 40px 40px;
}

.service {
  background: #f4f2e6;
  width: 100%;
  border-radius: 5px;
  padding: 10px 5px;
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 1px;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.service-price {
  font-weight: 700;
}

.services-section button {
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  color: #574b31;
  border: #574b31 solid 2px;
  width: 200px;
  padding: 15px 0;
  margin-top: 30px;
}

.services-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1;
}

.services-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 150%;
  background-color: #d8b78a;
  top: 50%;
  left: 0;
  transform: skewX(30deg) translate(-180%, -50%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.services-btn:hover {
  color: #fefefe;
  background-color: #2a1a17;
}

.services-btn:hover::before {
  transform: skewX(30deg) translate(180%, -50%);
}

.services-btn:active {
  transform: scale(0.97);
}
/******************************NEW ARRIVALS SECTION*********************************************/
.new-section {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  background: #fefefe;
}

.new-section h2 {
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 3px;
}

.new-section p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  line-height: 0.9;
  letter-spacing: 1px;
}

.new-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.new-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.new-price {
  font-weight: 600;
}

.new-item img {
  height: 400px;
  width: 285px;
}

.new-item button {
  width: 285px;
  padding: 10px 0;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  border: black solid 2px;
}

.new-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1;
}

.new-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 150%;
  background-color: #d8b78a;
  top: 50%;
  left: 0;
  transform: skewX(30deg) translate(-180%, -50%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.new-btn:hover {
  color: #fefefe;
  background-color: #2a1a17;
}

.new-btn:hover::before {
  transform: skewX(30deg) translate(180%, -50%);
}

.new-btn:active {
  transform: scale(0.97);
}

/******************************** TESTIMONIES ****************************************/
.testimonial {
  background: #3e2521;
  color: #f4f2e6;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.test-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  width: 80%;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.test1,
.test2,
.test3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.test2 {
  padding: 0 60px;
}

.test1 img,
.test2 img,
.test3 img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.test2 img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.name {
  margin-top: 10px;
}

.rating {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

/******************************** FAQ section ****************************************/
.faq {
  padding: 30px 0;
}

.faq h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-align: center;
  color: #574b31;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  gap: 50px;
  width: 80%;
  margin: 0 auto;
}

.faq-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 2.3px solid #574b31;
  border-radius: 14px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b5d3f;

  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #cfa853;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 1.1rem;
}

.faq-form-container {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.text h3 {
  font-size: 2rem;
}

.text p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.faq-form {
  margin: 10px auto;
  border: 2.3px solid #574b31;
  border-radius: 14px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-form input,
.faq-form textarea {
  padding: 9px;
  border: 2.3px solid #574b31;
  border-radius: 14px;
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.faq-form label {
  margin: 8px 0;
  opacity: 0.9;
  font-size: 1rem;
  align-self: flex-start;
  padding-left: 30px;
}

.faq-form textarea {
  min-height: 120px;
}

.faq-form button {
  background-color: #574b31;
  color: #f4f2e6;
  padding: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 90%;
  margin: 10px 0;
  border-radius: 14px;
  box-sizing: border-box;
}

.faq-form button:hover {
  color: #574b31;
  background-color: #f4f2e6;
  border: 1px solid #574b31;
}

.faq-container {
  opacity: 0.75;
}

/******************************** CONTACT section ****************************************/
.contact {
  margin: 0px auto;
  width: 90%;
  display: block;
}

.contact h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-align: center;
  color: #574b31;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  gap: 30px;
}

.map {
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid #ffdec7;
  width: 60%;
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
}

.contact-icon svg {
  display: block;
  margin: 0 auto;
}

.contact-text {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
}

.contact-image-container {
  position: relative;
  width: 90%;
  margin: 20px auto;
  display: block;
}

.contact-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}

.contact-image-container img {
  width: 100%;
  height: 60vh;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 10px;
}

.overlay-text h2 {
  font-size: 3rem;
}

.overlay-text p {
  opacity: 0.9;
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.12em;
}

.overlay-text button {
  margin: 15px 0;
  padding: 15px 45px;
  font-size: 1.1rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4f2e6;
  background: #574b31;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.overlay-text button:hover {
  background: #fefefe;
  color: #574b31;
  border: 2px solid #f4f2e6;
}

/******************************** FOOTER section ****************************************/

footer {
  background-color: #3e2521;
  color: #f4f2e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

footer strong {
  color: #fefefe;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-icon svg {
  width: 40px;
  height: 40px;
}

.footer-logo img {
  height: 150px;
  width: 200px;
  padding: 0;
  margin: 0;
}

.footer-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  padding: 5px;
}

.footer-contact p {
  margin: 10px 0;
  opacity: 0.95;
}

ul {
  list-style-type: none;
  margin-top: 10px;
}

li {
  margin-bottom: 5px;
}

a:hover {
  color: #cfa853;
  transform: scale(1.1);
  transition: 0.3s;
}

a {
  text-decoration: none;
  color: #f4f2e6;
}

.footer-credits {
  font-size: 1rem;
  margin-top: 10px;
}

footer hr {
  border: none;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 80%;
}

/******************************** BOOKING MODAL ****************************************/
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fefefe;
  border-radius: 16px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.modal-title {
  font-family: "Lobster Two", cursive;
  font-size: 1.8rem;
  color: #574b31;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 24px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.modal-field label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #574b31;
  margin-bottom: 6px;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  padding: 10px 14px;
  border: 1.8px solid #d6cfc4;
  border-radius: 8px;
  background: #f4f2e6;
  outline: none;
  transition: border-color 0.2s;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: #574b31;
}

.modal-field textarea {
  min-height: 80px;
  resize: vertical;
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-submit:hover {
  background: #1ebe5d;
}
