/* Main CSS for freeaipornsites.site */
:root {
  --primary-color: #4CAF50;
  --secondary-color: #2196F3;
  --accent-color: #FF9800;
  --text-color: #333333;
  --light-color: #ffffff;
  --dark-color: #263238;
  --gradient: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f2f5f7;
  font-size: 1.6rem;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

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

/* Hero Section */
.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%234caf50' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
  z-index: 1;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  flex: 1;
  max-width: 60rem;
}

.hero-title {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-description {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: #555;
}

.hero-img {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--gradient);
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

/* Sites Section */
.sites {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3.6rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.8rem;
  color: #555;
  max-width: 70rem;
  margin: 0 auto;
}

.site-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  gap: 3rem;
}

.site-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.site-banner {
  height: 16rem;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.site-icon {
  width: 10rem;
  height: 10rem;
}

.site-content {
  padding: 2rem;
}

.site-name {
  font-size: 2.2rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.site-description {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tag {
  padding: 0.5rem 1.5rem;
  background-color: #f0f9ff;
  color: var(--secondary-color);
  font-size: 1.2rem;
  border-radius: 3rem;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: #f8f9fa;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.feature {
  flex: 1 1 30rem;
  padding: 2.5rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-description {
  font-size: 1.5rem;
  color: #666;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1.8rem;
  max-width: 70rem;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

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

.btn-light:hover {
  background: #f5f5f5;
}

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

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
}

.footer-col h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--light-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 4rem;
}

.footer-text {
  font-size: 1.5rem;
  opacity: 0.8;
  line-height: 1.7;
}

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

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  font-size: 1.5rem;
  color: var(--light-color);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

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

/* Media Queries */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 4rem;
  }

  .hero-img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .site-list {
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .hero-title {
    font-size: 3.6rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }

  .features-grid {
    flex-direction: column;
  }
}
