/* ==========================================================================
   Magnolia Banner - 300x600
   Brand Colors: Dark Teal #02373f, Green #068449, Light Green #01b96c
   Brand Fonts: Lora (headlines), Karla (body)
   ========================================================================== */

:root {
  /* Brand Colors */
  --dark-teal: #02373f;
  --green: #068449;
  --light-green: #01b96c;
  --white: #ffffff;
  --dirty-white: #f6f6f6;
  --mint-bg: #e8f4f0;

  /* Typography */
  --font-headline: 'Lora', Georgia, serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

a img {
  border: 0;
}

#banner {
  position: absolute;
  width: 300px;
  height: 600px;
  overflow: hidden;
  background: var(--mint-bg);
  border: 1px solid #ccc;
  cursor: pointer;
}

#cover {
  position: absolute;
  width: 300px;
  height: 600px;
  background: #fff;
  cursor: pointer;
}

.retina {
  position: absolute;
  width: 300px;
  height: 600px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Background - the orchestration diagram */
#bg {
  background-image: url(../images/bg.jpg);
  background-color: var(--mint-bg); /* Fallback if no image */
  background-size: cover;
  background-position: center center;
  width: 300px;
  height: 180px;
  top: 0;
  transform-origin: 50% 50%;
  transform: rotate(0.02deg);
  transform-style: preserve-3d;
}

/* Logo - add logo.png to images folder */
#logo {
  background-image: url(../images/logo.png);
  background-size: contain;
  background-position: 18px center;
  background-repeat: no-repeat;
  width: 140px;
  height: 30px;
  top: 18px;
  left: 0;
  transform: rotate(0.02deg);
  transform-style: preserve-3d;
}

/* Dark teal section - bottom half */
.tealcover {
  position: absolute;
  width: 300px;
  height: 250px;
  top: 350px;
  background: var(--dark-teal);
}

/* Text layers base */
.text-layer {
  position: absolute;
  left: 18px;
  right: 18px;
  transform: rotate(0.02deg);
  transform-style: preserve-3d;
}

/* Push01: Serif headline */
#push01 {
  top: 195px;
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--dark-teal);
}

/* Push02: Sans subheadline */
#push02 {
  top: 295px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--dark-teal);
}

/* Push03: White text on teal area */
#push03 {
  top: 380px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
}

/* CTA Button - white on teal */
#cta {
  position: absolute;
  bottom: 28px;
  left: 18px;
  right: 18px;
  transform: rotate(0.02deg);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  background: var(--white);
  color: var(--dark-teal);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 14px 20px;
  text-align: center;
  letter-spacing: 1.5px;
  border-radius: 4px;
}
