/* Revoo Website - Styles */

:root {
  --revoo-black: #0A0A0A;
  --revoo-gold: #B48958;
  --revoo-gold-light: #D4A574;
  --revoo-gold-dark: #8B6A42;
  --revoo-white: #FFFFFF;
  --revoo-off-white: #FAFAFA;
  --revoo-gray-100: #F5F5F5;
  --revoo-gray-200: #E5E5E5;
  --revoo-gray-300: #D4D4D4;
  --revoo-gray-500: #737373;
  --revoo-gray-700: #404040;
  --revoo-gray-900: #171717;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--revoo-white);
  color: var(--revoo-gray-900);
  line-height: 1.7;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--revoo-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--revoo-gold-dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--revoo-gold-dark);
  color: var(--revoo-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180, 137, 88, 0.3);
}

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

.btn-secondary:hover {
  background: var(--revoo-gray-700);
  transform: translateY(-2px);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--revoo-gray-200);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--revoo-black);
  letter-spacing: -1px;
}

.logo span {
  color: var(--revoo-gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: var(--revoo-gray-700);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

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

.nav-link:hover {
  color: var(--revoo-black);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--revoo-black);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--revoo-black) 0%, #1a1a1a 50%, var(--revoo-gray-900) 100%);
  color: var(--revoo-white);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center right, rgba(180, 137, 88, 0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(180, 137, 88, 0.15);
  border: 1px solid rgba(180, 137, 88, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--revoo-gold-light);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--revoo-gold);
}

.hero p {
  font-size: 1.25rem;
  color: var(--revoo-gray-300);
  margin-bottom: 40px;
}

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

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.store-badges {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.store-badge {
  height: 50px;
  transition: var(--transition);
}

.store-badge:hover {
  transform: scale(1.05);
}

/* Sections */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  color: var(--revoo-gray-500);
  font-size: 1.125rem;
}

.section-tag {
  display: inline-block;
  color: var(--revoo-gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--revoo-white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--revoo-gray-200);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--revoo-gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--revoo-gold) 0%, var(--revoo-gold-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h4 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--revoo-gray-500);
  margin: 0;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--revoo-black);
  color: var(--revoo-gold);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step h4 {
  margin-bottom: 12px;
}

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

/* CTA Section */
.cta-section {
  background: var(--revoo-black);
  color: var(--revoo-white);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--revoo-gray-300);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Footer */
.footer {
  background: var(--revoo-gray-900);
  color: var(--revoo-gray-300);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
}

.footer h5 {
  color: var(--revoo-white);
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--revoo-gray-500);
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid var(--revoo-gray-700);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--revoo-gray-700);
  border-radius: 50%;
  color: var(--revoo-white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--revoo-gold);
}

/* Contact Form */
.contact-form {
  background: var(--revoo-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--revoo-gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--revoo-gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--revoo-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

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

.faq-item {
  border-bottom: 1px solid var(--revoo-gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: var(--revoo-gray-900);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--revoo-gold);
}

.faq-icon {
  font-size: 24px;
  color: var(--revoo-gold);
  transition: var(--transition);
}

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

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

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

.faq-answer p {
  padding-bottom: 24px;
  color: var(--revoo-gray-500);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 120px;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-content .date {
  color: var(--revoo-gray-500);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content li {
  color: var(--revoo-gray-700);
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* Page Header */
.page-header {
  background: var(--revoo-black);
  color: var(--revoo-white);
  padding: 160px 0 80px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--revoo-gray-300);
  font-size: 1.25rem;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

/* Creator Page */
.creator-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  padding: 30px;
  background: var(--revoo-gray-100);
  border-radius: 16px;
  text-align: center;
}

.benefit-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.benefit-card h4 {
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--revoo-gray-500);
  margin: 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-image {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .hero {
    min-height: auto;
    padding: 160px 0 80px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.visible {
  animation: fadeInUp 0.6s ease forwards;
}

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--revoo-gold); }
.bg-light { background: var(--revoo-gray-100); }
.mb-0 { margin-bottom: 0; }

