/* ================================
   RESET
================================== */

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

/* ================================
   BASE / BODY
================================== */

body {
    font-family: Arial, Helvetica, sans-serif;

    /* burnished gunmetal background */
    background: radial-gradient(
        circle at 25% 25%,
        #55504b 0%,
        #3d3a36 30%,
        #2a2826 60%,
        #1f1e1c 100%
    );

    color: #e8e8e6;
    line-height: 1.65;
    padding-bottom: 40px;
    position: relative;
    min-height: 100vh;
}

/* subtle brushed texture overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 4px
    );
}

/* links */
a {
    color: #f0b77a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ================================
   HERO (WOOD TOP)
================================== */

.hero {
    text-align: center;
    padding: 80px 20px;
    color: #f5f2ee;

    /* wood image background */
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)
        ),
        url('wood-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}


/* ================================
   CTA BUTTON (BURNISHED METAL)
================================== */

.cta {
    display: inline-block;
    padding: 12px 28px;

    /* burnished copper/steel blend */
    background: linear-gradient(
        135deg,
        #b37a45 0%,
        #8e5a31 40%,
        #6e4525 100%
    );

    color: #fdf7f0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        background 0.12s ease;
}

.cta:hover {
    background: linear-gradient(
        135deg,
        #c4884d 0%,
        #996137 40%,
        #754827 100%
    );
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    text-decoration: none;
}

.cta:active {
    transform: translateY(1px);
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(0, 0, 0, 0.4);
}

/* ================================
   CONTENT SECTIONS
================================== */

.section {
    max-width: 780px;
    margin: 50px auto;
    padding: 24px 22px;

    background: radial-gradient(
        circle at top left,
        rgba(70, 66, 61, 0.95) 0%,
        rgba(44, 41, 38, 0.97) 40%,
        rgba(26, 24, 23, 0.98) 100%
    );
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.75);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.75),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.section + .section {
    margin-top: 35px;
}

.section h2 {
    font-size: 1.9rem;
    margin-bottom: 14px;
    color: #f3e7d9;
    letter-spacing: 0.5px;
}

.section p {
    margin-bottom: 14px;
    font-size: 1rem;
    color: #ded9d2;
}

/* lists */
.section ul {
    margin: 18px 0 10px 22px;
}

.section li {
    margin-bottom: 8px;
    color: #e0dad3;
}

/* emphasize key phrases */
.section strong {
    color: #f3b87a;
}

/* starter-pack section tweak (optional) */
#starter-pack {
    border-left: 3px solid #c38549;
}

/* ================================
   FOOTER
================================== */

footer {
    text-align: center;
    margin-top: 60px;
    padding: 24px 20px 30px;
    color: #a39b90;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.7);
    background: linear-gradient(
        to top,
        rgba(10, 9, 8, 0.95) 0%,
        rgba(20, 18, 16, 0.95) 60%,
        rgba(20, 18, 16, 0.0) 100%
    );
}

/* ================================
   RESPONSIVE TWEAKS
================================== */

@media (max-width: 600px) {
    .hero {
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .sub {
        font-size: 1rem;
    }

    .section {
        margin: 30px 12px;
        padding: 18px 16px;
    }
}
.logo {
  width: 120px;      /* adjust size */
  height: auto;      /* keeps proportions */
  display: block;
  margin: 20px auto; /* center it */
}
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  height: auto;
  z-index: 1000; /* makes sure it sits above the hero image */
}

.hero-logo {
    width: 250px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: brightness(1.25) contrast(1.15);
}
.hero-logo:hover {
    filter: brightness(1.4) contrast(1.25);
    transform: scale(1.05);
    transition: transform 0.2s ease, filter 0.2s ease;
}