/* Main Styles for undressherSG.pw */

:root {
  /* Primary color palette - Teal and amber for Singapore site */
  --primary: #00BCD4;
  --primary-light: #B2EBF2;
  --primary-dark: #0097A7;
  --secondary: #FFC107;
  --secondary-light: #FFECB3;
  --secondary-dark: #FFA000;
  --text-dark: #263238;
  --text-light: #FFFFFF;
  --background: #f5f5f5;
  --card-bg: #FFFFFF;
  --shadow: 0 4px 6px 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--background);
  line-height: 1.6;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

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

h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  transform: translateX(-50%);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

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

.logo {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

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

.nav-list li {
  margin-left: 1.5rem;
}

.nav-list a {
  font-weight: 500;
  position: relative;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0) 100%);
  border-radius: 0 0 50% 0;
}

.hero-content {
  padding-right: 2rem;
}

.hero h1 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-graphic svg {
  width: 100%;
  height: auto;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0, 188, 212, 0.5);
  color: var(--text-light);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 7px 25px rgba(0, 188, 212, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
  }
}

/* Features Section */
.features {
  padding: 5rem 1rem;
  background-color: var(--card-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 1rem;
  text-align: center;
  background-color: var(--background);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  background-color: var(--primary);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-content {
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 5rem 1rem;
  background-color: var(--card-bg);
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--primary-light);
  padding-bottom: 1rem;
  cursor: pointer;
}

.faq-item h3 {
  position: relative;
  padding-right: 30px;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 1rem;
  background-color: var(--primary-light);
  text-align: center;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial cite {
  font-weight: bold;
  display: block;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
}

.final-cta h2,
.final-cta p {
  color: var(--text-light);
}

.final-cta h2:after {
  background-color: var(--text-light);
}

.final-cta .cta-button {
  background: linear-gradient(45deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  margin-top: 2rem;
}

.final-cta .cta-button:hover {
  box-shadow: 0 7px 20px rgba(255, 193, 7, 0.6);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo svg {
  height: 50px;
  width: auto;
}

.footer-links h3,
.footer-keywords h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
}

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

.footer-keywords p {
  line-height: 1.8;
}

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

/* Responsive Design */
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.5s ease-out;
  }
  
  .nav-list.active {
    clip-path: circle(150% at 100% 0);
  }
  
  .nav-list li {
    margin: 0.5rem 0;
  }
}
