/* 
   Main Stylesheet for ailesbianporn.site
   Modern, responsive design with mobile-first approach
*/

:root {
  --primary-color: #9932CC; /* Purple */
  --secondary-color: #FF69B4; /* Pink */
  --accent-color: #8A2BE2; /* Violet */
  --text-color: #333;
  --light-text: #fff;
  --background-color: #f9f9f9;
  --card-background: #fff;
  --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

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

/* Typography */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--accent-color);
}

h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3rem 1rem;
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo span {
  margin-left: 0.5rem;
  color: var(--primary-color);
}

.site-logo {
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  text-align: center;
}

.nav-links li {
  margin: 0.5rem 0;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--gradient-1);
  color: var(--light-text);
  padding: 4rem 1rem;
  text-align: center;
}

.hero h1 {
  color: var(--light-text);
  font-size: 2.2rem;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero p {
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-graphic {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.cta-button.secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

.cta-button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Featured Content Section */
.featured {
  background-color: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.content-card {
  background: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.content-placeholder {
  width: 100%;
  height: auto;
}

.content-card h3, .content-card p {
  padding: 0 1rem;
}

.content-link {
  display: inline-block;
  margin: 0.5rem 1rem 1rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* Categories Section */
.categories {
  background-color: #f5f5f5;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: scale(1.05);
}

.category-item span {
  margin-top: 0.5rem;
  font-weight: 500;
}

/* About Section */
.about {
  background-color: white;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Call To Action Section */
.call-to-action {
  background: var(--gradient-1);
  color: var(--light-text);
  text-align: center;
  padding: 4rem 1rem;
}

.call-to-action h2 {
  color: var(--light-text);
}

/* Footer */
footer {
  background-color: #333;
  color: #ccc;
  padding: 3rem 1rem 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo span {
  margin-left: 0.5rem;
  color: var(--light-text);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-section h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
}

.footer-section a:hover {
  color: white;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Media Queries */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  section {
    padding: 5rem 2rem;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about-content {
    flex-direction: row;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-links {
    flex: 2;
  }
}

@media (min-width: 992px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
