@font-face {
    font-family: 'CustomFont';
    src: url('/css/fonts/RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CustomFont';
    src: url('/css/fonts/RobotoCondensed-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'CustomFont', sans-serif;
    color: #1a1a1a;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body > *:not(footer) {
    flex-shrink: 0;
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    padding: 1.5rem 0;
    background-color: #fff !important;
}

.navbar-brand img {
    max-width: 180px;
    height: auto;
}

.navbar-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a !important;
    padding: 0.5rem 0 !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #666 !important;
}

header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

header + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Kill any whitespace between carousel and footer */
body > *:last-child {
    margin-top: 0;
    padding-top: 0;
}

#carouselSlides {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    position: relative;
    width: 100%;
    max-height: calc(100vh - 140px);
    overflow: hidden;
}

#carouselSlides .carousel-inner {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    height: 100%;
    width: 100%;
}

#carouselSlides .carousel-item {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    height: calc(100vh - 140px) !important;
}

#carouselSlides .carousel-item img {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block;
}

#carouselSlides .carousel-control-prev,
#carouselSlides .carousel-control-next {
    margin: 0 !important;
}

.carousel {
    position: relative;
    width: 100%;
    max-height: calc(100vh - 140px);
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
    background: transparent !important;
}

.carousel-inner {
    height: 100%;
    margin-bottom: 0 !important;
}

.carousel-item {
    height: calc(100vh - 140px);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.carousel-item > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 30px;
    margin-top: 0 !important;
    border: none !important;
}

.carousel {
    position: relative;
    width: 100%;
    max-height: calc(100vh - 140px);
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
}

.carousel-inner {
    height: 100%;
    margin-bottom: 0 !important;
}

.carousel-item {
    height: calc(100vh - 140px);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 30px;
    margin-top: 0 !important;
    border: none !important;
}

.carousel-inner {
    height: 100%;
    margin-bottom: 0 !important;
}

.carousel-item {
    height: calc(100vh - 140px);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
    margin: 0 10px;
    position: absolute;
    border: none;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 1);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #1a1a1a;
}

.carousel-caption {
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: auto;
    transform: none;
    text-align: right;
    background: rgba(255, 255, 255, 0.92);
    padding: 1rem 1.5rem;
    width: auto;
    min-width: 150px;
    max-width: 280px;
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.carousel-caption h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-shadow: none;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

footer .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 30px;
}

footer .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .icon:hover {
    background-color: #fff;
    color: #1a1a1a;
}

footer .icon i {
    font-size: 18px;
}

footer p {
    color: #999;
    font-size: 0.9rem;
}

.contact-section {
    padding: 80px 0 100px;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #666;
}

.contact-item {
    margin-bottom: 1rem;
}

.address {
    font-style: normal;
    line-height: 1.8;
    color: #444;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #1a1a1a;
    box-shadow: none;
}

.contact-form .btn-dark {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form .btn-dark:hover {
    background-color: #333;
    border-color: #333;
}

.form-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.main-content {
    min-height: calc(100vh - 200px);
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.85rem;
    }

    .carousel-caption {
        right: 5%;
        width: 200px;
    }

    .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 44px;
        height: 44px;
        margin: 0 10px;
    }

    footer {
        padding: 40px 0 20px;
    }
}

#carouselSlides {
    margin-bottom: 0;
}

#carouselSlides + footer {
    margin-top: 0;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 0;
}
}
