/*
 * aiclothesremoverAU.pw - Stylesheet
 * Australian AI Clothes Remover Site
 * Date: August 2025
 */

:root {
  /* Australian-inspired colour palette */
  --aussie-green: #00843D;     /* Australian Green */
  --aussie-gold: #FFCD00;      /* Australian Gold */
  --aussie-blue: #0051A4;      /* Australian Blue */
  --aussie-red: #E4002B;       /* Australian Red */
  --ocean-blue: #0099CC;       /* Great Barrier Reef Blue */
  --outback-orange: #FF8C00;   /* Outback Sunset Orange */
  --sandy-beige: #F5DEB3;      /* Beach Sand */
  --eucalyptus: #44AA44;       /* Eucalyptus Green */
  
  --light-text: #FFFFFF;       /* White text */
  --dark-text: #222222;        /* Near black text */
  --medium-text: #666666;      /* Medium grey text */
  
  /* Effects and dimensions */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
  --box-shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.1);
  --box-shadow-heavy: 0 12px 28px rgba(0, 0, 0, 0.15);
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--aussie-blue);
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  color: var(--aussie-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--outback-orange);
}

img {
  max-width: 100%;
  height: auto;
}

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

section {
  padding: 80px 0;
  position: relative;
}

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

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--aussie-gold);
}

.section-title p {
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: var(--medium-text);
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-medium);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: var(--box-shadow-light);
}

.btn-primary {
  background-color: var(--aussie-green);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--eucalyptus);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
  color: var(--light-text);
}

.btn-secondary {
  background-color: var(--aussie-blue);
  color: var(--light-text);
}

.btn-secondary:hover {
  background-color: #003D7A;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
  color: var(--light-text);
}

.btn-outline {
  background-color: transparent;
  color: var(--aussie-green);
  border: 2px solid var(--aussie-green);
}

.btn-outline:hover {
  background-color: var(--aussie-green);
  color: var(--light-text);
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: #FFFFFF;
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-medium);
}

.header.scrolled {
  padding: 12px 0;
  box-shadow: var(--box-shadow-medium);
}

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

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

.logo-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--aussie-green);
  margin-left: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--aussie-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 0;
  position: relative;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--aussie-blue);
  border-radius: 3px;
  transition: var(--transition-medium);
}

/* Hero section */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--sandy-beige) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: linear-gradient(to bottom right, rgba(0, 81, 164, 0.05), rgba(0, 153, 204, 0.1));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--aussie-gold);
  color: var(--aussie-blue);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-family: 'Source Sans Pro', sans-serif;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--aussie-blue);
  line-height: 1.2;
}

.hero-title span {
  color: var(--aussie-green);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--medium-text);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

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

.adult-warning {
  margin-top: 35px;
  padding: 16px;
  background-color: rgba(228, 0, 43, 0.08);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--aussie-red);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.adult-warning svg {
  color: var(--aussie-red);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.adult-warning p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--medium-text);
}

/* Features section */
.features {
  background-color: #FFFFFF;
  position: relative;
}

.features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(to top, rgba(0, 153, 204, 0.05), rgba(255, 255, 255, 0));
  z-index: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 35px 30px;
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 5px solid var(--aussie-gold);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-medium);
}

.feature-card:nth-child(2) {
  border-top-color: var(--aussie-green);
}

.feature-card:nth-child(3) {
  border-top-color: var(--aussie-red);
}

.feature-card:nth-child(4) {
  border-top-color: var(--outback-orange);
}

.feature-card:nth-child(5) {
  border-top-color: var(--ocean-blue);
}

.feature-card:nth-child(6) {
  border-top-color: var(--aussie-blue);
}

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

.feature-icon svg {
  width: 60px;
  height: 60px;
  color: var(--aussie-green);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--aussie-blue);
}

.feature-text {
  color: var(--medium-text);
  margin-bottom: 0;
  flex-grow: 1;
}

/* How it works section */
.how-it-works {
  background-color: var(--sandy-beige);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 132, 61, 0.1);
  z-index: 0;
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 205, 0, 0.1);
  z-index: 0;
}

.steps-container {
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  box-shadow: var(--box-shadow-light);
  text-align: center;
  transition: var(--transition-medium);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-medium);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--aussie-green);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 30px;
  font-family: 'Source Sans Pro', sans-serif;
}

.step-card:nth-child(2) .step-number {
  background: var(--aussie-blue);
}

.step-card:nth-child(3) .step-number {
  background: var(--outback-orange);
}

.step-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--aussie-blue);
}

.step-description {
  color: var(--medium-text);
}

/* Stats section */
.stats {
  background: linear-gradient(135deg, var(--aussie-blue) 0%, var(--ocean-blue) 100%);
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.stats .section-title h2 {
  color: var(--light-text);
}

.stats .section-title h2::after {
  background: var(--aussie-gold);
}

.stats .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--aussie-gold);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--light-text);
}

/* FAQ Section */
.faq {
  background-color: #FFFFFF;
  position: relative;
}

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

.faq-item {
  background: #F9F9F9;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow-light);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(255, 205, 0, 0.1);
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--aussie-blue);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  background-color: var(--aussie-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
}

.faq-toggle-icon {
  color: var(--light-text);
  font-size: 14px;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--medium-text);
}

.faq-item.active .faq-question {
  background-color: rgba(255, 205, 0, 0.1);
}

.faq-item.active .faq-toggle {
  background-color: var(--aussie-blue);
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--aussie-green) 0%, var(--eucalyptus) 100%);
  color: var(--light-text);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--light-text);
  font-size: 3rem;
  margin-bottom: 25px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: var(--aussie-gold);
  color: var(--aussie-blue);
  padding: 20px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--aussie-blue);
  background-color: #FFD700;
}

.disclaimer {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background-color: var(--aussie-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer-logo {
  width: 42px;
  height: 42px;
}

.footer-logo-text {
  margin-left: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light-text);
  font-family: 'Source Sans Pro', sans-serif;
}

.footer-description {
  margin-bottom: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  color: var(--light-text);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-family: 'Source Sans Pro', sans-serif;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--aussie-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  display: block;
}

.footer-links a:hover {
  color: var(--light-text);
  padding-left: 5px;
}

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

.copyright {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-keywords {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.3rem;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-col:first-child {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    box-shadow: var(--box-shadow-heavy);
    z-index: 1001;
    padding: 50px 0;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-col:first-child {
    grid-column: span 1;
  }
  
  .cta-btn {
    display: block;
    width: 100%;
  }
}
