/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Colors & Fonts */
:root {
  --primary: #ff7a00;   /* Hermes-like orange */
  --secondary: #1c1c1c;
  --light: #f9f9f9;
  --grey: #555;
}

body {
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--light);
  color: var(--secondary);
  line-height: 1.6;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 50px 0;
  text-align: center;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: white;
  padding: 120px 20px;
  position: relative;
  min-height: 500px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero .tagline {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 2px;
}

.hero .subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: white;
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: var(--secondary);
  color: white;
}

/* Problems */
.problems {
  background: white;
  color: var(--secondary);
  padding: 70px 20px;
}

.problems h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.problems ul {
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.problems li {
  margin: 15px 0;
  padding-left: 25px;
  position: relative;
  color: var(--grey);
}

.problems li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Solutions */
.solutions {
  background: var(--light);
  padding: 70px 20px;
}

.solutions h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: var(--primary);
  color: white;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #eee;
  color: var(--grey);
  font-size: 0.9rem;
}

/* Overlay header container (fixed position) */
.header-overlay {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 1000;
}

/* Flex container for buttons + home */
.auth-home-container {
  display: flex;
  align-items: center;
  gap: 600px; /* space between items */
}

/* Home icon */
#home-button {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  padding: 5px;
  z-index: 1;
}

/* Buttons styling */
.auth-home-container .btn {
  background: white;        /* white background */
  color: var(--primary);    /* orange text */
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  white-space: nowrap;
  margin-top: -20px;
}

/* Hover effect */
.auth-home-container .btn:hover {
  background: var(--secondary);
  color: white;
}



/* Fade & Slide Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-bottom: 30px;
  margin-top: -50px;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}


.mockup {
  text-align: center;
}

.device-mockup {
  max-width: 300px;       /* keeps phone small on desktop */
  width: 80%;             /* scales nicely on medium screens */
  max-width: 330px;       /* prevents it from getting huge on big screens */
  display: block;
  margin: 0 auto;
  border-radius: 30px;
}




/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .auth-home-container {
    gap: 15px;
  }

  .auth-home-container .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

#home-button {
    margin-left: 35px;
    margin-right: 35px;
    }
}