@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* General */
* {
    font-family: "Inter", sans-serif;
}

html {
    scroll-padding-top: 3.5rem;
}

header {
    margin-top: 0.5rem;
}

section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    section {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

a, p {
    color: #252525;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.card {
    border-width: 0;
    border-radius: 12px;
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

.card-body {
    padding: 0;
}

.contact-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 3rem;
}

.contact-action h3 {
    font-weight: 600;
    font-size: 28px;
}

@media (max-width: 767px) {
    .contact-action {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .contact-action h3 {
        font-size: 24px;
    }

    .btn-primary {
        padding: 0rem;
    }
}

.underline {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #fcc6a4 50%);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #EB5B00;
    --bs-btn-border-color: #EB5B00;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d35100;
    --bs-btn-hover-border-color: #0aEB5B0058ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d35100;
    --bs-btn-active-border-color: #d35100;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #db986f;
    --bs-btn-disabled-border-color: #db986f;
    font-weight: 600;
    padding: 1rem;
}

.outer-box {
    display: flex;
    width: 100%;
    height: 130px;
    border: 1px solid #dedee0;
    border-radius: 12px;
    z-index: 1;
    flex-wrap: wrap;
}

.inner-box {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #dedee0;
    background-color: white;
    color: black;
    z-index: -1;
    padding: 10px;
}

.inner-box:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .outer-box {
        flex-direction: column;
        height: auto;
    }

    .inner-box {
        border-right: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .inner-box:last-child {
        margin-bottom: 0;
    }

    .inner-box:empty {
        display: none;
    }
}

/* Navbar */
.navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 600;
    color: #EB5B00;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    font-size: 18px;
    color: #252525;
    text-transform: uppercase;
    padding: 0 !important;
}

/* Header */
.video-container {
    position: relative;
    width: 100%;
    height: 40rem;
    overflow: hidden;
    border-radius: 10px;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.header-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4rem;
    align-items: start;
    color: white;
    z-index: 2;
}

.header-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
}

.header-content p {
    color: white;
    max-width: 600px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .header-content {
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .header-content h1 {
        text-align: center;
    }

    .header-content p {
        text-align: center;
        max-width: 100%;
    }
}

/* Customers */
#customers {
    margin-top: 2rem;
    filter: grayscale(100%);
}

#customers h4 {
    color: #b1b1b1;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 2rem;
}

/* Services */
section#services {}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
}

.service-card h3 {
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 1.7rem;
}

.service-card p {
    text-align: center;
    max-width: 18rem;
}

/* About */
section#about {}

.about-content {
    margin: 5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-content img {
    height: 512px;
    width: auto;
    border-radius: 12px;
}

.about-text {
    max-width: 70%;
}

@media (max-width: 767px) {
    .about-content {
        margin: 3rem 2rem;
        flex-direction: column;
        gap: 20px;
    }

    .about-content img {
        height: auto;
    }

    .about-text {
        max-width: 100%;
    }
}

/* Social */
.social-action {
    margin: 5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-action h3 {
    font-weight: 600;
}

.social-action .social-icons {
    display: flex;
    gap: 2rem;
}

.social-action .social-icons a {
    font-size: 2.3rem !important;
    color: #EB5B00;
}

@media (max-width: 767px) {
    .social-action {
        margin-top: 2rem;
    }

    .social-action {
        margin: 1rem 3rem 4rem 3rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .social-action h3 {
        font-size: 28px;
    }
}

/* Examples */
.img-fluid {
    border-radius: 12px;
}

.carousel-inner {
    border-radius: 12px;
}

/* Portfolio */
section#portfolio {}

/* Contact */
section#contact {}
