:root {
    --primary-color: #4caf50; /* Example green color */
    --primary-dark-color: #367637;
    --secondary-color: #2196f3; /* Example blue color */
    --secondary-dark-color: #104671; /* Example blue color */
    --alt-color: rgb(95, 0, 220);
    --danger-color: rgb(174, 0, 0);
    --text-color: #333; /* Example white color */
}

body {
    color: var(--text-color);
    padding-top: 35px; /* Adjust based on your navbar height */
}

section:not([id="hero"]) a {
    color: var(--text-color);
    font-weight: 400;
    text-decoration: underline;
}

.star-rating {
    color: #8c016c92; /* Gold color for the stars */
    font-size: 24px; /* Adjust the size of the stars */
}

.logo-text {
    color: var(--text-color);
    font-weight: 600;
}

.navbar-light .navbar-brand {
    color: var(--primary-dark-color);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
}

.text-primary {
    color: var(--primary-dark-color) !important;
    font-weight: bolder;
}

.btn-primary {
    background-color: var(--primary-dark-color);
    border-color: var(--primary-dark-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark-color);
    border-color: var(--primary-dark-color);
}

.orientation-margin {
    margin-top: 0; /* Default margin for portrait mode */
}


#hero img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}
#hero .matte-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 335px;
    object-fit: cover;
    background-color: rgba(62, 157, 135, 0.5); /* Matte overlay with 50% opacity */
    z-index: 1; /* Ensure the overlay is above the image */
}
#hero .image-overlay {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 2; /* Ensure the rounded overlay is above the matte overlay */
}
#hero .image-overlay .image-overlay-content {
    position: relative;
    text-align: center;
}
.card-heading {
    position: relative; 
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.80);
    color: #CCC;
    border-radius: 10px;
    z-index: 2;
}
.card {
    background-color: rgba(255, 255, 255, 0.90);
    border-radius: 10px;
    width: 75%;
    z-index: 2;
}

ul.bullets {
    list-style: none; /* Remove default list styling */
    padding-left: 0; /* Remove left padding */
}

ul.bullets li {
    position: relative;
    padding-left: 30px; /* Add space for the checkmark */
    margin-bottom: 10px; /* Space between list items */
    font-size: 1.2em; /* Adjust font size */
    padding-bottom: 1em;
}

ul.bullets li::before {
    content: '\2713'; /* Unicode character for checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: green; /* Checkmark color */
    font-size: 1.2em; /* Adjust checkmark size */
    font-weight: bold;
}



@media (orientation: landscape) {
    .orientation-margin {
        margin-top: 6.5rem; /* Adjust value to match mt-5 (usually 3rem) */
    }
}

@media (orientation: portrait) {
    .responsive-heading {
        font-weight: 900;
        font-size: 1.8em; /* Default font size for small screens */
    }
}
@media (orientation: landscape) {
    .responsive-heading {
        font-weight: 900;
        font-size: 1.5em; /* Adjust value to match mt-5 (usually 3rem) */
    }
}

@media (min-width: 768px) and (orientation: portrait) {
    .responsive-heading {
        font-weight: 900;
        font-size: 2.5em; /* Font size for medium screens and up */
    }
}

@media (min-width: 768px) and (orientation: landscape) {
    .responsive-heading {
        font-weight: 900;
        font-size: 1.5em; /* Adjust value to match mt-5 (usually 3rem) */
    }
}

@media (min-width: 1024px) {
    .responsive-heading {
        font-weight: 900;
        font-size: 2.5em; /* Font size for large screens and up */
    }
}

@media (min-width: 1024px) and (orientation: landscape) {
    .responsive-heading {
        font-weight: 900;
        font-size: 3em; /* Adjust value to match mt-5 (usually 3rem) */
    }
}

.responsive-subheading {
    font-size: .9em; /* Default font size for small screens */
}

@media (min-width: 768px) {
    .responsive-subheading {
        font-size: 1em; /* Font size for medium screens and up */
    }
}

@media (min-width: 1024px) {
    .responsive-subheading {
        font-size: 1.1em; /* Font size for large screens and up */
    }
}

.responsive-card-heading {
    font-size: .9em; /* Default font size for small screens */
}

@media (min-width: 768px) {
    .responsive-card-heading {
        font-size: 1em; /* Font size for medium screens and up */
    }
}

@media (min-width: 1024px) {
    .responsive-card-heading {
        font-size: 1.1em; /* Font size for large screens and up */
    }
}