/* 
* aidisneyporn.love - Main Stylesheet
* Modern, responsive design with orange and pink color scheme
*/

:root {
  --primary: #ff9800;
  --secondary: #e91e63;
  --accent: #651fff;
  --light: #ffffff;
  --dark: #212121;
  --gray: #757575;
  --light-gray: #f5f5f5;
  --gradient: linear-gradient(120deg, var(--primary), var(--secondary));
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.3s ease-in-out;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background-color: var(--light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1 {
  font-size: 2.5rem;
}

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

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

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

p {
  margin-bottom: 1.2rem;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo h1 {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
  gap: 2rem;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 10px;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 5%;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.03), rgba(233, 30, 99, 0.05));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: radial-gradient(rgba(255, 152, 0, 0.1) 1px, transparent 1px),
              radial-gradient(rgba(233, 30, 99, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

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

.hero-content h2 span {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero-content h2 span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(233, 30, 99, 0.1);
  z-index: -1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray);
  max-width: 500px;
}

.hero-graphic {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: var(--light);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.7s ease;
}

.cta-button:hover::before {
  left: 100%;
}

/* Cards Section */
.cards {
  padding: 5rem 5%;
  background: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  z-index: -1;
}

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

.card-icon {
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Features Section */
.features-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.03), rgba(233, 30, 99, 0.05));
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.step-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

.features-cta {
  text-align: center;
  margin-top: 3rem;
}

/* About Section */
.about-section {
  padding: 5rem 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  text-align: left;
}

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

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.tech-graphic {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-cta {
  margin-top: 2rem;
}

/* Footer Styles */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 3rem 5% 1rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.link-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.link-column ul li {
  margin-bottom: 0.7rem;
}

.link-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

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

.footer-bottom p:first-child {
  margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
  opacity: 0.7;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem 5%;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .hero {
    padding: 7rem 5% 4rem;
  }
  
  .hero-content {
    text-align: center;
    padding: 1rem 0;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .hero-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-content h2 {
    text-align: center;
  }
  
  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-logo {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .link-column {
    text-align: center;
  }
}
