/* ------------------------------
   Main Flex Layout for Banner & Content
--------------------------------*/
.main-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.banner-aside {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}
.homepage-banner {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  border: 2px solid #000;
}
.main-content {
  flex: 1 1 0;
}
@media (max-width: 900px) {
  .main-flex {
    flex-direction: column;
    gap: 0;
  }
  .banner-aside {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    padding-top: 0;
    margin-bottom: 18px;
  }
  .homepage-banner {
    max-width: 160px;
  }
}
/* Banner Section */
.banner-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 0 0;

  /* ------------------------------
     Kanye-Inspired Minimal CSS
     Monochrome • Brutalist • Bold
  --------------------------------*/

  @import url('https://fonts.googleapis.com/css2?family=Helvetica:wght@300;400;700&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Helvetica, Arial, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
    letter-spacing: 0.3px;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }

  /* ------------------------------
     Top Bar
  --------------------------------*/
  .top-bar {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #000;
  }

  /* ------------------------------
     Header + Nav
  --------------------------------*/
  header {
    text-align: center;
    padding: 40px 0 20px;
  }

  header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  .cta-button {
    padding: 10px 24px;
    font-size: 1em;
  }
}
/* Success Popup Animation */
.success-popup {
  position: fixed;
  top: 30px;
  right: 30px;
  background: rgba(71, 0, 6, 0.85);
  color: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
}