/* 
* Plug & Poo Landing Page Styles
* Modern, responsive design with pastel color palette
*/

:root {
  --mint: #98D8C8;
  --beige: #F5F0E1;
  --soft-gray: #E0E0E0;
  --dark-gray: #707070;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  section {
    padding: 70px 0;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: block;
  height: 60px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--mint);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--mint), var(--beige));
  transition: width 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
  border-radius: 5px;
}

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

.language-toggle {
  margin-left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(152, 216, 200, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.language-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-gray);
  transition: all 0.3s ease;
  padding: 5px 8px;
  border-radius: 20px;
}

.language-toggle button:hover {
  color: var(--mint);
  transform: translateY(-2px);
}

.language-toggle button.active {
  color: var(--white);
  background-color: var(--mint);
  box-shadow: 0 4px 10px rgba(152, 216, 200, 0.3);
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-gray);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-menu-button span:nth-child(1) {
  top: 0;
}

.mobile-menu-button span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-button span:nth-child(3) {
  bottom: 0;
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 50px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .language-toggle {
    margin-left: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--beige);
  background-image: radial-gradient(var(--mint) 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: -1;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
  position: relative;
  z-index: 5;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--mint) 0%, #7FCFBB 100%);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(152, 216, 200, 0.4);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 8px 15px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero-feature i {
  color: var(--mint);
  font-size: 1rem;
}

.hero-feature span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.hero-product {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--mint) 0%, rgba(152, 216, 200, 0) 70%);
  filter: blur(30px);
  opacity: 0.6;
  border-radius: 50%;
  z-index: 1;
  animation: glow-pulse 3s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.product-orbit {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px dashed rgba(152, 216, 200, 0.3);
  animation: spin 20s linear infinite;
  z-index: 2;
}

.orbit-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(152, 216, 200, 0.2);
}

.orbit-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.orbit-icon-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitFloat 5s ease-in-out infinite;
}

.orbit-icon-2 {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation: orbitFloat 4s ease-in-out infinite;
}

.orbit-icon-3 {
  bottom: 10%;
  left: 30%;
  animation: orbitFloat 6s ease-in-out infinite;
}

@keyframes orbitFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-product img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  animation: float 6s infinite ease-in-out;
  z-index: 4;
  position: relative;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.hero-product img:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--dark-gray);
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--mint);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(152, 216, 200, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(152, 216, 200, 0.6);
}

@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    order: 1;
  }
  
  .hero-product {
    order: 0;
    margin-bottom: 30px;
  }
  
  .hero-product img {
    max-width: 90%;
    height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Features Section */
.features {
  background-color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, var(--mint) 0%, var(--beige) 100%);
  transform: skewY(-2deg);
  z-index: 1;
}

.features .container {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  opacity: 1 !important;
  visibility: visible !important;
}

.feature-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(152, 216, 200, 0.2);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--mint), var(--beige));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(152, 216, 200, 0.3);
}

.feature-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, var(--mint), var(--beige));
  border-radius: 50%;
  z-index: 1;
  opacity: 0.7;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.feature-icon {
  width: 90px;
  height: 90px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 2.5rem;
  color: var(--mint);
  margin: 0 auto;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-gray);
  font-weight: 700;
}

.feature-card p {
  color: var(--dark-gray);
  opacity: 0.8;
  line-height: 1.6;
}

/* Product Preview Section */
.product-preview {
  background-color: var(--beige);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/pattern-bg.png');
  background-size: 400px;
  opacity: 0.05;
  animation: parallaxBg 20s linear infinite;
}

@keyframes parallaxBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 400px;
  }
}

.product-preview .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--mint);
  margin: 15px auto 0;
  position: relative;
  overflow: hidden;
}

.title-underline span {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--mint), var(--beige), var(--mint));
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.product-content {
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
}

.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.product-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-glow-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 216, 200, 0.3) 0%, rgba(152, 216, 200, 0) 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(152, 216, 200, 0.3);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(152, 216, 200, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(152, 216, 200, 0);
  }
}

.product-mockup {
  max-width: 350px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.product-mockup:hover {
  transform: scale(1.05) rotate(2deg);
}

.product-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--mint) 0%, var(--beige) 100%);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.top-left {
  top: 20%;
  left: 0;
  animation: float 3s ease-in-out infinite;
}

.bottom-right {
  bottom: 20%;
  right: 0;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.product-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-tagline {
  font-size: 1.8rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-weight: 700;
}

.product-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-feature i {
  color: var(--mint);
  font-size: 1.2rem;
}

.product-feature span {
  font-weight: 500;
  color: var(--dark-gray);
}

.cta-container {
  margin-top: 40px;
}

.coming-soon {
  font-weight: 600;
  color: var(--mint);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.notify-button {
  background: linear-gradient(to right, var(--mint), var(--beige));
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(152, 216, 200, 0.4);
}

.notify-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(152, 216, 200, 0.6);
}

@media (max-width: 992px) {
  .product-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  
  .product-info .section-title {
    text-align: center;
  }
  
  .product-image {
    margin-bottom: 30px;
  }
}

/* FAQ Section */
.faq {
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--white);
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(152, 216, 200, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  transition: var(--transition);
}

.faq-icon.active {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px 20px;
  color: var(--dark-gray);
  opacity: 0.9;
}

/* Contact Section */
.contact {
  background-color: var(--beige);
}

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

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--soft-gray);
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(152, 216, 200, 0.3);
}

.submit-button {
  background-color: var(--mint);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background-color: #7ac0b0;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.company-info {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--mint);
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(152, 216, 200, 0.5);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    align-items: center;
    text-align: center;
  }
}

/* Footer */
.footer {
  background-color: var(--white);
  padding: 30px 0;
  border-top: 1px solid var(--soft-gray);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--mint);
}

@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
}

/* Our Products Section */
.our-products {
  background-color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.product-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--soft-gray);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card-title {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin: 20px 20px 10px;
  text-align: center;
}

.product-card-features {
  padding: 0 20px 20px;
  font-size: 0.9rem;
}

.product-card-features p {
  margin-bottom: 8px;
  color: var(--dark-gray);
  line-height: 1.5;
}

.product-card-features strong {
  font-weight: 600;
  color: var(--mint);
}
