/* -------------------------
   GLOBAL SETTINGS
-------------------------- */


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


body {

    background:#131c26;
    color:#e8d7a5;
    font-family: Georgia, serif;

}



/* -------------------------
 NAVIGATION
-------------------------- */


.navbar {

    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 2%;

    background:#0e151d;

    border-bottom:1px solid #1a2833;

}



.logo {

    display:flex;
    align-items:center;

    color:#eec270;

    font-size:35px;
    padding-left:30px;

}

.logo img {

    max-height:54px;
    width:auto;
    display:block;
    padding-right:10px;

}



.nav-links {

    list-style:none;
    display:flex;
    gap:35px;

}



.nav-links a {

    text-decoration:none;

    color:#eec270;

    font-size:25px;

    transition:.3s;

}

.nav-icon {

    display:inline-block;

    max-height:30px;

    width:auto;

    margin-right:8px;

    vertical-align:middle;

}

.nav-links a:hover {

    color:white;

}




/* -------------------------
 HERO
-------------------------- */


.hero {

    min-height:60vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:#131c26;

}

.hero h4 {

    font-size: 150px;

    font-family: 'Cinzel', serif;

    letter-spacing:20px;

    color:#eec270;

    margin-top:25px;

    margin-bottom:40px;

}

.hero h1 {

    font-size:90px;

    font-family: 'Cinzel', serif;

    letter-spacing:20px;

    color:#d4af37;

    margin-bottom:20px;

}

.hero h2 {

    font-size:50px;

    color:#e9e2d4;

    margin-bottom:20px;

}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1700px;
}

.hero-construction {
    position: center;
    top: 75%;
    left: 75%;
    max-width: 1400px;
    
}

.hero img {

    max-height:auto;

    width:100%;

    display:block;

    justify-content:center;

    margin-top:0;

    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
    background-color: #000;
    background-blend-mode: multiply;

}

.hero-overlay-text {
    position: absolute;
    top: 24px;
    right: 24px;
    text-align: right;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-overlay-text h1 {
    font-size: 3.2rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.12em;
    color: #eec270;
    margin: 0 0 0.2rem;
    text-transform: uppercase;
}

.hero-overlay-text p {
    font-size: 1.35rem;
    color: #a67d30;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.08em;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    text-shadow: 0 0 2px rgb(0, 0, 0);
}

.hero p {

    font-size:40px;

    color:#746823;

    margin-top:-50px;

    margin-bottom:40px;

    text-align:center;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

}

.button {

    display:inline-block;

    padding:25px 60px;

    border:1px solid #d4af37;

    background:#131c26;

    color:#e8d7a5;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:700;

    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);

}


.button:hover {

    background:#d4af37;

    color:#000;

}


/* -------------------------
 FEATURES
-------------------------- */

.features {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 20px 40px;
    margin-top: 8px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 85px;
    padding: 0 2rem;
    margin-top: 12px;
    margin-bottom: 8px;
    border-top: 1px solid #3a2c10;
    border-bottom: 1px solid #3a2c10;
    background: #0e151d;
    color: #eec270;
    font-size: 42px;
    font-family: 'Cinzel', serif;
    text-align: center;
}

.feature-card {
    width: 100%;
    min-height: 220px;
    aspect-ratio: 2.6 / 1;
    padding: 0;
    text-align: center;
    border: 1px solid #3a2c10;
    background: #111;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
}

.feature-card img {
    width: 38%;
    max-width: 220px;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    align-self: stretch;
    flex-shrink: 0;
    display: block;
}

.feature-card-content {
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.feature-card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #a67d30;
    margin-bottom: 12px;
}

.feature-card-content p {
    line-height: 1.6;
    color: #bbb;
}

/* -------------------------
 FOOTER
-------------------------- */


footer {

    text-align:center;

    padding:30px;

    background:#0e151d;

    border-top:1px solid #3a2c10;

    color:#777;

}