﻿body {
    background-color: #fff;
    color: #222222;
    font-family: 'Raleway', sans-serif;
    position: relative;
}

p,
strong,
span {
    color: #222222;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/home/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}



.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.4);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #28262b;
    font-weight: 700;
}


#main-content {
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.section-padding:first-of-type .row {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1800px;
    width: 95%;
}

.section-padding:first-of-type .row .six.columns:first-child {
    flex: 1;
}

.section-padding:first-of-type .row .six.columns:last-child {
    flex: 1;
}

.row {
    max-width: 1800px;
    width: 95%;
    margin: 0 auto;
    padding: 0 40px;
}

.horizontal-gallery {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    position: relative;
}

.horizontal-gallery:active {
    cursor: grabbing;
}

.horizontal-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-container-wrapper {
    position: relative;
    width: 100%;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-size: 20px;
    color: #28262b;
}

.gallery-arrow:hover {
    background: #be1c22;
    color: #fff;
}

.g-arrow-left {
    left: 20px;
}

.g-arrow-right {
    right: 20px;
}

.gallery-inner {
    display: inline-block;
    padding-left: 20px;
}

.gallery-item {
    display: inline-block;
    width: 450px;
    height: 300px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.service-box {
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 50px;
    color: #be1c22;
    margin-bottom: 25px;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.2);
}

.service-box h4 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #28262b;
}

.social-link:hover {
    transform: scale(1.15);
}



@-webkit-keyframes pulse-red {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0.7);
    }

    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(234, 29, 44, 0);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0.7);
    }

    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(234, 29, 44, 0);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0);
    }
}

.ifood-float {
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 9999;
    width: 70px;
    height: 70px;
    background-color: #EA1D2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    animation: pulse-red 2s infinite;
}

.ifood-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.ifood-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .ifood-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        -webkit-animation: pulse-red 2s infinite !important;
        animation: pulse-red 2s infinite !important;
    }
}