/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --bg-main: #fdfcf9;        
  --bg-soft: #f3efe9;        
  --text-main: #4a4a4a;      
  --text-light: #7a7a7a;
  --accent: #a68b6d;         
  --accent-soft: #e4d8cc;    
}


body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--text);
}

/* =========================== NAVBAR ============================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 6%;
  background: var(--bg-main);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: .6px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: .3s;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-main);
  cursor: pointer;
}

/* =========================== SIDEBUTTONS ============================= */
.side-buttons {
  position: fixed;
  top: 35%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.side-buttons .btn {
  width: 48px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.side-buttons .btn span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
}

.side-buttons .contact {
  background: var(--accent);
}

.side-buttons .phone {
  background: #9bb8a0; 
  height: 50px;
}

.side-buttons .whatsapp {
  background: #8fcfc0; 
  height: 50px;
  border-bottom-left-radius: 14px;
}

.side-buttons .btn:hover {
  transform: translateX(-6px);
}

/* ================= KITCHEN SECTION ================= */
.kitchen-section {
  background: var(--bg-main);
}

.kitchen-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.kitchen-content {
  flex: 1 1 50%;
  background: url('../images/k2.jpeg') center/cover no-repeat;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kitchen-content .overlay {
  background: rgba(253, 252, 249, 0.85);
  padding: 3rem;
  width: 100%;
  height: 100%;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.underline {
  width: 80px;
  height: 2px;
  background: var(--accent);
}

.heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.heading span {
  color: var(--accent);
}

.description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  width: fit-content;
}

.btn-accent:hover {
  background: #8f7459;
}

.kitchen-slider {
  flex: 1 1 50%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  width: 500%;
  animation: scrollSlides 28s linear infinite;
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scrollSlides {
  0% { transform: translateX(0); }
  100% { transform: translateX(-80%); }
}

/* ================= ABOUT SECTION ================= */
.about-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 7rem 8%;
  background: var(--bg-soft);
  flex-wrap: wrap;
}

.left-experience {
  flex: 1 1 40%;
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-img-1 {
  width: 90%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.left-img-2 {
  position: absolute;
  width: 260px;
  height: 70%;
  bottom: -50px;
  right: 0;
  border: 7px solid var(--bg-main);
  border-radius: 7px;
  background: var(--bg-main);
}

.about-content {
  flex: 1 1 45%;
}

.subtitles {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.titles {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-main);
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
  max-width: 520px;
}

.btns {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid var(--accent);
  border-radius: 30px;
  color: var(--text-main);
  font-weight: 500;
  transition: 0.3s ease;
}

.btns:hover {
  background: var(--accent);
  color: #fff;
}

/* ================= FEATURES SECTION ================= */
.features {
  background: var(--bg-main);
  padding: 4.5rem 8%;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-box {
  background: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 15px 25px rgba(0,0,0,0.06);
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box i {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.feature-box h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================= SERVICES SECTION ================= */
.services {
  background: var(--bg-main);
  padding: 5rem 8%;
}

.services-header h4 {
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.services-header h2 {
    text-align: center;
  font-size: 2.2rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 15px;
}

.services-header p {
    text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  padding: 1.2rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================= CTA BANNER ================= */
.cta-banner {
  background: url('../images/k9.jpeg') center/cover no-repeat;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-content h2 span {
  color: var(--accent);
}

.cta-content p {
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn i {
  font-size: 1.2rem;
}

.cta-btn:hover {
  background: #8f7459;
  transform: translateY(-2px);
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  background: var(--bg-main);
  padding: 5rem 8%;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info h4 {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 500px;
}

.contact-info ul {
  list-style: none;
}

.contact-info ul li {
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.contact-info ul li i {
  color: var(--accent);
  margin-right: 10px;
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #8f7459;
}

/* =========================== FOOTER ============================= */
.footer {
  background: var(--bg-soft);
  padding: 85px 8% 25px;
  color: var(--text-main);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-column h3 {
  font-size: .95rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--text-main);
}

.footer-column h3::after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--accent);
  display: block;
  margin-top: 8px;
}

.footer-column p,
.footer-column ul li,
.footer-column a {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a:hover,
.footer-column.contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: .82rem;
  color: var(--text-light);
}


/* =========================== RESPONSIVE SCREENS ============================= */
@media (max-width: 1024px) {
  .about-section {
    padding: 4rem 6%;
  }

  .titles {
    font-size: 1.7rem;
  }

  .left-img-2 {
    width: 220px;
  }

  .features {
    padding: 4rem 6%;
  }

  .features-wrapper {
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2.1rem;
  }

  .contact-wrapper {
    gap: 2rem;
  }
}


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: var(--bg-main);
    flex-direction: column;
    padding: 30px;
    gap: 1.5rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .kitchen-wrapper {
    flex-direction: column;
  }

  .kitchen-slider {
    aspect-ratio: 1 / 1;
  }

  .heading {
    font-size: 2.2rem;
  }

.about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content p {
    margin: auto;
    margin-bottom: 25px;
  }

  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-card img {
    height: 340px;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }

  .cta-banner {
    min-height: 380px;
  }

  .cta-content h2 {
    font-size: 1.9rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info p {
    margin: auto;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: .75rem;
  }

.kitchen-content .overlay {
    padding: 2rem 1.5rem;
  }

  .heading {
    font-size: 1.8rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .btn-accent {
    padding: 0.7rem 1.8rem;
  }

  .kitchen-slider {
    aspect-ratio: 4 / 5;
  }

  .about-section {
    padding: 3rem 1.15rem;
    text-align: left;
}

  .titles {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .left-experience {
    min-height: auto;
  }

  .left-img-2 {
  width: 120px;
  height: 60%;
  bottom: -20px;
  }

  .features {
    padding: 3rem 1.5rem;
  }

  .features-wrapper {
    grid-template-columns: 1fr;
  }

  .feature-box {
    padding: 2rem 1.5rem;
  }

  .services {
  padding: 5rem 5%;
}

.services-header h4 {
  text-align: left;
}

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card img {
    height: 250px;
  }

  .services-header h2 {
    text-align: left;
    font-size: 1.5rem;
  }

  .services-header p {
    text-align: left;
    font-size: 0.95rem;
  }

  .cta-banner {
    min-height: 340px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .footer {
  padding: 45px 6% 25px;
}
  .footer-container {
    grid-template-columns: 1fr;
  }

}

