
* {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
}
body {
    /* background-color: #FAF3E0; */
    background-color: #FAF3E0;
    padding: 0;
    height: 100vh; 
    align-items: center;
    justify-content: center;
    text-align: center;
    margin:0;
}

#logo {
    /* width: 150px; */
    /* height: auto; */
    /* margin: 0 auto; */
    /* display: block; */
    color:#FAF3E0;
    letter-spacing: 3px;
    /* border-bottom: 1px solid #FAF3E0; */
    
    padding: 5px 0;
    text-decoration: none;
}


/* --------- GENERAL SETTINGS ---------------*/
hr {
    width: 100%;
    border: none;
    display: block;
    margin: 20px auto;
    /* padding: 0; */
    /* Gradient */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0, 1), rgba(0, 0, 0, 0));
    /* background-image: linear-gradient(to right, rgba(0,0,0,0), rgb(63, 82, 43, 1), rgba(0,0,0,0)); */
    height: 1px;
}

/* h1{
    font-size: 40px;
    color: black;
    margin-bottom: 20px;
} */

p {
    font-size: 20px;
    /* color: #3f522b; */
    color: #222;
    opacity: 0.7;
    line-height: 1.5;
}

.btn {
    width: 200px;
    margin: 20px auto;
    background-color: #8B7A84;
    display: inline-block;
    backdrop-filter: blur(5px);
    color: #FAF3E0;
    font-size: 20px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 15px;
    transition: 0.6s;
    /* border: 2px solid #FAF3E0; */
}

.btn:hover {
    /* Make it slightly larger */
    transform: scale(1.05);

    transition: 1s;
}

/* ------------ NAV BAR SETTINGS  ----------------*/
.navBar {
    /* Section Characteristics */
    /* background-color: #3f522b; */
    /* width: 100 vw; */
    padding: 2% 6%;
    
    /* Item Spacing */
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.logo{
    width: 150px;
 
}

.navLinks {
    flex: 1;
    text-align: right;
    text-decoration: none;
}
.navLinks a {
    color: #FAF3E0;
    text-decoration: none;
    font-size: 1em;
}
.navLinks ul li{ 
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.navLinks ul li::after {
    content: '';
    width: 0%;
    height: 3px;
    opacity: 0%;
    background: #FAF3E0;
    /* background: #8B7A84; */
    display: block;
    margin: auto;
}

.navLinks ul li:hover::after {
    /* background-color: #8B7A84; */
    background-color: #FAF3E0;
    opacity: 100%;
    width: 100%;
    transition: 0.7s;
}


nav .fa-solid{ /*Make hamburger invisible on larger screens */
    display: none;
}



/* --------- FOOTER SETTINGS ------------- */
 .footer {
    background-color: #3f522b;
    color: #FAF3E0;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 100px;
}
/*
.footer h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer a {
    padding: 10px;
    color: #FAF3E0;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer i {
    font-size: 20px;
    margin: 10px;
    cursor: pointer;
}

.footer i:hover {
    color: #5C4B51;
}
.footer a:hover {
    color: #5C4B51;
} */

/* .footer {
    background-color: #3f522b;
    color: #FAF3E0;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;

} */

.footerBar {
    /* Section Characteristics */
    /* background-color: #3f522b; */
    /* width: 100 vw; */
    /* padding: 2% 6%; */

    /* Item Spacing */
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.footer h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer i {
    font-size: 20px;
    margin: 10px;
    cursor: pointer;
}


.footer-links {
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.footer-links a {
    color: #FAF3E0;
    text-decoration: none;
    font-size: 1em;
}

.footer-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.footer-links ul li::after {
    content: '';
    width: 0%;
    height: 3px;
    opacity: 0%;
    background: #8B7A84;
    display: block;
    margin: auto;
}

.footer-links ul li:hover::after {
    background-color: #8B7A84;
    opacity: 100%;
    width: 100%;
    transition: 0.7s;
}



/* --------- MEDIA QUERIES */
@media(max-width: 700px) {

    /* ------------- Nav Settings */
    .navLinks ul li {
        display: block;
    }
    .navLinks {
        position: fixed;
        background: #3f522b;
        height: 100vh;
        width: 175px;
        top: 0;
        right: -200px;
        text-align: center;
        z-index: 2;
        transition: 1s;
    }

    .navLinks ul {
        padding: 20px;
        /* position: absolute; */
        /* top: 50%;
        left: 50%; */
        /* transform: translate(-50%, -50%); */
    }

    /* ------ button settings */
    nav .fa-solid {
        opacity: 70%;
        display: block;
        color: #FAF3E0;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    nav #open-menu:hover {
        opacity: 1;
        transition: 0.25s;
    }

    nav #close-menu:hover {
        opacity: 1;
        transition: 0.25s;
    }

    /* ------------Text Settings ------ */
    .text-box h1 {
        font-size: 20px;
    }
    .text-box p {
        font-size: 16px;
    }
    .home-btn {
        font-size: 16px;
    }

    /* -----------FOOTER------- */
    .footer-links a {
        font-size: 0.60em;
        
    }

    .footer-links ul li{
		padding: 5px;
    }

}


/* --------------- TEXT EFFECTS --------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
        /* Starts slightly lower */
    }

    to {
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.fade-in-delay {
    animation: fadeIn 2s ease-in-out;
}
