@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px; /* reduced vertical space */
}

.nav-left img {
  height: 360px; /* 3x bigger */
}

.nav-right a {
  margin-left: 40px;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  color: #ff7a18;
  text-decoration: none;
}

.nav-right a:hover {
  text-decoration: underline;
}

/* MAIN CONTENT */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px 60px; /* reduced top padding */
  text-align: center;
}

.logo {
  max-width: 700px;
  width: 100%;
  margin-bottom: 25px; /* tighter spacing */
}

.tagline {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 26px;
  font-family: "Space Grotesk", sans-serif;
}

/* CARDS */
.card {
  background: linear-gradient(135deg, #ff7a18, #ff4500);
  color: #000;
  padding: 24px 30px;
  border-radius: 16px;
  margin: 22px auto;
  max-width: 820px;
  font-weight: 600;
}

.card.dark {
  background: #111;
  color: #eee;
  font-weight: 400;
  line-height: 1.7;
  border: 1px solid #222;
}

/* CONTACT PAGE – COOLER DESIGN */
.contact-card {
  font-size: 2.1rem;
  padding: 60px 50px;
  line-height: 1.6;
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid #ff7a18;
  border-radius: 20px;
}

.contact-card a {
  font-size: 2.2rem;
  font-weight: 700;
}

/* FOOTER */
.footer {
  margin-top: auto;
  background: #0b0b0b;
  border-top: 1px solid #222;
  padding: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LINKS */
a {
  color: #ff7a18;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
  }

  .nav-left img {
    height: 160px;
  }

  .nav-right a {
    margin: 0 18px;
    font-size: 1.1rem;
  }

  .logo {
    max-width: 90%;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .contact-card {
    font-size: 1.4rem;
    padding: 40px 25px;
  }

  .contact-card a {
    font-size: 1.5rem;
  }
}
