/* 
  aiexotic.love - Main Stylesheet
  Modern, elegant design with aqua/teal palette and orange accents
*/

:root {
  /* Color Variables - Unique palette different from previous sites */
  --primary: #FF6F61;     /* Coral/orange for accents */
  --secondary: #5C8374;   /* Medium teal */
  --tertiary: #9EC8B9;    /* Light teal */
  --dark: #092635;        /* Dark teal almost black */
  --dark-accent: #1B4242; /* Slightly lighter dark teal */
  --text: #F5F5F5;        /* Off-white text */
  --text-muted: #CCCCCC;  /* Muted light text */
  --gradient-1: linear-gradient(135deg, var(--dark-accent) 0%, var(--dark) 100%);
  --gradient-2: linear-gradient(135deg, var(--secondary) 0%, var(--dark-accent) 100%);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--dark);
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

h1 {
  font-size: 5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 3.8rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: var(--space-md);
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-md);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover:after {
  height: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  color: white;
}

.btn-primary {
  background-color: var(--primary);
}

.btn-secondary {
  background-color: var(--secondary);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-large {
  padding: 1.8rem 3.6rem;
  font-size: 1.8rem;
}

/* Header */
header {
  padding: var(--space-sm) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(9, 38, 53, 0.95);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: var(--space-xs) 0;
  box-shadow: var(--shadow);
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 700;
}

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

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links a {
  color: var(--text);
  position: relative;
  padding: var(--space-xs) 0;
  font-weight: 500;
}

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

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

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

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 18rem 0 8rem;
  position: relative;
  overflow: hidden;
  background: var(--gradient-1);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-text h1 {
  margin-bottom: var(--space-md);
}

.hero-text p {
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
}

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

.accent {
  color: var(--primary);
  position: relative;
}

.highlight {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.highlight:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  background-color: var(--primary);
  opacity: 0.2;
  z-index: -1;
  transform: skewX(-15deg);
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
  background-color: var(--dark);
  position: relative;
}

.features:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--dark-accent), transparent);
}

.text-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background-color: var(--dark-accent);
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-sm);
}

.feature-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

/* Gallery Section */
.gallery {
  padding: var(--space-xl) 0;
  background-color: var(--dark-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-svg {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
  padding: var(--space-md);
  color: var(--text);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works {
  padding: var(--space-xl) 0;
  background-color: var(--dark);
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  width: 30%;
  position: relative;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 50px;
  right: -15%;
  width: 30%;
  height: 2px;
  background-color: var(--secondary);
  z-index: 0;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--dark-accent);
  border: 2px solid var(--secondary);
  color: var(--primary);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  margin-bottom: var(--space-xs);
}

.step-content p {
  color: var(--text-muted);
  font-size: 1.5rem;
}

/* CTA Section */
.cta {
  padding: var(--space-xl) 0;
  background: var(--gradient-2);
  text-align: center;
}

.cta h2 {
  margin-bottom: var(--space-md);
}

.cta p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

/* Footer */
footer {
  padding: var(--space-lg) 0 var(--space-sm);
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.footer-text {
  color: var(--text-muted);
  font-size: 1.4rem;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-column a {
  color: var(--text-muted);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

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

.copyright {
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-muted);
  font-size: 1.4rem;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .step {
    width: 100%;
    max-width: 400px;
  }
  
  .step:not(:last-child):after {
    top: unset;
    bottom: -30px;
    right: 50%;
    width: 2px;
    height: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-text {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow);
    z-index: 10;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .btn {
    width: 100%;
  }
}
