/* 
   freeundress.blog - Main Stylesheet 
   A completely different design from previous sites
   Using a blue color scheme
*/

:root {
  --primary: #00A8E8;
  --primary-dark: #0077B6;
  --secondary: #FF6B6B;
  --dark: #222222;
  --light: #F8F9FA;
  --gray: #6C757D;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #6C757D;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

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

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

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

.logo-icon {
  margin-right: 15px;
}

.nav-links {
  display: flex;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 600;
  position: relative;
  padding: 8px 0;
}

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

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(to bottom, rgba(0, 168, 232, 0.05), rgba(0, 168, 232, 0));
  overflow: hidden;
  position: relative;
}

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

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Button Styles */
.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(0, 168, 232, 0.4);
  transform: translateY(-3px);
  color: var(--white);
}

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

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

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

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 168, 232, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

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

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: #F8FDFF;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-content {
  max-width: 500px;
}

.step-content h3 {
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-light);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--white);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.faq-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-icon {
  margin-right: 15px;
}

.footer-logo span {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.link-group {
  margin-left: 60px;
  margin-bottom: 20px;
}

.link-group h4 {
  margin-bottom: 20px;
  color: var(--primary);
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.link-group ul li a:hover {
  color: var(--white);
}

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

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
  }
  
  .step {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: 0;
  }
  
  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .features, .how-it-works, .faq {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .link-group {
    margin-left: 0;
    margin-right: 30px;
  }
  
  .hero-text h2 {
    font-size: 2rem;
  }
  
  .steps {
    max-width: 100%;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-text h2 {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
}
