/* styles.css for animepornai.love */
:root {
  --primary: #A65FFE;
  --primary-light: #F0E6FF;
  --secondary: #FF6BCB;
  --secondary-light: #FFE6F5;
  --accent: #4AA5FF;
  --accent-light: #E6F2FF;
  --dark: #2D2B55;
  --light: #FCFAFF;
  --gradient: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
  --text: #2D2B55;
  --text-light: #6B6894;
}

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

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h2 span {
  color: var(--secondary);
  display: block;
  font-weight: 600;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Header Styles */
header {
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(252, 250, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-light);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

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

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--gradient);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn.primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(166, 95, 254, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(166, 95, 254, 0.4);
}

.btn.large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
}

/* Hero Section */
#hero {
  display: flex;
  align-items: center;
  padding: 3rem 5%;
  gap: 2rem;
}

#hero .content {
  flex: 1;
}

#hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

/* About Section */
#about {
  padding: 5rem 5%;
  text-align: center;
  background-color: var(--primary-light);
  border-radius: 0 0 80px 80px;
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

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

.card svg {
  margin-bottom: 1.5rem;
}

/* Features Section */
#features {
  padding: 5rem 5%;
}

.feature-list {
  list-style: none;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
}

/* Explore Section */
#explore {
  padding: 5rem 5%;
  background: var(--gradient);
  text-align: center;
  margin-top: 3rem;
  border-radius: 80px 80px 0 0;
}

#explore .content {
  max-width: 600px;
  margin: 0 auto;
}

#explore h2 {
  color: white;
}

#explore p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

#explore .btn {
  background: white;
  color: var(--primary);
}

#explore .btn:hover {
  background: var(--light);
  color: var(--secondary);
}

/* Footer */
footer {
  padding: 3rem 5% 2rem;
  background-color: var(--dark);
  color: white;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand p {
  color: white;
  margin: 0;
  font-weight: 500;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    text-align: center;
  }
  
  #hero p {
    margin: 0 auto 2rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    text-align: center;
  }
}

@media (max-width: 600px) {
  header .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav {
    width: 100%;
    justify-content: space-between;
  }
  
  h1 {
    font-size: 1.4rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .card {
    width: 100%;
  }
  
  .cards {
    gap: 1.5rem;
  }
  
  #about {
    padding: 4rem 5% 3rem;
    border-radius: 0 0 40px 40px;
  }
  
  #explore {
    padding: 4rem 5%;
    border-radius: 40px 40px 0 0;
  }
}
