/* General Styles */
body {
    font-family: "Roboto", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    font-weight: 300;
    font-style: normal;
}

h1,
h2,
h3 {
    color: #333;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;

}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    padding: 0;
    top: 0;
    filter: drop-shadow(2px 0px 3px #222);
}

section,
footer {
    padding: 20px 0;
}

a {
    text-decoration: none;
    color: #c93139;
}

p {
    margin: 50px 0;
}

.non-home p,
.non-home .about p {
    margin: 20px 0;
}

.non-home p:last-of-type,
.non-home .about p:last-of-type {
    margin-bottom: 50px;
}



a:hover {
    color: #e6a517;
}

.tow-center {
    text-align: center;
    margin: auto;
}

/* Header */
.header {
    background-color: #222;
    position: fixed;
    width: 100%;
    z-index: 5;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo h1 {
    color: #c93139;
}

/* Desktop styles */
ul#navbar-menu {
    list-style: none;
    display: flex;
    /* Menu items are displayed inline */
}

#navbar-menu li {
    margin-left: 15px;
}

#navbar-menu li a {
    color: white;
    font-weight: bold;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 0 15px;
    white-space: nowrap;
}

#navbar-menu li a:hover {
    color: #c93139;
}

.hamburger {
    display: none;
    /* Hide hamburger icon by default */
    cursor: pointer;
    font-size: 40px;
    color: #c93139;
    text-align: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        /* Show hamburger icon on mobile */
    }

    /* Hide the menu by default on mobile */
    #navbar-menu {
        display: none;
        /* Menu is hidden initially on mobile */
        overflow: hidden;
        flex-direction: column;
    }

    /* Make the navbar items stack vertically */
    #navbar-menu li {
        display: block;
        /* Stack items vertically on mobile */
        margin: 20px;
        text-align: center;
    }

    .home #logo {
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    #logo {
        position: relative;
        top: 0;
    }

    #navbar-menu {
        justify-content: center;
        padding: 0;
    }

    .home #logo {
        display: none;
    }
}

/* Default logo styles */
#logo {
    width: 150px;
    height: auto;
    padding: 10px;
    position: absolute;
    top: -10px;
    filter: drop-shadow(1px 0px 2px black);
    transition: width 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

/* Logo state when scrolled */
#logo.scrolled {
    width: 90px;
    top: 0;
    opacity: 1 !important;
    height: auto !important;
}

/* Homepage-specific initial state */
.home #logo {
    width: 90px;
    opacity: 0;
    top: 0;
    transition: all 0.3s ease, top 0.3s ease, width 0.3s ease;
    height: 0;
    padding: 0px;
}


/* Homepage-specific scrolled state */
.home #logo.scrolled {
    opacity: 1;
    padding: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* Full-screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    /* Behind content and overlay */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video covers the area */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Discrete black overlay */
    z-index: -1;
    /* Between video and content */
}

.hero-content {
    z-index: 1;
    /* Above the video and overlay */
    padding: 20px;
}

.hero-content img {
    max-width: 400px;
    min-width: 40%;
}

