/*
Theme Name: Ironwood Bay
Description: Cinematic scroll theme for Ironwood Bay commercial real estate.
Version: 1.0
Author: Ironwood Bay
*/

:root {
  --navy: #0a1628;
  --brass: #c4a265;
  --brass-dim: rgba(196, 162, 101, 0.75);
  --warm-white: #f8f7f4;
  --ink: #1a1f2e;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: var(--sans);
  color: #fff;
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Full-screen frame ---------- */

.frame {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
}

/* ---------- Fixed Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

.nav > * {
  pointer-events: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--brass);
}

/* ---------- Hero ---------- */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.hero-content {
  text-align: center;
  animation: fadeUp 1s ease-out both;
}

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

.hero-logo {
  height: 160px;
  width: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.9;
  color: var(--brass-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Property Sections ---------- */

.property {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.3);
  pointer-events: none;
}

.property-label {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.property-label:hover {
  color: var(--brass);
}

/* ---------- Contact ---------- */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  text-align: center;
}

.contact-content {
  margin-bottom: auto;
  margin-top: auto;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dim);
  margin-bottom: 0.8rem;
}

.contact-email {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.contact-email:hover {
  color: var(--brass);
  border-color: var(--brass);
}

/* ---------- Footer ---------- */

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  text-align: center;
}

.footer small {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
}

/* ---------- Responsive ---------- */

@media (max-width: 600px) {
  .nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .property-label {
    padding: 1.5rem;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}
