:root {
  --bg-color: #e5dccb;
  --light-bg: #f4efe6;
  --primary-color: #6d4c31;
  --text-color: #4a3422;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(109, 76, 49, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-color);
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: 0.3s;
}
nav ul li a:hover {
  color: var(--primary-color);
}

.hero-new {
  padding: 60px 10%;
  background:
    linear-gradient(rgba(229, 220, 203, 0.8), rgba(229, 220, 203, 0.8)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1350&q=80")
      center/cover;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-flex-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 15px;
}
.hero-subtitle {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
  border: 2px solid var(--primary-color);
}
.btn:hover {
  background: #563b26;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary-color);
}
.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.hero-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.slideshow-wrapper {
  display: none;
  width: 100%;
  max-width: 450px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-video {
  width: 100%;
  max-width: 315px;
}

.shorts-container {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.shorts-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.about-section,
.services,
.prices-section,
.contact {
  padding: 80px 10%;
  text-align: center;
}
.about-section {
  background: var(--white);
}
.services {
  background: var(--bg-color);
}
.prices-section {
  background: var(--white);
}

.about-profile-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(109, 76, 49, 0.2);
}
.about-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-container,
.service-card.quote-style {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-bg);
  padding: 60px 40px;
  border-radius: 50px 5px 50px 5px;
  box-shadow: 20px 20px 0px var(--bg-color);
  border: 1px solid rgba(109, 76, 49, 0.1);
  transition: 0.3s;
}

.about-text {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  max-width: 700px;
}
.about-signature {
  margin-top: 30px;
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service-card.quote-style {
  background: var(--white);
  box-shadow: 10px 10px 0px var(--primary-color);
}
.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.service-card:hover {
  transform: translateY(-5px);
}

.price-card h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  border-bottom: 2px solid var(--bg-color);
  padding-bottom: 10px;
}
.price-list,
.shipping-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--bg-color);
}
.shipping-list li {
  margin-bottom: 15px;
}
.price-note {
  margin-top: 20px;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}
.contact-method {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-color);
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  border: 1px solid rgba(109, 76, 49, 0.1);
}
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.contact-method i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.fa-facebook-f {
  color: #1877f2;
}

footer {
  padding: 50px;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  text-decoration: none;
}

@media (max-width: 992px) {
  .hero-flex-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .contact-links {
    flex-direction: column;
    align-items: center;
  }
  .mini-video {
    max-width: 350px;
    transform: rotate(2deg);
    transition: 0.3s;
  }
  .mini-video:hover {
    transform: rotate(0deg) scale(1.05);
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  nav ul {
    margin-top: 15px;
  }
  nav ul li {
    margin: 0 10px;
  }

  .hero-new {
    padding: 40px 5%;
    min-height: auto;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 90%;
    margin-bottom: 10px;
  }
  .about-section,
  .services {
    padding: 60px 5%;
  }
  .about-container,
  .service-card.quote-style {
    padding: 30px 20px;
    box-shadow: 10px 10px 0px var(--bg-color);
  }
  .about-text {
    font-size: 1.1rem;
  }
  .about-container {
    border-radius: 25px 5px 25px 5px;
  }
  .price-list li {
    font-size: 0.95rem;
    padding: 12px 0;
  }

  .contact-method {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services h2 {
    font-size: 1.8rem;
  }

  .slideshow-wrapper {
    display: block;
    margin: 0 auto 30px;
  }
  .mini-video {
    max-width: 280px;
  }
  .mini-video iframe {
    aspect-ratio: 9/16;
    height: 450px;
  }
}

.fade {
  animation: fadeAnim 1.5s;
}
@keyframes fadeAnim {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