.hero h1 {
    font-size: 4.5rem;
    margin: auto;
    color: #ffffff;
    filter: drop-shadow(1px 1px 1px #3e3e3e);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #c93139;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald';
    position: relative;
    top: 0;
    transition: all .5s;
    border: 0;
    font-weight: 400;
    border: 1px solid #c93139;
}



.cta-button:hover {
    background-color: #222222;
    color: white;
    top: -5px;
    transition: all .5s;
    position: relative;

}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
    .hero-content .cta-button {
        font-size: 1.5rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    opacity: 1;
    transition: transform 0.3s ease;
}

.scroll-down i {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

.scroll-down span {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    font-family: 'Oswald';
    font-style: italic;
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Styling */
@media (max-width: 480px) {
    .scroll-down {
        font-size: 0.8rem;
    }

    .scroll-down i {
        font-size: 1.5rem;
    }
}


/* About Section */
.about {
    padding: 5em 0;
    background-color: #222222;
    color: white;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.about p {
    font-size: 16px;
    line-height: 1.6;
    margin: 50px 0 0;

}

/* Services Section */
.services {
    padding: 5em 0;
    background-color: #fff;
}

.services h2,
.cta h2 {
    font-size: 28px;
}

.cta {
    padding: 5em 0;
    background-color: #222222;
    color: white;
}

.cta h2 {
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 0;
    background-color: #fff;
}

.why-choose-us h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-us ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Operating Hours Section */
.operating-hours {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.operating-hours h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.operating-hours p {
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background-color: #fff;

}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 16px;
    line-height: 1.6;
}

.contact ul {
    list-style: none;
    padding: 0;
}

.contact ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact ul li a {
    color: #c93139;
    text-decoration: none;
}

.contact ul li a:hover {
    text-decoration: underline;
}

/* Get in Touch Section */
.get-in-touch {
    padding: 5em 0;
    background-color: #f0f0f0;

}

.get-in-touch h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.get-in-touch p {
    font-size: 16px;
    margin-bottom: 20px;
}

.get-in-touch form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;

}

.get-in-touch form input,
.get-in-touch form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Roboto;
    text-transform: uppercase;
}

.get-in-touch form button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #c93139;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald';
    position: relative;
    top: 0;
    transition: all .5s;
    border: 0;
    font-weight: 400;
    border: 1px solid #c93139;
}

.get-in-touch form button:hover {
    background-color: #222222;
    color: white;
    top: -5px;
    transition: all .5s;
    position: relative;
}

/* Map Section */

.map {
    padding: 0;
}

.map h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.map-container iframe,
.map-container {
    height: 458px;
}

/* Reviews Section */
.reviews {
    padding: 5em 0;
    background-color: #fff;
    text-align: center;
}

.reviews h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.reviews-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.review-card {
    background: #fff;
    padding: 40px 20px;
    /* Extra padding for large quotes */
    border-radius: 10px;
    width: 320px;
    height: 140px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Enable positioning for quotes */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: #555;
    position: relative;
    z-index: 2;
    /* Ensure text is above the quotes */
}

.review-text .quote {
    position: absolute;
    font-size: 140px;
    color: #c93139;
    font-weight: bold;
    z-index: 1;
    pointer-events: none;
}

.review-text .quote:first-of-type {
    top: -100px;
    left: -20px;
}

.review-text .quote:last-of-type {
    bottom: -180px;
    right: -5px;
}

.review-author {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.review-stars {
    color: #ffc107;
    /* Gold for stars */
    font-size: 18px;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-card {
        width: 100%;
        height: auto;
        /* Allows flexibility on smaller screens */
    }

    .review-text .quote {
        font-size: 80px;
        /* Slightly smaller quotes on smaller screens */
    }
}

.footer {
    background-color: #222;
    color: white;
    padding: 50px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-content h3 {
    color: white;
}


.footer-logo {
    flex: 1;
}

.footer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: 1.1rem;
}

.footer-nav ul li a:hover {
    color: #c93139;
}

.footer-social {
    flex: 1;
    text-align: center;
}

.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-contact .fa {
    color: #c93139;
}

.footer-contact a {
    color: #fff;
    font-weight: bold;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: 16px;
}

.footer-contact a:hover {
    color: #c93139;
}

.footer-contact ul {
    list-style: none;
    white-space: nowrap;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    margin: 0 10px;
    color: white;
    font-size: 16px;
    /* Font size for icons */
}

.social-media i:before {
    font-family: 'Font Awesome 6 Brands';
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #444;
    font-size: 10px;
    text-transform: uppercase;
    color: #505050;
}

div.footer-bottom p {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        /* Center items on smaller screens */
    }

    .footer-logo,
    .footer-nav,
    .footer-social,
    .footer-contact {
        text-align: center;
        /* Center text on smaller screens */
        margin-bottom: 15px;
        /* Spacing between items */
    }
}


/* Social Media Links */
.social-media {
    margin-top: 10px;
}

.social-media a {
    margin: 0 10px;
    color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-card {
        width: 100%;
    }

    .get-in-touch form {
        width: 80%;
    }

    .review-card {
        width: 90%;
        /* Make review cards responsive */
    }
}

.hero h2 {
    color: #ffffff;
    margin-top: 0;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero p {
        font-size: 16px;
    }

    .get-in-touch form {
        width: 100%;
    }

    .contact ul li,
    .why-choose-us ul li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .call-to-action {
        font-size: 14px;
        padding: 8px 16px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
    }
}







/* HOME-SERVICES */
.grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    background: #222222;
    padding: 20px;
    text-align: center;
    transition: 0.2s ease;
    border-radius: 4px;
    filter: drop-shadow(2px 4px 6px black);
    color: white;
    font-size: 1.8em;
}

