html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #0e0e0e 0%, #1a1a1a 100%);
  color: #fff;
  min-height: 100vh;
}

/* Navbar */
nav {
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2196f3; /* accent blue */
}

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

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2196f3;
}

/* CTA Button */
.cta-btn {
  background: #2196f3;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cta-btn:hover {
  background: #1976d2;
}

/* Hero Section */
.hero {
  padding: 5rem 3rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero p {
  margin-top: 1rem;
  color: #bbb;
  font-size: 1.1rem;
}

/* ===== Footer with logo & icons ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1rem;
  text-align: center;
  background: #111;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2196f3;
}

.footer-brand a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-brand a:hover { color: #2196f3; }

.footer-socials {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-socials a {
  color: #ddd;
  transition: color 0.2s ease;
}
.footer-socials a:hover { color: #2196f3; }

.footer-socials svg {
  display: block;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #777;
}