:root {
  --fp-primary: #FF6B35;
  --fp-secondary: #F7931E;
  --fp-success: #4ECDC4;
  --fp-info: #45B7D1;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@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;
  padding-top: 0;
}

section {
  padding: 80px 0;
}

.navbar {
  transition: all 0.3s ease;
  background-color: white !important;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-fp-primary {
  background-color: var(--fp-primary);
  border-color: var(--fp-primary);
  color: #fff;
}

.btn-fp-primary:hover {
  background-color: #3bc4d0;
  border-color: #3bc4d0;
  color: #fff;
}

.btn-outline-fp-secondary {
  color: var(--fp-secondary);
  border-color: var(--fp-secondary);
}

.btn-outline-fp-secondary:hover {
  background-color: var(--fp-secondary);
  color: #fff;
}

.text-fp-primary { color: var(--fp-primary) !important; }
.text-fp-secondary { color: var(--fp-secondary) !important; }
.text-fp-success { color: var(--fp-success) !important; }
.text-fp-info { color: var(--fp-info) !important; }

.bg-fp-primary { background-color: var(--fp-primary) !important; }
.bg-fp-secondary { background-color: var(--fp-secondary) !important; }

.hero-section {
  position: relative;
  color: var(--fp-info);
  background-color: white;
  padding: 120px 0 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-image {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-section .container {
  width: 100%;
}

.navbar-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
}

/* App Store Badge */
.app-store-badge {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
}

.app-store-button {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-store-button:hover {
    transform: scale(1.05);
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--fp-secondary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Screenshot Placeholders */
.screenshot-placeholder {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coming-soon-text {
    color: var(--fp-info);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshot-placeholder {
        height: 300px;
    }
}

/* Gallery Styles */
.app-screenshot {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 15px;
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: scale(1.02);
}

.app-screenshot img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--fp-info);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    background-color: var(--fp-info) !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Carousel Animation */
.carousel-item {
    transition: transform 1.2s ease-in-out;
}

#appScreenshots {
    margin-bottom: 60px;
}