/* 
  Styles for nudeifyAU.pw
  Website optimized for Australian users with navy-red theme
  Last updated: 2025-08-21
*/

:root {
  /* Australian flag colors */
  --primary-color: #00008B; /* Dark blue */
  --secondary-color: #ff0000; /* Red */
  --accent-color: #ffffff; /* White */
  --text-color: #333333;
  --light-color: #ffffff;
  --dark-color: #121212;
  --grey-color: #f8f9fa;
  --grey-dark: #6c757d;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), #0033cc);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff4d4d);
  --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--grey-dark);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-medium);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #001499;
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  color: var(--light-color);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Header and navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo svg {
  margin-right: 10px;
}

.logo span {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.logo:hover span {
  color: var(--secondary-color);
}

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

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

.nav-menu a {
  position: relative;
  font-weight: 600;
  color: var(--text-color);
  padding: 5px 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(to right, rgba(0, 0, 139, 0.05), rgba(255, 0, 0, 0.05));
  position: relative;
  overflow: hidden;
}

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

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

.hero-illustration {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

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

.warning {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: var(--radius-small);
  color: var(--secondary-color);
  font-size: 0.9rem;
  max-width: fit-content;
}

.warning svg {
  margin-right: 10px;
}

/* Features */
.features {
  background-color: var(--grey-color);
  position: relative;
}

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

.feature-box {
  padding: 40px 30px;
  background-color: var(--light-color);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: center;
  border-bottom: 3px solid transparent;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-bottom: 3px solid var(--secondary-color);
}

.feature-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 0, 139, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-box .icon svg {
  color: var(--primary-color);
  width: 30px;
  height: 30px;
}

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

.feature-box p {
  color: var(--grey-dark);
}

/* How it works */
.how-it-works {
  background-color: var(--light-color);
  position: relative;
}

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

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

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

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-primary);
  color: var(--light-color);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  box-shadow: var(--shadow-soft);
}

.step-content {
  padding-top: 5px;
}

.step-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.step-content p {
  color: var(--grey-dark);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--primary-color), #0033cc);
  color: var(--light-color);
  padding: 80px 0;
}

.testimonials .section-header h2 {
  color: var(--light-color);
  margin-bottom: 50px;
}

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

.testimonial {
  position: relative;
}

.testimonial-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius-medium);
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonial-content svg {
  min-width: 24px;
  margin-right: 15px;
  color: var(--secondary-color);
}

.testimonial-content p {
  margin-bottom: 0;
  color: var(--light-color);
  font-size: 1.1rem;
}

/* CTA */
.cta {
  text-align: center;
  background: linear-gradient(to right, rgba(0, 0, 139, 0.05), rgba(255, 0, 0, 0.05));
  padding: 120px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.cta p {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  color: var(--grey-dark);
}

.disclaimer {
  margin-top: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--grey-dark);
}

/* FAQ */
.faq {
  background-color: var(--light-color);
}

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

.accordion-item {
  margin-bottom: 20px;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: var(--light-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.accordion-header .icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header {
  background-color: rgba(0, 0, 139, 0.05);
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 25px 25px;
  max-height: 1000px;
}

/* Footer */
.footer {
  background-color: #00005c;
  color: var(--light-color);
  padding: 80px 0 20px;
}

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

.footer-logo {
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-logo svg {
  margin-bottom: 20px;
}

.footer-logo p {
  margin-top: 15px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  color: var(--light-color);
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

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

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

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

.footer-bottom p {
  margin-bottom: 10px;
}

/* Media Queries */
@media screen and (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-illustration {
    justify-content: center;
    margin-top: 40px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    background-color: var(--light-color);
    padding: 50px 20px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 0 0 25px;
    text-align: center;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    padding: 130px 0 60px;
  }
  
  .warning {
    padding: 10px 15px;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
}
