:root {
  --page-width: 1400px;
  --side-width: 235px;
  --gap: 52px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Cinzel", "Garamond", serif;
  color: #f3e0b2;
  background: #000;
}

.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 36px;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(0,0,0,0.1), rgba(0,0,0,0.82) 70%),
    radial-gradient(closest-side at 50% 55%, rgba(0,0,0,0), rgba(0,0,0,0.75) 80%),
    url("background.webp") center/cover no-repeat;
  filter: saturate(0.95);
  z-index: 0;
}

.frame {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-width));
  display: grid;
  grid-template-columns: var(--side-width) 1fr var(--side-width);
  gap: var(--gap);
  align-items: center;
}

.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.side .side-item {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35));
}

.center {
  gap: 16px;
  padding-top: 8px;
}

.center .item {
  width: 100%;
  height: auto;
  display: block;
}

.center .icon {
  width: 140px;
}

.center .logo {
  width: min(640px, 100%);
  margin-top: 4px;
}

.center .tagline {
  width: min(560px, 100%);
  margin-top: -4px;
}

.center .hamam {
  width: min(620px, 100%);
  margin-top: -2px;
}

.center .coming {
  width: min(640px, 100%);
  margin-top: 4px;
}

.center .handle {
  width: 210px;
  margin-top: 2px;
}

.socials {
  display: flex !important;
  flex-direction: row;
  gap: 6px;
  justify-content: center;
  align-items: center;
  margin-top: -2px;
}

.socials img {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 -2px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.center .socials {
  width: auto;
}

.item {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  :root {
    --side-width: 210px;
    --gap: 36px;
  }
}

@media (max-width: 980px) {
  .frame {
    grid-template-columns: 1fr;
  }

  .side {
    display: none;
  }

  .center {
    width: 100%;
    align-items: center;
  }

  .center .logo,
  .center .tagline,
  .center .hamam,
  .center .coming {
    width: min(620px, 100%);
  }

  .socials img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 640px) {
  .center .icon { width: 120px; }
  .center .logo { width: min(520px, 100%); }
  .center .tagline { width: min(460px, 100%); }
  .center .hamam { width: min(520px, 100%); }
  .center .coming { width: min(520px, 100%); }
  .center .handle { width: 190px; }
}
