/* 
  bestaipornsites.pw - Styles
  A unique design with orange and red gradients
*/

:root {
  --primary: #ff4500;       /* Orange-Red */
  --secondary: #ff9000;     /* Orange */
  --accent: #ffcc00;        /* Gold */
  --dark: #222222;          /* Dark Gray */
  --light: #ffffff;
  --gray: #f5f5f5;
  --text-dark: #333333;
  --text-light: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --shadow: 0 10px 30px rgba(255, 69, 0, 0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

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

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: var(--light);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255, 69, 0, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-site {
  background: var(--gradient);
  color: var(--light);
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

.btn-primary:hover,
.btn-site:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 69, 0, 0.2);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Header */
header {
  padding: 15px 0;
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

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

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

.logo-svg {
  width: 150px;
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list li {
  margin-left: 25px;
}

.nav-list li a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient);
  color: var(--light) !important;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  margin-bottom: 5px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(to bottom, #fff, #fff8f5);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 10%, rgba(255, 69, 0, 0.05) 0%, transparent 60%),
                    radial-gradient(circle at 90% 90%, rgba(255, 144, 0, 0.05) 0%, transparent 60%);
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-svg {
  width: 100%;
  max-width: 500px;
}

/* Animation for stars */
@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.3; transform: scale(0.8); }
}

.star {
  animation: twinkle 3s infinite alternate;
}

.star:nth-child(1) {
  animation-delay: 0s;
}

.star:nth-child(2) {
  animation-delay: 0.5s;
}

.star:nth-child(3) {
  animation-delay: 1s;
}

/* Top Sites Section */
.top-sites {
  background-color: var(--gray);
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.site-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.site-rank {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  background: var(--gradient);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(255, 69, 0, 0.3);
}

.site-content {
  padding-top: 25px;
}

.site-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  color: var(--accent);
  margin-right: 10px;
  letter-spacing: 2px;
}

.site-features {
  list-style: none;
  margin: 20px 0;
}

.site-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.site-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Features Section */
.features {
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  transition: var(--transition);
  padding: 30px 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient);
  padding: 60px 0;
  text-align: center;
  color: var(--light);
}

.cta-banner h2 {
  color: var(--light);
  margin-bottom: 15px;
}

.cta-banner h2:after {
  display: none;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

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

.cta-banner .btn-primary:hover {
  background: var(--light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq {
  background: var(--gray);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 30px;
}

.faq-item {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo p {
  margin-top: 15px;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-favicon img {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-favicon img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 95%;
  }
  
  .hero .container,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
  
  section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-list li {
    margin: 15px 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .sites-grid,
  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 140px 0 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-item {
    padding: 20px;
  }
}
