@font-face {
  font-family: 'Biennale';
  src: url('../fonts/Biennale-Medium.otf') format('opentype');
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Biennale', sans-serif;
  background: #e9e7df;
  color: #04232b;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s;
  font-family: inherit;
}

.btn--pill {
  background: #fff;
  color: #000;
  padding: 14px 32px;
  border-radius: 40px;
}

.btn--pill:hover {
  background: #ececec;
}

.btn--text {
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-weight: 500;
}

.btn--text:hover {
  color: #0c2b3a;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 20px;
}

.site-header__logo {
     height: 50px;
  width: auto;
  display: block;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 95vh;
  background: url('../../assets/images/carbanner.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero__card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    background: #ffffff00;
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35); */
    animation: fadeIn 0.4s ease;
}

.hero__logo {
  max-width: 260px;   /* adjust as needed */
  height: auto;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero__text {
  color: #fff;
      font-size: 25px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero__actions .btn--pill {
  background: #0c2b3a;
  color: #fff;
  min-width: 220px;
}

.hero__actions .btn--pill:hover {
  background: #16465e;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000;
  text-align: center;
  padding: 18px;
}

.site-footer__link {
  color: #fff;
      font-size: 18px;
  text-decoration: none;
}

.site-footer__link:hover {
  color: #ccc;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .hero {
    min-height: 95vh;
    background: url('../../assets/images/bannnerm.png') center/cover no-repeat;
    padding: 20px;
  }

  .hero__card {
    max-width: 500px;
    padding: 36px 24px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__text {
    font-size: 22px;
  }

  .site-header__logo {
    height: 40px;
    width: auto;
    display: block;
  }
}
