/* ===================================
   GLOBAL
=================================== */

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

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Poppins', sans-serif;
  background: #f8f4ef;
  color: #222;
  overflow-x: hidden;
}

/* ===================================
   NAVBAR
=================================== */

.navbar{
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 7%;

  z-index: 1000;

  transition: 0.4s ease;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.navbar.scrolled{
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ===================================
   TEXT LOGO
=================================== */

.text-logo{
  display: flex;
  flex-direction: column;
  align-items: center;

  line-height: 1;
}

.text-logo h2{
  font-size: 2rem;
  font-weight: 700;
  color: white;
  transition: 0.4s ease;
}

.text-logo span{
  font-size: 1rem;
  margin-top: 5px;
}

.navbar.scrolled .text-logo h2{
  color: #222;
}

/* ===================================
   NAV LINKS
=================================== */

.nav-links{
  display: flex;
  align-items: center;
  gap: 35px;

  list-style: none;
}

.nav-links a{
  text-decoration: none;
  color: white;
  font-weight: 500;

  transition: 0.3s ease;
}

.navbar.scrolled .nav-links a{
  color: #222;
}

.nav-links a:hover{
  color: #c69b6d;
}

/* ===================================
   NAV BUTTON
=================================== */

.nav-btn{
  text-decoration: none;

  background: #c69b6d;
  color: white;

  padding: 14px 30px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s ease;
}

.nav-btn:hover{
  background: #b6895c;
  transform: translateY(-3px);
}

/* ===================================
   HERO SLIDER
=================================== */

.hero-slider{
  width: 100%;
  height: 100vh;

  position: relative;
  overflow: hidden;
}

/* ===================================
   SLIDES
=================================== */

.slide{
  position: absolute;

  width: 100%;
  height: 100%;

  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 1s ease;

  background-size: cover;
  background-position: center;
}

/* HERO IMAGES */

.slide:nth-child(1){
  background-image:
  url('https://images.unsplash.com/photo-1517849845537-4d257902454a');
}

.slide:nth-child(2){
  background-image:
  url('https://images.unsplash.com/photo-1518020382113-a7e8fc38eac9');
}

.slide:nth-child(3){
  background-image:
  url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b');
}

.slide.active{
  opacity: 1;
  visibility: visible;
}

/* ===================================
   OVERLAY
=================================== */

.overlay{
  position: absolute;

  width: 100%;
  height: 100%;

  top: 0;
  left: 0;

  background: rgba(0,0,0,0.45);
}

/* ===================================
   HERO CONTENT
=================================== */

.hero-content{
  position: relative;
  z-index: 2;

  text-align: center;

  color: white;

  max-width: 850px;

  padding: 20px;
}

.hero-content h1{
  font-size: 5rem;
  line-height: 1.1;

  margin-bottom: 20px;
}

.hero-content p{
  font-size: 1.2rem;
  line-height: 1.8;

  margin-bottom: 35px;
}

.hero-btn{
  display: inline-block;

  background: #c69b6d;
  color: white;

  text-decoration: none;

  padding: 16px 38px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s ease;
}

.hero-btn:hover{
  background: #b6895c;
  transform: translateY(-3px);
}

/* ===================================
   SLIDER BUTTONS
=================================== */

.slider-btn{
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 55px;
  height: 55px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.2);

  color: white;

  font-size: 1.5rem;

  cursor: pointer;

  z-index: 10;

  transition: 0.3s ease;
}

.slider-btn:hover{
  background: rgba(255,255,255,0.4);
}

.prev-btn{
  left: 30px;
}

.next-btn{
  right: 30px;
}

/* ===================================
   SLIDER DOTS
=================================== */

.slider-dots{
  position: absolute;

  bottom: 35px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 12px;

  z-index: 10;
}

.dot{
  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: rgba(255,255,255,0.5);

  cursor: pointer;

  transition: 0.3s ease;
}

.active-dot{
  background: white;
}

/* ===================================
   SECTIONS
=================================== */

section{
  padding: 120px 7%;
}

/* ===================================
   SECTION TITLE
=================================== */

.section-title{
  text-align: center;
  margin-bottom: 60px;
}

.section-title span{
  display: block;
  font-size: 2rem;

  margin-bottom: 10px;
}

.section-title h2{
  font-size: 3rem;

  margin-bottom: 15px;
}

.section-title p{
  color: #666;
  max-width: 650px;
  margin: auto;

  line-height: 1.8;
}

/* ===================================
   PRODUCTS
=================================== */

.products-grid{
  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(260px,1fr));

  gap: 30px;
}

.product-card{
  background: white;

  padding: 80px 30px;

  border-radius: 30px;

  text-align: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);

  transition: 0.4s ease;
}

.product-card:hover{
  transform: translateY(-10px);
}

.product-icon{
  font-size: 3rem;

  margin-bottom: 20px;
}

