/* === Hooked Bros – Dark Maritime Theme === */

:root {
  --bg: #0a1628;
  --bg-alt: #0d1b2f;
  --panel: #112240;
  --text: #e6f1ff;
  --text-dim: #8899b0;
  --accent: #2dd4bf;
  --accent-bright: #64ffda;
  --radius: 14px;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand em { color: var(--accent); font-style: normal; }

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("images/hero-bg.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.35) 50%,
    var(--bg) 100%
  );
}

.hero-content { position: relative; z-index: 1; padding-top: 64px; }

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--accent-bright);
  margin-top: 12px;
  font-weight: 600;
}

.subline {
  color: var(--text-dim);
  margin-top: 10px;
  font-size: 1.05rem;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #06251f;
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.35);
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(100, 255, 218, 0.5);
}

.btn-ghost {
  background: rgba(17, 34, 64, 0.7);
  color: var(--text);
  border: 1px solid rgba(45, 212, 191, 0.35);
}

.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* === Sections === */
.section { padding: 100px 0; }

.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  text-align: center;
  font-weight: 800;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  margin: 12px auto 52px;
  max-width: 520px;
}

/* === Cards === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.5);
}

.card-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.3);
  margin-bottom: 20px;
}

.card h3 { font-size: 1.4rem; margin-bottom: 4px; }

.card-role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.card p:last-child { color: var(--text-dim); font-size: 0.97rem; }

/* === Socials === */
.socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--panel);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  transition: fill 0.2s;
}

.social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(45, 212, 191, 0.08);
}

.social-btn:hover svg { fill: var(--accent-bright); }

/* === Footer === */
.footer {
  border-top: 1px solid rgba(45, 212, 191, 0.12);
  padding: 32px 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

/* === Responsive === */
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav-links { gap: 18px; }
  .footer-inner { justify-content: center; text-align: center; }
}
