/*
* aicelebporn.site - Main Stylesheet
* Modern, responsive design with gold/red color scheme
*/

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary color palette - gold/red gradient theme (different from previous sites) */
  --primary-start: #F1C40F;
  --primary-end: #E74C3C;
  --accent: #D35400;
  --dark: #34495E;
  --light: #ffffff;
  --background: #FFFDF7;
  --text: #2C3E50;
  --text-light: #7F8C8D;
  --gradient: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  --shadow: 0 5px 15px rgba(231, 76, 60, 0.15);
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 70px;
  background: var(--gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

p {
  margin-bottom: 1rem;
}

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

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

section {
  padding: 80px 0;
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--primary-end);
}

/* Navigation Menu */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu li {
  list-style: none;
}

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

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

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

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

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  color: white !important;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  }
}

.glow {
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.6), 0 0 20px rgba(231, 76, 60, 0.4);
  }
  to {
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.8), 0 0 30px rgba(231, 76, 60, 0.6);
  }
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(170deg, var(--background) 0%, #FEF9E7 100%);
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.hero-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}

.hero-content h2::after {
  left: 0;
  transform: translateX(0);
}

.hero-content h2 span {
  color: var(--primary-end);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

/* Features Section */
.features {
  background-color: white;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(170deg, #FFFFFF 0%, #FEF9E7 100%);
}

.steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 30px;
}

.step {
  text-align: center;
  max-width: 300px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.step h3 {
  margin-bottom: 15px;
}

.step p {
  color: var(--text-light);
}

/* Celebrities Section */
.celebrities {
  background-color: white;
}

.celeb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.celeb-card {
  background: var(--background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.celeb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Final CTA Section */
.final-cta {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.final-cta h2 {
  color: white;
}

.final-cta h2::after {
  background: rgba(255, 255, 255, 0.3);
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

.final-cta .cta-button {
  background: white;
  color: var(--primary-end) !important;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

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

.site-name {
  display: block;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.tagline {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--primary-start);
  bottom: -8px;
  left: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .step {
    flex-basis: 40%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  #menu-toggle:checked ~ .nav-menu {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    text-align: center;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  
  .hero-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-around;
  }
  
  .step {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
