/* 
   furrypornai.pw - Main Stylesheet 
   Teal/ocean color scheme with unique furry-inspired design elements
*/

:root {
  /* Primary colors - Teal/ocean palette */
  --primary: #3FA796;
  --primary-dark: #2F8F9D;
  --secondary: #1A5F7A;
  --secondary-dark: #0F3460;
  --accent: #E2DCC8;
  --accent-dark: #C1B098;
  
  /* Neutral colors */
  --dark: #2C3333;
  --medium-dark: #395B64;
  --medium: #A5C9CA;
  --light: #F5F2E7;
  --white: #FFF9F0;
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-circle: 50%;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
  position: relative;
}

/* Furry-style pattern background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 15 Q25 5 35 15 L45 25 Q55 35 65 25 L75 15 Q85 5 95 15' stroke='%233FA796' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--medium-dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(47, 143, 157, 0.3);
}

.btn:hover::before {
  opacity: 1;
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Water ripple effect */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.ripple-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Header & Navigation */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo svg {
  width: 40px;
  height: auto;
}

.nav-list {
  display: flex;
  list-style-type: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--medium-dark);
  font-weight: 600;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: var(--radius-sm);
}

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: calc(5rem + 60px) 0 5rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

/* Wave-like divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--spacing-xl);
}

.hero-text {
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent);
  opacity: 0.3;
  z-index: -1;
  border-radius: var(--radius-sm);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
}

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

/* Features Section */
.features {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto var(--spacing-xl);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transform: translateX(-50%);
  border-radius: var(--radius-circle);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-dark);
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  margin-bottom: var(--spacing-md);
  width: 70px;
  height: 70px;
  background-color: rgba(63, 167, 150, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.feature-description {
  color: var(--medium-dark);
  font-size: 1rem;
}

/* Showcase Section */
.showcase {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.showcase-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.showcase-content {
  padding: var(--spacing-lg);
}

.showcase-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.showcase-text {
  margin-bottom: var(--spacing-md);
  color: var(--medium-dark);
}

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

.showcase-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background-color: rgba(63, 167, 150, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.showcase-link {
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.showcase-link:hover {
  color: var(--secondary);
}

/* How It Works Section */
.how {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
  position: relative;
}

.steps-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

.steps-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: var(--primary);
  z-index: 1;
}

.step {
  position: relative;
  display: flex;
  margin-bottom: var(--spacing-xl);
  padding-left: 60px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
}

.step-content {
  padding-left: var(--spacing-lg);
}

.step-title {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-dark);
}

.step-description {
  font-size: 1.1rem;
  color: var(--medium-dark);
}

.how-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* CTA Section */
.cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  position: relative;
}

.cta-inner {
  text-align: center;
  padding: var(--spacing-xl) 0;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-lg);
  max-width: 350px;
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: var(--spacing-sm);
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: var(--accent);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-lg);
}

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

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Float animation */
.float {
  animation: floating 5s ease-in-out infinite;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-lg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .nav-list.active {
    transform: translateY(0);
  }
  
  h1, .hero-title {
    font-size: 2.8rem;
  }
  
  h2, .section-title {
    font-size: 2.2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: var(--spacing-md);
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    padding-top: calc(3rem + 60px);
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .btn {
    width: 100%;
  }
  
  .steps-line {
    left: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .step {
    padding-left: 50px;
  }
  
  .step-content {
    padding-left: var(--spacing-md);
  }
}
