/* Add your custom CSS styles here */

:root {
    --font-primary: "TrajanPro-Regular";
    --color-primary: #e55621;
    --color-secondary: #4e4e50;
}

/* Navbar */
.navbar {
    z-index: 1;
}

.navbar-brand img {
    width: 80px;
}

.navbar-nav {
    align-items: center;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    font-size: 1.1em;
    padding: 0.5em 1em;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--color-primary);
    transition: .1s ease-in;
    /* border-bottom: 1px solid; */
    font-size: 1.1em;
    padding: 0.5em 1em;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width .6s;
}

.nav-link:hover::after {
    width: 100%;
    /* transition: width .3s; */
}

@media screen and (min-width: 768px) {
    .navbar-brand img {
        width: 300px;
    }

    .navbar-brand {
        margin-right: 0;
        padding: 0 1em;
    }
}


/* Banner */
.banner {
    background-image: url('path/to/banner-image.jpg');
    background-size: cover;
    background-position: center;
    /* height: 400px; */
}

/* About Us */
.about-us {
    padding: 80px 0;
    /* background-color: #f8f9fa; */
}

.about-us .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    /* border-bottom: 1px solid; */
    color: black;
    letter-spacing: 2px;
}

.about-us p {
    text-align: justify;
    letter-spacing: 1px;
}

.about-us img {
    width: 100%;
}

/* Three Images Section */
.three-images {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.three-images img {
    width: 100%;
    box-shadow: 0px 30px 20px -30px;
    border-radius: 30px;
    transition: .3s;
}

.three-images img:hover {
    width: 100%;
    box-shadow: 0px 30px 20px -30px;
    border-radius: 30px;
    margin-top: -10px;
    transition: .3s;
}

.three-images p {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 2px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #fff;
}

.video-section .sub-brand {
    text-align: center;
    font-family: var(--font-primary);
    border-bottom: 1px solid black;
    width: fit-content;
    margin: 0 auto;
}

.video-section p {
    text-align: center;
    padding-top: 20px;
    font-size: 1.1rem;
    text-align: justify;
    letter-spacing: 1px;
}

.video-section .cta {
    border: none;
    background: none;
    margin-top: 15px;
}

.video-section .cta a {
    padding-bottom: 7px;
    letter-spacing: 4px;
    font-size: 14px;
    padding-right: 15px;
    text-transform: uppercase;
    text-decoration: none;
}

.video-section .cta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.video-section .cta:hover svg {
    transform: translateX(0);
}

.video-section .cta:active svg {
    transform: scale(0.9);
}

.video-section .hover-underline-animation {
    position: relative;
    color: black;
    padding-bottom: 20px;
    border: none;
}

.video-section .hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.video-section .cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* Maintain 16:9 aspect ratio for the video */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Four Images Section */
.four-images {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.four-images .col-md-6 {
    padding: 1rem;
}

.four-images img {
    width: 100%;
}

.four-images p {
    text-align: center;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Media Queries */
@media only screen and (max-width: 767px) {
    section {
        padding: 40px 0 !important;
    }
}