/* 
   nudeifySG.pw - Singapore Optimized AI Nude Generator
   Main Stylesheet
*/

:root {
  /* Primary Colors - Singapore-inspired red and orange gradient */
  --color-primary: #EF4242;
  --color-secondary: #FF9800;
  --color-dark: #333333;
  --color-gray: #666666;
  --color-light-gray: #f5f5f5;
  --color-white: #ffffff;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

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

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

ul {
  list-style: none;
}

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

section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(239, 66, 66, 0.2);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(239, 66, 66, 0.3);
}

.btn.secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn.secondary:hover {
  background-color: rgba(239, 66, 66, 0.05);
  transform: translateY(-3px);
}

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

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--color-dark);
  font-family: var(--font-primary);
  font-weight: 600;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

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

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  margin: 3px 0;
  background-color: var(--color-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  background-color: var(--color-white);
}

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

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

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--color-gray);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
}

.stat-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Process Section */
.process {
  background-color: var(--color-light-gray);
  text-align: center;
}

.process h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.process h2 span {
  color: var(--color-primary);
}

.section-description {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--color-gray);
  font-size: 18px;
}

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

.step {
  flex: 1;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step-icon {
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
}

.step h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.step p {
  color: var(--color-gray);
}

.cta-center {
  margin-top: 30px;
}

/* Features Section */
.features {
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.features h2 span {
  color: var(--color-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.feature p {
  color: var(--color-gray);
}

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

.about .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--color-primary);
}

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

.about-buttons {
  margin-top: 30px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

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

.footer-brand {
  flex: 1;
  max-width: 300px;
}

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

.footer-favicon {
  margin-left: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #aaa;
}

.footer-nav {
  flex: 2;
  display: flex;
  justify-content: space-between;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #777;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding-top: 130px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about .container {
    flex-direction: column;
  }
  
  .about-content {
    text-align: center;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-brand {
    text-align: center;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-nav {
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .menu.active {
    right: 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .steps {
    flex-direction: column;
  }
  
  .footer-column {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
