/* ============================================================
   Landing Portal Page Styles
   Used by: resources/views/portal.blade.php
   ============================================================ */
.portal-nav-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: #022f37;
}

.portal-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.portal-intro {
  padding: 24px 24px 0;
  text-align: center;
}

.portal-intro-brand {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.portal-intro-headline {
  font-size: 24px;
  font-weight: 900;
  line-height: 31px;
  background: linear-gradient(
    174.31deg,
    #b9a13d 0%,
    #dbd393 50.48%,
    #b6a23d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.9));
  margin: 0;
}

.portal-intro-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
  margin: 0;
}

.portal-body {
  padding: 26px 24px 32px;
}

.portal-title {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 16px 0;
}

.portal-banner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portal-banner-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 12.9px rgba(0, 0, 0, 0.1);
}

.portal-banner-item:hover {
  opacity: 0.9;
  color: #000;
}

.portal-banner-image {
  width: 100%;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.portal-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.portal-banner-seveneleven {
  height: 190px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-7eleven-logo {
  width: 83px;
  height: 110px;
  object-fit: contain;
  display: block;
}

.portal-banner-caption-box {
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
}

.portal-banner-caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  margin: 0;
  flex: 1;
}

/* Base */
body {
  font-family: "Noto Sans Thai", sans-serif;
  background-color: #fff;
  margin: 0;
}
.portal-main {
  max-width: 500px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: #e8f4fa;
  color: #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* Cover page (before live date) */
.cover-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #fff;
  position: fixed;
  inset: 0;
}
.cover-page img {
  max-width: 500px;
  width: 100%;
  height: auto;
}
