﻿:root {
  --ff-primary: #ff6f61;
  --ff-secondary: #ffe8e1;
  --ff-dark: #2b2b2b;
  --ff-accent: #00bfa5;
  --ff-bg: #fff9f7;
}

body {
  background: radial-gradient(circle at top, #fff0ea 0%, #fff9f7 45%, #fefefe 100%);
  color: var(--ff-dark);
}

.ff-nav {
  background: var(--ff-primary);
}

.ff-main {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.ff-hero {
  padding: 2rem 0;
}

.ff-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
}

.ff-cta .btn-large {
  margin-right: 0.5rem;
}

.ff-feature .material-icons {
  font-size: 2.5rem;
  color: var(--ff-primary);
}

.ff-list {
  padding-left: 1rem;
}

.ff-list li {
  list-style: disc;
  margin-bottom: 0.3rem;
}

.ff-hero-card {
  background: #ffffff;
  border-radius: 16px;
}

.ff-swipe-container {
  position: relative;
  min-height: 480px;
}

.ff-swipe-card {
  position: absolute;
  width: 100%;
  max-width: 420px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ff-swipe-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.ff-swipe-content {
  padding: 1rem;
}

.ff-tag {
  display: inline-block;
  background: var(--ff-secondary);
  color: #333;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
}

.ff-swipe-actions {
  margin-top: 2rem;
}

.ff-swipe-actions .btn {
  margin: 0 0.5rem;
}

.ff-chat-card {
  min-height: 60vh;
}

.ff-chat-messages {
  max-height: 50vh;
  overflow-y: auto;
  padding: 0.5rem;
  background: #fafafa;
  border-radius: 12px;
}

.ff-chat-message {
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  max-width: 80%;
}

.ff-chat-message.me {
  background: var(--ff-accent);
  color: #fff;
  margin-left: auto;
}

.ff-chat-message.them {
  background: #eee;
}

.ff-install {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 280px;
  z-index: 1000;
}

.ff-filter-card {
  position: sticky;
  top: 1rem;
}

.ff-photo-upload {
  margin-top: 2rem;
}

.ff-photo-item {
  position: relative;
  margin-bottom: 1rem;
}

.ff-photo-item img {
  width: 100%;
  border-radius: 12px;
}

.ff-badge {
  display: inline-block;
  background: var(--ff-primary);
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  font-size: 0.75rem;
  margin-left: 0.4rem;
}

@media (max-width: 600px) {
  .ff-hero h1 {
    font-size: 2rem;
  }
  .ff-swipe-card {
    max-width: 100%;
  }
}

