/* 
* taylorswiftaipornleaks.love - Main Stylesheet
* Modern, responsive design with unique color scheme
*/

:root {
  --primary-color: #e91e63;
  --secondary-color: #ff9800;
  --dark-color: #212121;
  --light-color: #f5f5f5;
  --grey-color: #757575;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
  position: relative;
  padding-bottom: 1.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient);
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

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

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

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

/* Header styles */
header {
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

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

.logo-svg {
  width: 4rem;
  height: 4rem;
}

.logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  display: none;
}

@media (min-width: 768px) {
  .logo span {
    display: block;
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

nav a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.6rem;
  transition: var(--transition);
  position: relative;
}

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

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

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 3rem;
  height: 2.5rem;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  transition: var(--transition);
  border-radius: 3px;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    clip-path: circle(0% at 100% 0);
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.active {
    clip-path: circle(150% at 100% 0);
  }
  
  nav ul {
    flex-direction: column;
    padding: 4rem 0;
    align-items: center;
  }
  
  nav li {
    margin-bottom: 2rem;
  }
  
  nav a {
    font-size: 2rem;
  }
}

/* Hero section */
.hero {
  background: var(--gradient);
  padding: 18rem 0 12rem;
  margin-top: 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  margin-bottom: 2.5rem;
  font-size: 4.8rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  margin-bottom: 4rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 1.5rem 4rem;
  border-radius: 5rem;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: var(--dark-color);
  color: white;
  transform: translateY(-5px);
}

/* Features section */
.features {
  padding: 10rem 0;
  background: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 6rem;
}

.features h2::after {
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
}

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

.feature-card {
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card p {
  color: var(--grey-color);
  margin-bottom: 0;
}

/* About section */
.about {
  padding: 10rem 0;
  background: #f9f9f9;
}

.about-content {
  max-width: 80rem;
  margin: 0 auto;
}

.about h2 {
  margin-bottom: 3rem;
}

.about p {
  color: var(--grey-color);
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.secondary-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5rem;
  font-weight: 600;
  transition: var(--transition);
}

.secondary-button:hover {
  background: var(--primary-color);
  color: white;
}

/* Testimonials section */
.testimonials {
  padding: 10rem 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 6rem;
}

.testimonials h2::after {
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.testimonial {
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background: #fff;
  transition: var(--transition);
}

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

.rating {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonial p {
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.author {
  color: var(--primary-color);
  font-weight: 600;
}

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

.cta h2 {
  color: white;
  margin-bottom: 2rem;
}

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

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  max-width: 60rem;
  margin: 0 auto 4rem;
}

/* Footer */
footer {
  background: #111;
  color: #f5f5f5;
  padding: 8rem 0 4rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo p {
  color: #aaa;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}

.link-group h4 {
  color: white;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 1.2rem;
}

.link-group a {
  color: #aaa;
  font-size: 1.6rem;
  transition: var(--transition);
}

.link-group a:hover {
  color: var(--primary-color);
}

.copyright {
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright p {
  color: #777;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.disclaimer {
  font-size: 1.2rem;
  opacity: 0.7;
  max-width: 80rem;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-logo {
    align-items: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .hero {
    padding: 15rem 0 10rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .features, .about, .testimonials, .cta {
    padding: 8rem 0;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
  
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
}

/* Animation classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}
