/* Base Styling for Both Buttons */
.jumbotron {
    padding-top: 2rem;
    padding-right: 2rem; /* This padding only applies to the jumbotron content */
    padding-left: 2rem;
    padding-bottom: 2rem;
    background-image: url("../images/Coffee-Beans_01.gif"); /* Ensure correct path and filename */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
}

.topnav .container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: flex-end; /* Align buttons to the right */
    padding-right: 20px; /* Move buttons further right */
    margin-right: 2px; /* Prevent any centering caused by margins */
    max-width: 100%; /* Ensure the container spans the entire width */
}

#contact-us-button,
#projects-button,
#wash-page-button {
    display: block;
    width: 120px; /* Button width */
    padding: 8px 8px; /* Padding inside buttons */
    margin-bottom: 10px; /* Spacing between buttons */
    text-align: center;
    background-color: #2F180B; /* Dark background */
    color: #fff; /* Bright white text */
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #ADB5B46d;
    margin-right: 0; /* Prevent further right margin if not needed */
}

#contact-us-button:hover,
#projects-button:hover,
#wash-page-button:hover {
    background-color: #FAD090; /* Hover effect color */
    color: #000; /* Change text to black on hover */
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

#contact-us-button:focus,
#projects-button:focus,
#wash-page-button:focus {
    outline: 2px solid rgba(192, 192, 192, 0.5);
    outline-offset: 2px;
}

/* Optional: Resetting box-sizing globally */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reduce padding and margin for the column */
.col-lg-12 {
    padding: 5px; /* Minimize padding */
    margin: 0; /* Remove unnecessary margins */
}

/* Adjust h4 spacing */
h4 {
    margin: 0; /* Remove default top and bottom margin */
    line-height: 1.2; /* Reduce line spacing */
}

/* Common styling for all headings (shared properties) */
h1, h2, h3, h4, h5, h6 {
    color: #2C180B; /* Shared font color */
    font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif; /* Shared font family */
    margin-bottom: 0.6rem; /* Shared bottom margin */
    line-height: 1.2; /* Shared line spacing */
}

/* Individual heading sizes */
h1 {
    font-size: 3rem; /* Customize size for h1 */
    font-weight: bold; /* Optional: Bold for h1 */
}

h2 {
    font-size: 2.5rem; /* Customize size for h2 */
    font-weight: 600; /* Slightly lighter than h1 */
}

h3 {
    font-size: 2rem; /* Customize size for h3 */
    font-weight: 500;
}

h4 {
    font-size: 1.5rem; /* Customize size for h4 */
    font-weight: 400;
}

h5 {
    font-size: 1.25rem; /* Customize size for h5 */
    font-weight: 400;
}

h6 {
    font-size: 1rem; /* Customize size for h6 */
    font-weight: 300; /* Light weight for smaller text */
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "\2014\00A0";
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 8px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FAD090;
}

body {
    margin-right: 6px;
    margin-left: 6px;
    margin-bottom: 2px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #000306;
    text-align: center;
    background-image: url(../images/CoffeeBackground01.gif), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(107, 51, 10, 1) 100%);
}

/* Styling for the green hosting badge at the bottom */
.green-hosting-badge {
    display: inline-block;
    margin: 10px auto;
}

footer .row a {
    display: flex;
    justify-content: center;
}

footer .row {
    background-color: transparent !important;
}

footer .container {
    background-color: transparent !important;
}
