/* Main CSS for aipornmovies.site */
:root {
  --primary-color: #FF5722;
  --secondary-color: #FF9800;
  --accent-color: #4CAF50;
  --text-color: #424242;
  --light-color: #F5F5F5;
  --dark-color: #212121;
  --gradient: linear-gradient(135deg, 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: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--light-color);
  font-size: 1.6rem;
}

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

/* Main Header */
.main-header {
  background-color: var(--dark-color);
  padding: 2rem 0;
  position: relative;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 600;
}

.logo-icon {
  margin-right: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--gradient);
  padding: 8rem 0 6rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #45a049;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Info Cards */
.info-section {
  padding: 6rem 0;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.4rem;
  background: var(--accent-color);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.info-card {
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-1rem);
}

.card-header {
  background: var(--gradient);
  padding: 2rem;
  text-align: center;
}

.card-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-body {
  padding: 2.5rem;
  background: white;
}

.card-title {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  text-align: center;
}

.card-text {
  color: var(--text-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* Features */
.features {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.feature-list {
  max-width: 80rem;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.feature-icon {
  min-width: 5rem;
  margin-right: 2rem;
  color: var(--primary-color);
}

.feature-content h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.feature-content p {
  font-size: 1.5rem;
  color: var(--text-color);
}

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

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

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

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 600;
}

.footer-logo-icon {
  margin-right: 1rem;
}

.footer-text {
  max-width: 60rem;
  margin: 0 auto 3rem;
  opacity: 0.7;
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  font-size: 1.5rem;
}

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

.copyright {
  opacity: 0.6;
  font-size: 1.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    max-width: 45rem;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-links a {
    margin: 0.8rem 0;
  }
}
