/* =============================================
   RACKDROP RENTALS — Global Styles
   Brand: Easterday Strategy Group, LLC
   DBA: RackDrop Rentals
   ============================================= */

:root {
  --bg: #FAFAF8;
  --bg-warm: #F3F1ED;
  --bg-dark: #1A1A1A;
  --bg-card: #FFFFFF;
  --accent: #E85D26;
  --accent-hover: #D14F1C;
  --accent-soft: #FFF0E9;
  --teal: #0DAB8B;
  --teal-soft: #E6F9F4;
  --text: #1A1A1A;
  --text2: #5A5A5A;
  --text3: #8A8A8A;
  --text-on-dark: #F0F0F0;
  --border: #E5E2DC;
  --border-dark: #D5D2CC;
  --shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.1);
  --radius: 16px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text2); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-cta {
  background: var(--accent) !important; color: #FFF !important;
  padding: 10px 24px !important; border-radius: 10px !important;
  font-weight: 600 !important; font-size: 14px !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* Mobile menu */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #FFF;
  padding: 16px 32px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,38,0.2);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); color: var(--text);
  padding: 16px 32px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  text-decoration: none; border: 1px solid var(--border); transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--border-dark); box-shadow: var(--shadow); }

/* ===== SECTION HELPERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: 44px; font-weight: 800;
  letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px;
}
.section-sub {
  font-size: 18px; color: var(--text2); max-width: 560px; margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  padding: 48px; background: var(--bg-dark); border-top: 1px solid #2A2A2A;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 40px; width: auto; }
footer p { font-size: 13px; color: #555; line-height: 1.6; max-width: 300px; }
.footer-links { display: flex; gap: 56px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; color: #666; margin-bottom: 14px;
}
.footer-col a {
  display: block; color: #555; text-decoration: none; font-size: 14px;
  margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-on-dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .section-title { font-size: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-logo img { height: 36px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 60px; left: 0; right: 0; background: var(--bg-card);
    border-bottom: 1px solid var(--border); padding: 20px; gap: 16px;
  }
  .section-title { font-size: 32px; letter-spacing: -1px; }
  .section-sub { font-size: 16px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 24px; }
}
