html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Guidalia Brand Colors */
:root {
  --guidalia-primary: #FF6B35;
  --guidalia-secondary: #004E89;
  --guidalia-accent: #FFB700;
  --guidalia-dark: #1A1A1D;
  --guidalia-light: #F7F7F7;
}

/* Hero Section */
.hero-section {
  background: var(--guidalia-accent);
  color: var(--guidalia-dark);
  padding: 80px 0;
  text-align: center;
}

.hero-section .logo {
  max-width: 600px;
  width: 90%;
  height: auto;
  margin-bottom: 2rem;
}

.hero-section .tagline {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--guidalia-secondary);
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background-color: var(--guidalia-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  color: var(--guidalia-secondary);
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--guidalia-primary);
  margin-bottom: 1rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-appstore, .btn-googleplay {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-appstore {
  background-color: #000;
  color: white;
}

.btn-googleplay {
  background-color: #414141;
  color: white;
}

.btn-appstore:hover, .btn-googleplay:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Screenshots Section */
.screenshots-section {
  padding: 60px 0;
  background-color: var(--guidalia-primary);
  color: white;
}

.screenshots-section h2 {
  color: white;
}

.screenshot-gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.screenshot-item {
  flex: 0 0 auto;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: white;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Guide Section */
.guide-section {
  background: var(--guidalia-secondary);
  color: white;
  padding: 80px 0;
}

.guide-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guide-section h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.guide-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.guide-feature h3 {
  margin-bottom: 1rem;
}

/* Privacy and Terms Pages */
.content-page {
  padding: 60px 0;
}

.content-page h1 {
  color: var(--guidalia-secondary);
  margin-bottom: 2rem;
}

.content-page p, .content-page ul {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section .tagline {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .screenshot-gallery {
    padding-left: 1rem;
  }

  .guide-section h1 {
    font-size: 2rem;
  }
}

/* Navigation */
.navbar-brand {
  font-weight: bold;
  color: var(--guidalia-primary) !important;
}

.nav-link {
  color: var(--guidalia-dark) !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--guidalia-primary) !important;
}

/* Footer */
.footer {
  background-color: var(--guidalia-dark);
  color: white;
  padding: 2rem 0;
}

.footer a {
  color: var(--guidalia-accent);
}

/* Coming Soon Section */
.coming-soon-body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}

.coming-soon-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--guidalia-light);
  padding: 2rem;
  overflow: hidden;
  animation: background-color-shift 20s ease-in-out infinite;
}

@keyframes background-color-shift {
  0% {
    background-color: #F7F7F7;
  }
  20% {
    background-color: #E8F4F8;
  }
  40% {
    background-color: #FFF5E8;
  }
  60% {
    background-color: #F0F8F0;
  }
  80% {
    background-color: #FFF0F5;
  }
  100% {
    background-color: #F7F7F7;
  }
}

.coming-soon-container {
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon-logo {
  max-width: 600px;
  width: 90%;
  max-height: 40vh;
  height: auto;
  margin-bottom: 2rem;
  object-fit: contain;
}

.coming-soon-tagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--guidalia-secondary);
  margin: 0 0 4rem 0;
  letter-spacing: -0.02em;
}

.coming-soon-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  color: #000000;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .coming-soon-tagline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  
  .coming-soon-text {
    font-size: 1.2rem;
  }
  
  .coming-soon-logo {
    margin-bottom: 1.5rem;
    max-height: 35vh;
  }
}