
footer {
    background-color: #0a0a0a;
    color: #FFFFF0;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    width:100%;
    bottom: 0;
}

h1, h2, h3, h4, h6,h5 {
    font-family: 'Cinzel', serif;
    width: 100%;
}

h6 {
    font-weight: bolder;
    font-size: 20px;
}



body, html {
    margin: 0;
    padding: 0;
}

body{
    background-color: #232323;
}



header {
    width: 100%;
    background-color: #0a0a0a; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

    
    header nav {
        width: 100%;
        background-color: #d4c29a;
        display: flex;
        justify-content: center;
        gap: 2%;
        padding: 10px 0;
    }

        header nav a {
            text-decoration: none;
            color: #000;
            font-family: 'Cinzel', serif;
            font-weight: bolder;
            font-size: 20px;
            transition: color 0.3s ease;
        }

            header nav a:hover {
                color: #fff; /* Hover effect */
            }

    /* Logo styling */
    header img {
        min-height: 300px;
        min-width: 300px;
        height: 20%;
        width: 20%;
        margin: 20px 0;
    }

#trends, #social, #about {
    color: #ffffff;
    width: 100%;
    background-color: transparent;
}

p, li {
    font-family: 'Lora', serif;
    color: #ffffff;
    font-size: 20px;
}

h3 {
    font-family: 'Cinzel', serif;
    font-weight: bolder;
    border: 0px solid #d4c29a;
    border-bottom-width: medium;
    width: 50%;
    color: #d4c29a;
}

#traditions {
    background-color: transparent;
    width: 100%;
}

    #traditions p {
        color: #d4c29a;
        font-weight: bolder;
    }

    #traditions h3 {
        font-family: Cinzel;
        color: #d4c29a;
        width: 100%;
        border: none;
    }

input.form-control {
    border: 0px solid #ffffff;
    border-bottom-width: 1px;
    background-color: #232323;
    color: #ffffff;
}

textarea.form-control {
    border: 0px solid #ffffff;
    border-bottom-width: 1px;
    background-color: #232323;
    color: #ffffff;
}

label.form-control {
    color: #ffffff;
    border: 0px solid #ffffff;
    background-color: #232323;
    font-family: 'Lora', serif;
}

input[type=text]:focus {
    background: #232323;
    outline: 2px solid #ffffff;
    color: #ffffff;
}

.form-control:focus {
    background: #232323;
    outline: 2px solid #ffffff;
    color: #ffffff;
}

.form-control {
    font-family: 'Lora', serif;
}

textarea:focus {
    background-color: #232323;
    outline: none;
}

#submit {
    font-family: 'Lora', serif;
    background-color: #d2bf96;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
}

.grid-container {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-template-rows: 30%;
    column-gap: 5%;
}

#faq {
    background-color: #d4c29a;
    width: 100%;
    padding: 1rem;
}

    #faq h6 {
        text-align: left;
        color: #232323;
        width: 100%;
    }

    #faq p {
        text-align: left;
        color: #232323;
    }

/* Overlay */
#age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


/* Popup box */
.popup-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

    .popup-box h2 {
        margin-bottom: 25px;
    }

    .popup-box h4 {
        color: #0a0a0a;
        text-align: center;
        font-size: 20px
    }

    .popup-box button {
        margin: 10px;
        padding: 10px 20px;
        border: none;
        background: #d4c29a;
        color: #232323;
        font-size: 16px;
        border-radius: 5px;
    }

        .popup-box button:hover {
            background: #d4c29a;
        }
