/* 
   freeundress.pw - Main Stylesheet 
   A completely different design from previous site
   Using pink/orange gradients instead of purple
*/

:root {
  --primary: #FF4B91;
  --primary-light: #FF8E53;
  --secondary: #6C7BFF;
  --dark: #222222;
  --gray: #F0F0F0;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #777777;
  --gradient: linear-gradient(45deg, #FF4B91, #FF8E53);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  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);
  background-color: var(--white);
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

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

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

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

section {
  padding: 80px 0;
}

/* Navigation styles */
.navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: var(--shadow);
}

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

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

.logo a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.6rem;
  margin-left: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

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

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

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

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 75, 145, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 75, 145, 0.6);
  color: var(--white);
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, rgba(255, 75, 145, 0.03) 0%, rgba(255, 142, 83, 0.03) 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

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

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Try It Section */
.try-it {
  background: linear-gradient(135deg, rgba(255, 75, 145, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
  position: relative;
}

.process {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.step {
  text-align: center;
  flex: 1;
  padding: 0 20px;
  position: relative;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 40px;
  right: -35px;
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

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

/* About Section */
.about {
  background-color: var(--white);
}

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

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

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

.footer-logo span {
  margin-left: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.footer-links {
  display: flex;
}

.footer-links a {
  color: var(--white);
  margin-left: 30px;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

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

.copyright p {
  color: rgba(255, 255, 255, 0.6);
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .process {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 40px;
  }
  
  .step:not(:last-child):after {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 30px;
  }
  
  .footer-links a {
    margin: 0 15px;
  }
  
  .nav-menu {
    display: none;
  }
}

@media (max-width: 576px) {
  .feature {
    padding: 20px;
  }
  
  .footer-logo {
    flex-direction: column;
  }
  
  .footer-logo span {
    margin: 15px 0 0 0;
  }
}
