/* ============================================================
   Rhino Services, LLC — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --mid:        #1c1c1c;
  --border:     #2a2a2a;
  --gold:       #c8a84b;
  --gold-light: #e2c97e;
  --white:      #f5f5f0;
  --muted:      #888880;
  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Barlow', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e0e0e0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img {
  height: 100px;
  width: auto;
  transition: opacity 0.2s;
}
.logo-link:hover img { opacity: 0.7; }

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #555;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}

nav a:hover,
nav a.active { color: var(--black); }
nav a:hover::after,
nav a.active::after { width: 100%; }

/* ── Main content ── */
main { flex: 1; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
          radial-gradient(ellipse at 20% 50%, rgba(200, 168, 75, 0.08) 0%, transparent 60%),
          radial-gradient(ellipse at 80% 20%, rgba(200, 168, 75, 0.05) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 100%;
  height: auto;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--black);
  background: var(--gold);
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-cta:hover {
  background: transparent;
  color: var(--gold);
}

/* ── Info strip (phone / address) ── */
.info-strip {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-block h2 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.info-block p,
.info-block a {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.5;
}

.info-block a:hover { color: var(--gold); }

/* ── Contact page specific ── */
.contact-hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.contact-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  animation: fadeUp 0.7s ease both;
}

.contact-hero-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.contact-hero-inner h1 span { color: var(--gold); }

.contact-hero-inner p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-details {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.contact-card h2 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card p,
.contact-card a {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-card a:hover { color: var(--gold); }

/* ── Map ── */
.map-section {
  width: 100%;
  border-top: 1px solid var(--border);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

/* ── Footer ── */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 100px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #333;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--black); }

.footer-copy {
  font-size: 0.78rem;
  color: #444;
  letter-spacing: 0.05em;
}

.footer-copy a {
  color: var(--gold);
  transition: opacity 0.2s;
}
.footer-copy a:hover { opacity: 0.7; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .info-strip-inner,
  .contact-details { grid-template-columns: 1fr; }

  .header-inner { padding: 0 1.25rem; }
  nav ul { gap: 1.5rem; }
}