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


body {
    background:url(images/homepageBG.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    height: 100vh;
}
video{
    height: 40vh;
    width: auto;
}

/* Navbar Styles */
.navbar {
    background-color: #ebd976;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: #574701;
}

/* Main Container */
.container {
    height:90vh;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffffcb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}


/* Form Styles */
form {
    width: 80%;
    margin-top: 20px;
    margin: 0 auto;
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    margin-top: 5px;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #4a4a4a;
}

/* Button Styles */
button {
    background-color: rgb(53, 184, 13);
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6a6a6a;
}

.hidden {
    display: none;
}
/*Custom Styles*/
.CTM{
    background-color: rgba(189, 189, 189, 0.933);
    color: gold;
    border-radius: 7px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-size: larger;
}
.GL {
    background-color: #18e9de;
    border-radius: 7px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-size: larger;
}
#obituaryContent a{
    color: white;
    font-weight: bolder;
    text-decoration: none;
}
#obituaryContent p{
    color: #414141;
}
/* Contact/Ordering Page Specific */
.contact-heading {
    text-align: left;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

h3 {
    color: #000000;
    margin-bottom: 10px;
}

textarea {
    resize: vertical;
}

.price-list {
    text-align: left;
    margin-top: 20px;
}

.price-list p {
    font-size: 1.1em;
    color: #4a4a4a;
}

/* Footer */
footer {
    background-color: #ebd976;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
    color: white;
}
footer a{
    color: rgb(88, 189, 57);
}

@media screen and (max-width:1180px){
    
video{
    height: 20vh;
    width: auto;
}
}