/*
   aiporncelebrity.love - Main Styles
   Blue and silver theme with horizontal layouts
*/

:root {
  /* Color Palette - Blue and Silver Theme */
  --primary: #1565C0;
  --primary-light: #1E88E5;
  --primary-dark: #0D47A1;
  --accent: #90A4AE;
  --accent-light: #CFD8DC;
  --text-light: #FFFFFF;
  --text-dark: #212121;
  --bg-light: #F8F9FA;
  --bg-dark: #263238;
  --gray: #757575;
  --border: rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.8rem;
  color: var(--text-light);
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

.logo-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: none;
}

nav ul.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  padding: 1rem 0;
}

nav ul li {
  margin: 0.5rem 1rem;
}

nav ul a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
}

nav ul a:hover {
  color: var(--accent-light);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(21, 101, 192, 0.9)), 
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0h100v100H0z' fill='%231E88E5' fill-opacity='0.1'/%3E%3Cpath d='M10 10h10v10H10V10zm20 0h10v10H30V10zm20 0h10v10H50V10zm20 0h10v10H70V10zm20 0h10v10H90V10zM0 20h10v10H0V20zm90 0h10v10H90V20zM0 40h10v10H0V40zm90 0h10v10H90V40zM0 60h10v10H0V60zm90 0h10v10H90V60zM0 80h10v10H0V80zm90 0h10v10H90V80zM10 90h10v10H10V90zm20 0h10v10H30V90zm20 0h10v10H50V90zm20 0h10v10H70V90z' fill='%231565C0' fill-opacity='0.2'/%3E%3C/svg%3E");
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.highlight {
  color: var(--accent-light);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-light);
}

.btn-outline:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
}

/* Celebrity Section */
.celebrities {
  padding: 5rem 0;
  background: var(--bg-light);
}

.celebrities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.celebrity-img {
  height: 200px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.celebrity-content {
  padding: 1.5rem;
}

.celebrity-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.celebrity-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.view-btn {
  display: block;
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 0.8rem;
  margin-top: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: var(--primary-dark);
  color: white;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--accent-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta h2:after {
  background: var(--accent-light);
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.footer-logo svg {
  width: 60px;
  height: 60px;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4:after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-light);
  position: absolute;
  bottom: -10px;
  left: 0;
}

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

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

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

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

/* Media Queries */
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .menu-toggle {
    display: none;
  }
  
  nav ul {
    display: flex;
    flex-direction: row;
  }
  
  nav ul li {
    margin: 0 0 0 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
