/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2b3c;
  --navy-dk: #0f1c2a;
  --gold:    #c8901a;
  --gold-lt: #e0a835;
  --off-white: #f5f4f0;
  --text:    #222;
  --text-mid:#555;
  --card-bg: #ffffff;
  --border:  #e0ddd8;
  --radius:  8px;
  --shadow:  0 4px 20px rgba(0,0,0,0.10);
  --nav-h:   72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--off-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}
.logo-text-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy-dk); }

.nav-phone {
  color: var(--gold-lt);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--navy); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dk);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.03em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1825 0%, #1a3a55 60%, #0e2237 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,24,37,0.85) 40%, rgba(10,24,37,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  max-width: 760px;
  margin-left: 8vw;
}
.hero-content img {
  height: 125px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  padding-top: 15px;
  border-top: 1px solid white;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(200,144,26,0.35);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200,144,26,0.45);
}

/* ===== SECTION SHARED ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}
.section-title.light { color: #fff; }
.section-title.light::after { background: var(--gold-lt); }

/* ===== MANUFACTURERS GRID ===== */
.manufacturers {
  background: var(--off-white);
}

.mfr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mfr-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mfr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.mfr-logo {
  height: 100px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  margin-bottom: 0.25rem;
  filter: grayscale(15%);
}
.mfr-logo-placeholder {
  height: 100px;
  width: 100%;
  background: linear-gradient(90deg, #e8e6e1 0%, #d4d0c8 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.mfr-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.mfr-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.mfr-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.mfr-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}
.mfr-link::after { content: ' →'; }

#MaddenProductsLogo {
  background-color: black;
  padding: 10px;
  border-radius: 5px;
}

#UniluxLogo {
  background-color: black;
  padding: 10px;
  border-radius: 5px;
}

#UniluxLogo {
  background-color: black;
  padding: 10px;
  border-radius: 5px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy);
}

.contact-inner {
  max-width: 900px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.contact-item a, .contact-item address {
  color: #fff;
  text-decoration: none;
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-lt); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dk);
  text-align: center;
  padding: 1.75rem 2rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer p + p { margin-top: 0.3rem; }
.footer-copy { opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero-content { margin-left: 0; }

  .mfr-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .mfr-grid { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
}