.grid-item h3 {
    border-bottom: 1px solid #c93139;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: white;
}

.grid-item p {
    font-size: 15px;
    margin: 0 0 10px;
}


.icon-placeholder img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

#services-overview {
    margin-top: 40px;
}

#services-overview ul {
    list-style-type: none;
    padding: 0;
}

#services-overview ul li {
    padding: 0;
    margin: 30px 0;
    border-radius: 5px;
    color: #c93139;
    text-transform: uppercase;
}

/* Responsive styling */
@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

#highlighted-categories {
    margin-bottom: 30px;
}

/* HOME-SERVICES */

#highlighted-categories.non-home .grid-container {
    display: flex;
    flex-direction: column;
}

#highlighted-categories.non-home .icon-placeholder img {
    height: 360px;
}

#highlighted-categories.non-home .grid-container .grid-item p {
    text-align: left;
    margin-bottom: 10px;
}

.non-home-hero .hero-cover {
    height: 300px;
    background-image: url(/images/img49.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -180px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    filter: blur(10px);
}

.non-home-hero {
    display: flex;
    align-items: center;
    position: relative;
    height: 280px;
    padding: 0;
    overflow: hidden;
    padding-top: 15px;
}

@media (min-width: 992px) {
    .non-home-hero {
        margin-top: 57px;
        ;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .non-home-hero {
        margin-top: 175px;
    }
}

@media (max-width: 768px) {
    .non-home-hero {
        margin-top: 225px;
    }

    .non-home-hero .hero-cover {
        background-position-y: 0;
    }
}

.non-home-hero .container {
    z-index: 2;
}

.non-home-hero h1 {
    text-align: center;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 0;
}

.non-home section:nth-of-type(2) {
    padding: 3em 0 5em;
}


div.photos-flex {
    gap: 0;
}

.photos-flex img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    background-position: center;
    object-position: center;
    filter: saturate(0);
    transition: all .5s;
}


.photos-flex img:hover {
    filter: none;
    transition: all .5s;
}

@media (min-width: 674px) {
    .photos-flex a {
        width: 25%;
    }
}


.non-home .photos-flex {
    margin: 30px auto;
    width: 100%;
}

.non-home .photos-flex a {
    flex: 1;
    width: 100%;
}

.non-home .photos-flex img {
    width: 100%;
}

.tow-flex {
    display: flex;
    gap: 0 !important;
}

@media (max-width: 673px) {
    .tow-flex {
        flex-direction: column;
        gap: 0 !important;
    }
}

/* LIGHTBOX */
.lightbox {
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
}

.lightbox-media {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.lightbox-media img {
    max-height: 90vh;
    max-width: 90vw;
}

.lightbox-media video {
    height: auto;
    max-width: 50vw;
    max-height: 80vh;
}

.close-x {
    position: absolute;
    top: 0;
    right: 20px;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
}

/* LIGHTBOX */


@media (max-width: 991px) {
    #logo {
        position: relative;
        top: 0;
    }

    #navbar-menu {
        justify-content: center;
        padding: 0;
    }

    .home .header .container {
        justify-content: center;
    }
}

/* Form container */
.form-container {
    position: relative;
}

/* Grey-out overlay */
.form-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(240 240 240 / 84%);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2; /* Ensure it appears above the form */
}

/* Confirmation message styling */
.form-container .overlay .confirmation-message {
    background: #222222;
    padding: 20px 30px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgb(0 0 0 / 74%);
    color: #ffffff;
    top: 25%;
    position: relative;
    text-transform: uppercase;
}
