/* =============================================
   Northern Ventures – Global Styles
   ============================================= */

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

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

:root {
  --bg:       #1a1a1a;
  --bg-mid:   #222222;
  --text:     #ffffff;
  --text-dim: #cccccc;
  --accent:   #8aaa70;
  --nav-h:    70px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

/* ── Navbar ───────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #111;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo span {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active { color: var(--accent); }

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-title {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.hero-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 0.2em;
}

.hero-title .subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-box {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,0.85);
  border-radius: 12px;
  padding: 32px 40px;
  max-width: 560px;
  width: 90%;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ddd;
  z-index: 1;
}

/* ── Section: service strip (bg image) ───── */
.strip-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 40px;
}

.strip-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.strip-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.strip-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.strip-content p {
  font-size: 0.97rem;
  color: #ccc;
  margin-bottom: 1rem;
}

/* ── Section: dark ────────────────────────── */
.dark-section {
  background: var(--bg-mid);
  padding: 90px 40px;
}

.dark-section .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dark-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.three-col p {
  font-size: 0.95rem;
  color: #bbb;
  text-align: center;
  line-height: 1.8;
}

/* ── Page header (About / Contact / Products) */
.page-header {
  padding-top: var(--nav-h);
  background: var(--bg);
  padding-bottom: 0;
}

/* ── About page ───────────────────────────── */
.about-section {
  background: var(--bg-mid);
  padding: 100px 40px;
  text-align: center;
}

.about-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.about-section p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.9;
}

/* ── Contact page ─────────────────────────── */
.contact-section {
  padding: 100px 40px;
  background: var(--bg-mid);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.contact-info p {
  color: #bbb;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-details {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 48px;
  max-width: 560px;
}

.contact-details .eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-details h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.contact-details p {
  color: #bbb;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-actions a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.contact-actions a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-form .full-width { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 10px 4px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #666; }

.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--accent); }

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  grid-column: 1 / -1;
  background: #fff;
  color: #111;
  border: none;
  padding: 14px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-submit:hover { background: var(--accent); color: #fff; }

/* ── Products page ────────────────────────── */
.products-section {
  padding: 100px 40px;
  background: var(--bg-mid);
}

.products-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 3rem;
}

.products-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px;
}

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img { transform: scale(1.06); }

.product-card .product-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.75);
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-name { transform: translateY(0); }

/* Always show name on mobile */
@media (hover: none) {
  .product-card .product-name { transform: translateY(0); }
}

/* ── Footer ───────────────────────────────── */
footer {
  background: #111;
  padding: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.06em;
}

footer a { color: #666; transition: color 0.2s; }
footer a:hover { color: var(--accent); }

/* ── Responsive ───────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  nav ul { gap: 18px; }
  nav ul a { font-size: 0.8rem; }
  .logo span { font-size: 0.95rem; }

  .hero-box { bottom: 40px; padding: 24px 20px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-details { border-left: none; padding-left: 0; }
  .contact-form { grid-template-columns: 1fr; }

  .strip-section,
  .dark-section,
  .about-section,
  .contact-section,
  .products-section { padding: 60px 20px; }
}
