/* ------------------------------
   BASIC RESET
------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0d0c;
    color: #e8e3d8;
    font-family: "Lora", serif;
    line-height: 1.7;
}


/* ------------------------------
   HEADER
------------------------------ */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 6%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        transparent
    );
}

.logo {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #f1eadc;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #f1eadc;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #bd9050;
}


/* ------------------------------
   HERO
------------------------------ */
.hero-symbol{

    width:150px;

    margin:100px;

    opacity:.99;

    display:block;

    margin-left:auto;
    margin-right:auto;

    filter: drop-shadow(0 4px 10px rgba(0,0,0,.65));

}
.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.78)
        ),
        url("images/forest-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-color: #111713;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, 90%);
    padding-top: 70px;
}

.hero h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 8px;
    text-transform: uppercase;

    color: #f1eadc;

    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.85),
        0 0 40px rgba(0, 0, 0, 0.5);
}

.tagline {
    margin-top: 25px;
    margin-bottom: 36px;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    letter-spacing: 5px;
    text-transform: uppercase;

    color: #d7c3a0;
}

.button {
    display: inline-block;

    padding: 15px 34px;

    border: 1px solid #bd9050;
    color: #e1bd7d;

    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;

    background: rgba(0, 0, 0, 0.32);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.button:hover {
    background: #bd9050;
    color: #111;
    transform: translateY(-2px);
}


/* ------------------------------
   GENERAL SECTIONS
------------------------------ */

section {
    scroll-margin-top: 40px;
}

.content,
.newsletter {
    padding: 100px 8%;
    text-align: center;
}

.content {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    margin-bottom: 28px;

    font-family: "Cinzel", serif;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #c99a58;
}

.content p,
.author-text p,
.newsletter p {
    font-size: 1.05rem;
    color: #d5d0c7;
}

.content p {
    white-space: pre-line;
}


/* ------------------------------
   BOOK SECTION
------------------------------ */

.content {
    position: relative;
}

.content::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    margin: 0 auto 45px;
    background: #8f6a39;
}


/* ------------------------------
   AUTHOR
------------------------------ */

.author {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: stretch;

    max-width: 1200px;
    margin: 0 auto 100px;

    background: #111412;
    border-top: 1px solid #292c29;
    border-bottom: 1px solid #292c29;
}

.author-photo {
    min-height: 460px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.5)
        ),
        #20241f;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center;
}

.placeholder {
    width: 220px;
    height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #76644d;

    color: #aa9b87;
    text-align: center;
    text-transform: uppercase;

    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.author-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px;
}

.author-text h2 {
    text-align: left;
}


/* ------------------------------
   NEWSLETTER
------------------------------ */

.newsletter {
    background:
        linear-gradient(
            rgba(7, 9, 8, 0.92),
            rgba(7, 9, 8, 0.92)
        ),
        url("images/forest-hero.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    border-top: 1px solid #252824;
}

.newsletter ul {
    display: inline-block;
    margin: 24px auto 35px;
    text-align: left;

    color: #d5d0c7;
}

.newsletter li {
    margin-bottom: 7px;
}

.newsletter form {
    width: min(620px, 100%);
    margin: 0 auto;

    display: flex;
    gap: 12px;
}

.newsletter input {
    flex: 1;

    padding: 16px 18px;

    border: 1px solid #4b4d48;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;

    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;

    outline: none;
}

.newsletter input:focus {
    border-color: #bd9050;
}

.newsletter button {
    padding: 16px 28px;

    border: 1px solid #bd9050;
    background: #bd9050;
    color: #121212;

    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.newsletter button:hover {
    background: transparent;
    color: #e1bd7d;
}


/* ------------------------------
   FOOTER
------------------------------ */

footer {
    padding: 24px;
    text-align: center;

    background: #070807;
    border-top: 1px solid #252724;

    color: #8e8b84;
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
}


/* ------------------------------
   MOBILE
------------------------------ */

@media (max-width: 800px) {

    header {
        justify-content: center;
        padding: 24px 5%;
    }

    nav {
        display: none;
    }

    .logo {
        text-align: center;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        letter-spacing: 4px;
    }

    .tagline {
        letter-spacing: 3px;
    }

    .content,
    .newsletter {
        padding: 75px 7%;
    }

    .author {
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }

    .author-photo {
        min-height: 360px;
    }

    .author-text {
        padding: 55px 8%;
    }

    .author-text h2 {
        text-align: center;
    }

    .newsletter {
        background-attachment: scroll;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter button {
        width: 100%;
    }
}

.newsletter-form{
    max-width:500px;
    margin:40px auto 0;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-group{
    display:flex;
    flex-direction:column;
    text-align:left;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid rgba(201, 164, 92, 0.55);
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-family: "Lora", serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    border-color: #c9a45c;
    outline: 2px solid rgba(201, 164, 92, 0.25);
    outline-offset: 2px;
}

.consent-field{
    display:flex;
    align-items:flex-start;
    gap:12px;
    text-align:left;
    font-size:.9rem;
    line-height:1.5;
}

.consent-field input {
    margin-top: 4px;
}

.newsletter-form .button{
    width:100%;
}    

.website-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.signup-message {
    min-height: 24px;
    margin-top: 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
}