/* Background image size/position */
body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero {
    position: relative;
    height: 900px; /* THIS is what makes the background visible */
    background-image: url('../images/morrowb_Liminal11.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: 2px;
}

/* branding top-left */
.branding {
    position: absolute;
    top: 20px;
    left: 100px;
    z-index: 3; 
}

.branding img {
    height: 115px; 
    width: auto;
}

/* nav top-right */
.top-nav {
    position: absolute;
    font-family: Ambicase Fatface, serif;
    font-size: 23px;
    top: 40px;
    right: 125px;
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 65px;
    margin: 0;
    padding: 0;
}

.top-nav a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
     background: rgba(0, 35, 0, .95);
    border: 1px solid #4c4f4e;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

/* text bottom-right */
.hero-text {
    width: 325px;
    height: 325px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .30) 100%);
    position: absolute;
    bottom: 275px;
    right: 95px;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

h1{
    text-align: center;
    font-family: brioso pro, book antique bold, Georgia bold;
    font-size: 48px;
    padding-top: 0px;
    margin-bottom: 0px;
}

p {
    text-align: center;
    font-family: brioso pro, book antique bold, Georgia bold;
    font-size: 24px;
    padding-bottom: 51px;
    gap: 6px;
    margin-bottom: 3px;
}



/* Buttons */
.cta-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cta-buttons a {
    background: rgba(0, 35, 0, .95);
    border: 1px solid #4c4f4e;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    text-wrap: wrap;
    max-width: 120px;
    text-align: center;
}

/* Footer centered at bottom */
.hero-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: white;
}
