/* Reset + base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Oxygen', sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: transparent;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.cta-top {
  background-color: #2563eb;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero section */
.hero {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 8%;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #aaaaaa;
  margin-bottom: 2rem;
  max-width: 500px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* space between penguin and text */
  font-weight: 700;
  font-size: 1.25rem;
}

/* Cartoon penguin icon styling */
.logo-icon {
  width: 73px;
  height: 73px;
  object-fit: contain;
  background: transparent;
  image-rendering: crisp-edges;
  display: block;
}

.cta-main {
  background-color: #2563eb;
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-main:hover {
  background-color: #1e40af;
}

/* Hero image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #888;
}

/* Removes the left logo spacing placeholder from interfering */
.logo-space {
  width: 48px; /* preserves height alignment */
}

/* Adjusts the penguin icon inside the top-right button */
.right-penguin {
  width: 83px;
  height: 83px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Right cluster: button + penguin side by side, aligned to the far right */
.right-cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto; /* pushes this cluster to the right */
}