/* ===== RoastYourBiz Stylesheet ===== */

/* === Global Resets & Base === */
body {
  margin: 0;
  font-family: 'Inter', 'Helvetica', Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #1f2937;
  animation: fadeInBody 0.8s ease-out forwards;
}
@keyframes fadeInBody {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
a:hover { color: #f97316; transform: translateY(-1px); }

/* === Sticky Ribbon === */
#ribbon {
  background: #0f172a;
  border-bottom: 1px solid #374151;
  color: #f9fafb;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transform: translateY(-100%);
  animation: ribbonIn 0.6s ease-out forwards;
}
@keyframes ribbonIn { to { transform: translateY(0); } }
.ribbon-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
#ribbon .btn-primary {
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  box-shadow: 0 5px 15px rgba(99,102,241,.4);
  transition: filter .2s ease, transform .25s ease, box-shadow .25s ease;
}
#ribbon .btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(99,102,241,.55);
}
@media (max-width: 640px) {
  #ribbon { font-size: 1rem; padding: 12px; }
  .ribbon-inner { flex-direction: column; gap: 8px; text-align: center; }
  #ribbon .btn-primary { width: 100%; text-align: center; }
}

/* === Header Logo === */
header .logo img,
.logo img,
.navbar-brand img {
  width: 230px !important;
  height: auto !important;
  display: inline-block;
  vertical-align: middle;
  transition: transform .25s ease;
}
header .logo img:hover,
.logo img:hover { transform: scale(1.04); }
@media (max-width: 1024px) {
  header .logo img, .logo img, .navbar-brand img { width: 180px !important; }
}
@media (max-width: 768px) {
  header .logo img, .logo img, .navbar-brand img { width: 160px !important; }
}
@media (max-width: 480px) {
  header .logo img, .logo img, .navbar-brand img { width: 140px !important; }
}
header, .site-header, .nav {
  display: flex;
  align-items: center;
  min-height: 90px;
}

/* === Headings === */
h1, .hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
h2 {
  font-size: 2.4rem;
  font-weight: 800;
}

/* === Buttons / CTAs === */
.btn-primary, .cta-button, button[type="submit"], a[href*="tally"] {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(249,115,22,.45);
  transition: all 0.3s cubic-bezier(.175,.885,.32,1.275);
  cursor: pointer;
}
.btn-primary:hover, .cta-button:hover, button[type="submit"]:hover, a[href*="tally"]:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(249,115,22,.65);
  background: linear-gradient(135deg, #fb923c, #f97316);
}
@media (max-width: 768px) {
  .btn-primary, .cta-button, button[type="submit"], a[href*="tally"] {
    min-height: 50px;
    font-size: 1.05rem;
    padding: 14px 24px;
  }
}

/* === Pricing Cards === */
.card, .pricing-card, .price-box, .plan {
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover, .pricing-card:hover, .price-box:hover, .plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  border-color: #f97316;
}

/* === Testimonials === */
.testimonial, .review, blockquote {
  border-left: 5px solid #f97316;
  background: rgba(249,115,22,0.05);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}

/* === Forms === */
input, textarea, select {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  font-size: 1rem;
  transition: all 0.25s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
  outline: none;
}

/* === Global Smooth Transitions === */
* { transition: all 0.25s ease; }
