/* Main Stylesheet for curvaceouswife420.com */
:root {
  --primary-color: #FF6B6B;
  --secondary-color: #A020F0;
  --accent-color: #4ECDC4;
  --dark-color: #292F36;
  --light-color: #F7FFF7;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
  --border-radius: 8px;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

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

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

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

.section {
  padding: 8rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow);
  z-index: 100;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.header.scrolled {
  padding: 1rem 0;
}

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

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

.logo img {
  height: 4rem;
  margin-right: 1rem;
}

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

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

.nav-item {
  margin-left: 3rem;
}

.nav-link {
  font-weight: 600;
  position: relative;
}

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

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.4rem;
  color: var(--dark-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  max-width: 60rem;
}

.hero-text {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

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

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

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.feature-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Entertainment Section */
.entertainment {
  background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
}

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

.entertainment-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.entertainment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.entertainment-content {
  padding: 2rem;
}

.entertainment-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.cta-title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-light:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 6rem 0 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-logo img {
  height: 4rem;
  margin-right: 1rem;
}

.footer-logo-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
}

.footer-links-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

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

.footer-link {
  margin-bottom: 1rem;
}

.footer-link a {
  color: #ccc;
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  color: #aaa;
}

.footer-bottom img {
  height: 3rem;
  margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .nav-list {
    position: fixed;
    top: 7rem;
    right: -100%;
    flex-direction: column;
    background-color: white;
    width: 80%;
    height: calc(100vh - 7rem);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 99;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-item {
    margin: 2rem 0;
  }

  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 2rem;
  }

  .section {
    padding: 6rem 0;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}