.product-card h3{
  font-size: 1.4rem;
}

/* ===================================
   FEATURES
=================================== */

.features-section{
  background: white;

  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(250px,1fr));

  gap: 30px;
}

.feature-box{
  background: #f8f4ef;

  padding: 50px 30px;

  border-radius: 30px;

  text-align: center;

  transition: 0.4s ease;
}

.feature-box:hover{
  transform: translateY(-10px);
}

.feature-icon{
  font-size: 2.5rem;

  margin-bottom: 20px;
}

.feature-box h3{
  font-size: 1.4rem;

  margin-bottom: 15px;
}

.feature-box p{
  color: #666;
  line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
=================================== */

.about-section{
  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(320px,1fr));

  align-items: center;

  gap: 60px;
}

.about-paw{
  font-size: 2rem;
  display: block;

  margin-bottom: 15px;
}

.about-text h2{
  font-size: 3rem;

  margin-bottom: 25px;
}

.about-text p{
  color: #666;

  line-height: 1.9;

  margin-bottom: 25px;
}

/* ===================================
   ABOUT IMAGE
=================================== */

.about-image{
  width: 100%;
  height: 550px;

  border-radius: 30px;

  background-image:
  url('https://images.unsplash.com/photo-1517849845537-4d257902454a');

  background-size: cover;
  background-position: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===================================
   EMAIL FORM
=================================== */

.notify-form{
  display: flex;
  gap: 15px;

  flex-wrap: wrap;
}

.notify-form input{
  flex: 1;

  min-width: 250px;

  padding: 18px;

  border: none;

  border-radius: 50px;

  outline: none;

  font-size: 1rem;
}

.notify-form button{
  border: none;

  background: #c69b6d;
  color: white;

  padding: 18px 35px;

  border-radius: 50px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.notify-form button:hover{
  background: #b6895c;
}

/* ===================================
   CONTACT
=================================== */

.contact-grid{
  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(250px,1fr));

  gap: 30px;
}

.contact-card{
  background: white;

  padding: 50px 30px;

  border-radius: 30px;

  text-align: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);

  transition: 0.4s ease;
}

.contact-card:hover{
  transform: translateY(-10px);
}

.contact-card h3{
  font-size: 1.4rem;

  margin-bottom: 15px;
}

.contact-card p{
  color: #666;
}

/* ===================================
   FOOTER
=================================== */

.footer{
  background: #1d1d1d;
  color: white;

  padding-top: 90px;
}

.footer-content{
  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(250px,1fr));

  gap: 40px;

  padding: 0 7% 70px;
}

.footer-box h2,
.footer-box h3{
  margin-bottom: 20px;
}

.footer-box p{
  color: #bbb;
  line-height: 1.8;
}

.footer-box a{
  display: block;

  color: #bbb;

  text-decoration: none;

  margin-bottom: 12px;

  transition: 0.3s ease;
}

.footer-box a:hover{
  color: #c69b6d;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);

  padding: 25px;

  text-align: center;
}

.footer-bottom p{
  color: #888;
}

/* ===================================
   TERMS POPUP
=================================== */

.terms-popup{
  position: fixed;

  left: 30px;
  bottom: 30px;

  width: 360px;

  background: white;

  padding: 25px;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  z-index: 2000;
}

.terms-popup p{
  color: #555;
  line-height: 1.7;

  margin-bottom: 20px;
}

.terms-buttons{
  display: flex;
  gap: 12px;
}

#acceptTerms{
  border: none;

  background: #c69b6d;
  color: white;

  padding: 12px 24px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;
}

#learnMore{
  border: none;

  background: #eee;
  color: #222;

  padding: 12px 24px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;
}

/* ===================================
   FLOATING WHATSAPP
=================================== */

.floating-whatsapp{
  position: fixed;

  right: 25px;
  bottom: 25px;

  background: #25d366;
  color: white;

  text-decoration: none;

  padding: 16px 24px;

  border-radius: 50px;

  font-weight: 600;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);

  z-index: 999;

  transition: 0.3s ease;
}

.floating-whatsapp:hover{
  transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width: 992px){

  .hero-content h1{
    font-size: 4rem;
  }

  .about-text h2{
    font-size: 2.5rem;
  }

}

@media(max-width: 768px){

  .navbar{
    flex-direction: column;
    gap: 20px;

    padding: 20px 5%;
  }

  .nav-links{
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1{
    font-size: 3rem;
  }

  .hero-content p{
    font-size: 1rem;
  }

  .section-title h2{
    font-size: 2.3rem;
  }

  .about-text h2{
    font-size: 2rem;
  }

  .terms-popup{
    width: calc(100% - 40px);

    left: 20px;
    bottom: 20px;
  }

}

@media(max-width: 500px){

  .hero-content h1{
    font-size: 2.3rem;
  }

  .notify-form{
    flex-direction: column;
  }

}
