/* Don't Look Landing Page CSS */

/* Font Declarations */
@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/neuemontreal-regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/neuemontreal-medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/neuemontreal-bold.otf') format('opentype');
  font-weight: 700;
}

/* CSS Variables */
:root {
  --primary-color: #ff0073;
  --secondary-color: #6c0131;
  --background-dark: #0a0a0a;
  --surface-dark: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --border-color: #333;
  --card-bg: #111;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: black;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px; /* Account for fixed navbar */
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--background-dark);
}

body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header/Navigation */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.401);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  height: 20px;
  width: auto;
}

.brand-text {
  font-size: 18px;
  font-weight: 600;
  margin-left: -20px;
  color: var(--text-primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.desktop-nav a:hover {
  color: var(--text-primary);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.download-btn:hover {
  transform: translateY(-2px);
}

.download-btn-img {
  width: auto;
  height: auto;
  max-height: 50px;
  background-color: transparent;
  border-radius: 300px;
  transition: var(--transition);
}

.download-btn-img-main {
  width: auto;
  height: auto;
  max-height: 70px;
  background-color: transparent;
  border-radius: 300px;
  box-shadow: #df004784 0px 20px 50px;
  transition: var(--transition);
}


.hero-download .download-btn-img {
  max-height: 60px;
}

.nav-download .download-btn-img,
.desktop-download .download-btn-img {
  max-height: 40px;
}

.desktop-download {
  display: flex;
}

.mobile-menu {
  display: none;
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
}

.hero-content {
  text-align: center;
  margin-bottom: 80px;
}

.hero-text-center {
  max-width: 1500px;
  margin: 0 auto;
}

.hero-text-center h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(255, 255, 255, 0.5) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-download {
  display: inline-block;
}

.hero-download .download-btn-img {
  max-height: 60px;
}

.download-counter {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

.counter-number {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
}

.hero-bottom {
  text-align: center;
}

.loved-by {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.hero-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-image img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  border-radius: var(--border-radius);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* Features */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.feature-card {
  background: transparent;
  border: none;
  padding: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-image img {
  width: 800px;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.feature-image img.loaded {
  opacity: 1;
}

.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card {
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

/* Phone Previews */
.phone-previews {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.phone-previews img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Eyes Animation */
.eyes-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.eye-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eye-row {
  display: flex;
  gap: 16px;
}

.eye-dot {
  width: 12px;
  height: 12px;
  background: var(--text-primary);
  border-radius: 50%;
  animation: blink 3s ease-in-out infinite;
}

@keyframes blink {
  0%, 90%, 100% { 
    opacity: 1; 
  }
  95% { 
    opacity: 0.3; 
  }
}

/* Gesture Content */
.gesture-content {
  text-align: center;
}

.gesture-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.gesture-phones {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.gesture-phones img {
  width: 60px;
  height: auto;
  border-radius: 6px;
}

/* Controls */
.control-mockups {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.control-mockups img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

/* Other Feature Images */
.rewards-content img,
.lockdown-content img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.dnd-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dnd-icons img {
  width: 60px;
  height: auto;
  border-radius: 6px;
}

/* Reviews - Flexbox Layout */
.reviews-scroll-container {
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.review-image {
  height: 260px; /* Reduced by another 20px from 280px */
  width: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.review-image:hover {
  transform: scale(1.05);
  z-index: 10;
  position: relative;
}

/* Contact Form */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.form-group {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 24px;
  background-color: #1a1a1a;
  border: #333 2px solid;
  border-radius: 16px;
  color: var(--text-primary);
  box-shadow: inset 0 2px 3px rgba(76, 76, 76, 0.3);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.submit-btn {
  background: transparent;
  color: white;
  border: none;
  padding: 0;
  border-radius: var(--border-radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn-img {
  width: 100%;
  height: auto;
  max-height: 60px;
  border-radius: 300px;
  transition: var(--transition);
  box-shadow: 0 20px 50px rgba(0, 94, 255, 0.414);
  filter: drop-shadow(0 2px 8px rgba(255, 0, 115, 0.2));
}

.submit-btn:hover .submit-btn-img {
  box-shadow: 0 20px 50px rgba(0, 94, 255, 0.414);
  filter: drop-shadow(0 4px 12px rgba(255, 0, 115, 0.3));
}

/* Footer */
footer {
  background: var(--surface-dark);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
}

.footer-content {
  text-align: center;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.links-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  margin: 0px 20px;
  transition: var(--transition);
}

.links-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 50px 0; /* Reduced from 80px */
  }
  
  .section-header {
    margin-bottom: 40px; /* Reduced from 64px */
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-text-center h1 {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .features-grid {
    gap: 30px;
  }
  
  .feature-card {
    padding: 0;
    min-height: auto;
  }
  
  .feature-image img {
    width: 600px;
    max-width: 90vw;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-download {
    display: flex; /* Keep download button visible on mobile */
  }
  
  .desktop-download .download-btn-img {
    max-height: 35px; /* Smaller size for mobile navbar */
  }
  
  .brand-text {
    font-size: 16px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-download .download-btn-img {
    max-height: 50px;
  }
  
  .download-counter {
    font-size: 16px;
  }
  
  .counter-number {
    font-size: 20px;
  }
  
  .nav-download .download-btn-img {
    max-height: 35px;
  }
  
  .contact-form-container {
    max-width: 95%;
  }
  
  .form-group {
    max-width: 100%;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 16px 20px;
  }
  
  .submit-btn {
    max-width: 100%;
  }
  
  .review-image {
    height: 210px; /* Reduced by another 20px from 230px */
  }
  
  .desktop-download .download-btn-img {
    max-height: 32px; /* Even smaller for tablet */
  }
}

@media (max-width: 480px) {
  .section {
    padding: 30px 0; /* Further reduced from 50px for very small screens */
  }
  
  .section-header {
    margin-bottom: 24px; /* Further reduced from 40px */
  }
  
  .hero-text-center h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .feature-card {
    padding: 0;
  }
  
  .feature-image img {
    width: 400px;
    max-width: 85vw;
  }
  
  .hero-download .download-btn-img {
    max-height: 45px;
  }
  
  .download-counter {
    font-size: 14px;
  }
  
  .counter-number {
    font-size: 18px;
  }
  
  .desktop-download .download-btn-img {
    max-height: 28px; /* Smallest size for mobile phones */
  }
  
  .form-group input,
  .form-group textarea {
    padding: 14px 18px;
    font-size: 14px;
  }
  
  .submit-btn-img {
    max-height: 80px;
  }
  
  .review-image {
    height: 160px; /* Reduced by another 20px from 180px */
  }
}

/* Utilities */
img {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
