:root {
  --font-base: 16px;
  --font-family-main: 'Courier New', Courier, monospace;

  --bg-body: url('../imgs/BGs/Giant_vegas-bg02.png') no-repeat center center fixed;

    --bg-shell: linear-gradient(to bottom, #EBE9F3, #ffeef2); /* rose-tinted soft white */
    --bg-cnt: #fff;
  
    --border-shell: 0.25em solid #d6afb6;
    --shadow-shell: 0.75em 0.75em 1.5em rgba(167, 166, 152, 0.4);
  
    --border-wrapper: 0.25em solid #d1c6c8;
    --shadow-wrapper: inset 0 0 0.75em rgba(255, 200, 210, 0.15);

  --bg-bnr_lens: url('../imgs/BGs/Cam_lnz02.png') no-repeat center center;

  --text-dark: #1a1a1a;
  --text-light: #fff;

  --accent-01: rgba(159, 64, 90, 0.8);
  --accent-02: rgba(181, 101, 110, 0.8);
  --accent-03: rgba(218, 129, 139, 0.8);
  --accent-04: rgba(208, 161, 64, 0.8);
  --accent-05: rgba(228, 199, 82, 0.8);

  --ftr-bg: #101f31;
  --ftr-dd-bg: #273b53;
  --ftr-dd-border: #4d77aa;
  --ftr-dd-hover: #30537e;
  --ftr-color: #b0c4de;
  --copyright-color: #7c9ac1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: var(--font-base);
}

body {
  margin: 0;
  padding: 2em 0;
  font-family: var(--font-family-main);
  background: var(--bg-body);
  background-size: cover;
}

@media (max-width: 46em) {
  body { padding: 0; }
}

h1 { font-size: 1.525rem; }
h2 { font-size: 1.325rem; }
h3 { font-size: 1.225rem; }
p {
  font-size: 1.15rem;
  text-indent: 0.25em;
}

/* Shell & Wrapper */
#shell {
  width: 100%;
  max-width: 54.5em;
  background: var(--bg-shell);
  border-radius: 2.75em 2.75em 2em 2em;
  border: var(--border-shell);
  box-shadow: var(--shadow-shell);
  margin: 0 auto;
  padding: 1.25em 0 0.5em 0;
}

@media (max-width: 46em) {
  #shell {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
  }
}

#wrapper {
  width: 100%;
  max-width: 50em;
  border: var(--border-wrapper);
  border-radius: 2.75em 2.75em 2em 2em;
  margin: 2em auto;
  box-shadow: var(--shadow-wrapper);
}

@media (max-width: 46em) {
  #wrapper {
    border: none;
    border-radius: 0;
    margin: 0 auto;
  }
}

/* Banner */
#bnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  background-color: var(--text-light);
  border-radius: 2.5em 2.5em 0 0;
}

#bnr_lens {
  width: 18em;
  height: 5.5em;
  margin: 0 auto;
  border-radius: 2em;
  background: var(--bg-bnr_lens);
  background-size: cover;
  border: 0.35em solid #333;
  box-shadow: inset 0 0 0.5em rgba(0, 0, 0, 0.5), 0 0 0.75em rgba(0, 0, 0, 0.25);
}

@media (max-width: 48em) {
  #bnr_lens { width: 14em; height: 4.25em; }
}

@media (max-width: 32em) {
  #bnr_lens { width: 12em; height: 3.5em; }
}

#bnr_lens_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin: 0 auto;
}

#shttr_btn {
  width: 2.25em;
  height: 2.25em;
  background: url('../imgs/icons/finger_prnt.svg') no-repeat center center;
  background-size: contain;
  border-radius: 50%;
  box-shadow: inset 0 0 0.35em rgba(0, 0, 0, 0.4);
}

@media (max-width: 48em) {
  #shttr_btn { width: 1.85em; height: 1.85em; }
}

@media (max-width: 32em) {
  #shttr_btn { width: 1.5em; height: 1.5em; }
}

/* Content Wrapper */
#cnt_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bg-cnt);
  justify-content: space-between;
  align-items: stretch;
  flex-grow: 1;
  border-radius: 0 0 1.5em 1.5em;
}

/* Flexbox Structures */
.full_bx {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(214, 213, 218);
  border-radius: 0.5em;
  margin: 0.5em;
  padding: 0;
}

.half_bx, .third_bx {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  margin: 0.5em auto;
}
.half_bx { width: 46%; }
.third_bx { width: 30%; }

/* Dress Classes */
.one-bx01, .one-bx02, .one-bx03,
.two-bx01, .two-bx02, .two-bx03,
.three-bx02, .three-bx03 {
  padding: 0.5em;
}

.neph_2bx {
  color: #023306;
  background: linear-gradient(to bottom, rgba(200, 138, 192, 0.8), rgba(224, 61, 198, 0.8));
  padding: 0.35em;
}

.neice-2bx {
  border: 0.065em solid #856e6e;
  border-radius: 0.5em;
  font-style: italic;
  box-shadow: 0 0 0.35em rgba(0, 0, 0, 0.4);
}

/* Three-box child variants */
.neph_3bx {
  background: var(--text-dark);
  color: var(--text-light);
  text-align: center;
  font-size: 0.95rem;
  padding: 0.75em;
  margin: 0;
}

@media (max-width: 32em) {
  .neph_3bx {
    width: 98%;
    margin: 0 auto;
  }
}

.neice-3bx01 {
  background: linear-gradient(to bottom, var(--accent-01), var(--accent-02));
}
.neice-3bx02 {
  background: linear-gradient(to bottom, var(--accent-03), var(--accent-04));
}
.neice-3bx03 {
  background: linear-gradient(to bottom, var(--accent-04), var(--accent-05));
}
.neice-3bx01,
.neice-3bx02,
.neice-3bx03 {
  border: 0.065em solid rgba(92, 85, 85, 0.4);
  border-radius: 0.5em;
  box-shadow: 0 0 0.75em rgba(0, 0, 0, 0.6);
}

/* Footer */
#ftr {
  width: 100%;
  background: var(--ftr-bg);
  color: var(--ftr-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 1em;
  border-radius: 0 0 1.5em 1.5em;
}

@media (max-width: 46em) {
  #ftr {
    border: none;
    border-radius: 0;
  }
}

.ftr_blocks {
  width: 32%;
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: left;
  padding: 0.15em;
}

@media (max-width: 600px) {
  .ftr_blocks { width: 100%; }
}

#ftr dl { padding: 0; margin: 0; }
#ftr dl dt { color: #f8f7f7; font-size: 0.8em; }

#ftr dl dd {
  background: var(--ftr-dd-bg);
  margin: 0.45em;
  padding: 0.5em 1em;
  font-size: 0.825em;
  border: 0.09em solid var(--ftr-dd-border);
  border-radius: 0.09em;
}

#ftr dl dd:hover { background: var(--ftr-dd-hover); }

.copyright {
  width: 100%;
  font-size: 1rem;
  margin: 1.25em 0 1em 0;
  text-align: center;
  color: var(--copyright-color);
}

/* Responsive Scaling System */
@media (max-width: 48em) {
  html { font-size: 14px; }
}
@media (max-width: 32em) {
  html { font-size: 12px; }
  #cnt_wrap { flex-direction: column; }
  .half_bx, .third_bx {
    flex: none;
    width: 100%;
  }
}
