/* 
 * Landing Page Styles
 * 
 * Brand-specific styles only. Bootstrap handles most layout, spacing, and components.
 * Use Bootstrap utilities wherever possible.
 */

/* Landing page background - brand gradient */
.landing-page {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
}

/* Landing header - brand-specific backdrop blur */
.landing-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.landing-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Brand-specific CTA buttons */
.landing-cta-btn {
  padding: 0.85rem 2.25rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.landing-cta-btn--solid {
  background: linear-gradient(135deg, #ffe29f 0%, #ffa99f 48%, #fa709a 100%);
  color: #210c2c;
  box-shadow: 0 18px 35px rgba(250, 112, 154, 0.45);
}

.landing-cta-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.landing-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Feature cards - brand-specific hover effect */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Feature icons - brand-specific gradients */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-1 {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.feature-icon-2 {
  background: linear-gradient(135deg, #a8e6cf 0%, #7fcdcd 100%);
}

.feature-icon-3 {
  background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
}

.feature-icon-4 {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.feature-icon-5 {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.feature-icon-6 {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
}

/* Landing login page - brand-specific background */
.landing-login {
  background: radial-gradient(circle at top, rgba(252, 236, 255, 0.25), transparent 45%),
              linear-gradient(135deg, #160b28, #050412 80%);
}

.landing-login__card {
  width: min(460px, 100%);
  background: rgba(7, 5, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Google sign-in button - brand-specific styling */
.landing-google-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  color: #1f1b2d;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-google-btn__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fff;
  color: #4285F4;
  font-weight: 900;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(33, 25, 58, 0.35);
}

/* Dev login dropdown - brand-specific styling */
.dev-login-dropdown {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  min-width: 160px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.dev-login-dropdown:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.dev-login-dropdown:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.15);
}

.dev-login-dropdown option {
  background: #1a0f2e;
  color: white;
}

/* Unlaunched landing - brand gradient */
.unlaunched-landing {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
}

.unlaunched-signup {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Signup submit button - brand gradient */
.signup-submit {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 109, 143, 0.4);
}

.signup-submit:active {
  transform: translateY(0);
}

/* Form input focus - brand color */
.form-control:focus,
.form-select:focus {
  border-color: #006D8F;
  box-shadow: 0 0 0 0.25rem rgba(0, 109, 143, 0.25);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .landing-hero h1 {
    font-size: 2.5rem;
  }
  
  .landing-hero p {
    font-size: 1.1rem;
  }
  
  .unlaunched-title {
    font-size: 2.5rem;
  }
  
  .unlaunched-tagline {
    font-size: 1.25rem;
  }
  
  .unlaunched-description {
    font-size: 1rem;
  }
  
  .unlaunched-signup {
    padding: 1.5rem !important;
  }
}
