/* General Body */
body {
    background-color: black;
    /* Black background for the body */
    color: #fff;
    /* White text */
    font-weight: 600;
    font-family: Teko;
    letter-spacing: 1.5px;
}

/* Navbar Customization */
.navbar {
    /* background-color:rgba(0, 0, 0, 0.4) !important; */
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    height: 90px;
}

.navbar-brand {
    font-weight: bold;
    color: rgb(173, 146, 113) !important;
    /* Gold color for the brand */
}

.nav-link {
    font-size: 20px;
}

.navbar-nav .nav-link {
    color: rgb(173, 146, 113) !important;
    /* Gold color for nav links */
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    background-color: rgb(173, 146, 113);
    /* Gold hover effect */
}

.nav-item {
    text-align: center;
}

/* Header & Sections */
section {
    padding: 45px 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: rgb(173, 146, 113);
    /* Gold text */
}

/* Project Cards */
.project-card {
    background-color: black;
    /* Light background */
    border: none;
    /* Light border */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: rgb(173, 146, 113);
    text-align: center;
    padding-bottom: 5px;
}

.project-card .card-body {
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: normal;
}

.card-text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: normal;
}

.project-card .schedule-btn-gold {
    background-color: rgb(173, 146, 113);
    color: #111;
    border: none;
}

.project-card .schedule-btn-gold:hover {
    background-color: #d4a018;
}

/* Contact Section */
#contact {
    background-color: #fff;
    /* White background */
    color: #111;
    /* Dark text */
}

#contact ul li a {
    color: rgb(173, 146, 113);
    /* Gold links */
}

#contact ul li a:hover {
    color: #111;
    /* Dark color on hover */
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    color: rgb(173, 146, 113);
    /* Gold text */
}

footer a {
    color: rgb(173, 146, 113);
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Links & Buttons */
a {
    color: rgb(173, 146, 113);
}

a:hover {
    color: #fff;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full height of the viewport */
    overflow: hidden;
}

/* The video takes up the full width and height of the container */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire container */
}

/* Faded div that sits on top of the video */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    pointer-events: none;
    /* Prevents the overlay from interfering with any interactions */
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

/* Custom Styles */
.social-widget-bar {}

.social-widget {
    text-decoration: none;
}

.social-widget-bar a:hover {
    background-color: #007bff;
}

h4 {
    font-family: Teko;
}

.schedule-btn {
    color: #fff;
    display: inline;
    cursor: pointer;
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: auto;

    &:hover {
        text-decoration: none;
    }
}

.schedule-btn-2 {
    letter-spacing: 0;
}

.schedule-btn-2:hover,
.schedule-btn-2:active {
    letter-spacing: 5px;
}

.schedule-btn-2:after,
.schedule-btn-2:before {
    backface-visibility: hidden;
    border: 1px solid rgba(#fff, 0);
    bottom: 0px;
    content: " ";
    display: block;
    margin: 0 auto;
    position: relative;
    transition: all 280ms ease-in-out;
    width: 0;
}

.schedule-btn-2:hover:after,
.schedule-btn-2:hover:before {
    backface-visibility: hidden;
    border-color: #fff;
    transition: width 350ms ease-in-out;
    width: 70%;
}

.schedule-btn-2:hover:before {
    bottom: auto;
    top: 0;
    width: 70%;
}

.schedule-btn-5 {
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, .5);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.schedule-btn-5:hover {
    border: 1px solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388;
}

* {
    transition-property: all;
    transition-duration: .6s;
    transition-timing-function: ease;
}