:root {
    --primary-color: #353535;
    --button-color: #1f5a22;
    --secondary-color: #d4af37;
    --dark-color: #1a1a1a;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/banner_sinuca.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-section h1,
.hero-section p {
    color: white;
}

.product-card {
    transition: transform 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-section {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 10px;
    font-style: normal;
}

.logo-icon {
    width: 70px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slogan {
    color: #666;
    font-size: 0.9rem;
    /* font-style: italic; */
    line-height: 20px;
}

.contact-form {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 30px;
}

.uk-navbar-container {
    padding: 0 20px;
}

.custom-button {
    background-color: var(--button-color);
    color: white;
}

.custom-button:hover {
    background-color: #256b28;
    color: white;
}

.section-padding {
    padding: 80px 0;
}

.logo-svg {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    color: white;
    font-size: 2rem;
}

h4 {
    color: #ffffff;
}

@media (max-width: 640px) {
    .hero-section {
        height: 60vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
}

.contact-form {
    background-color: #2b2b2b;
    color: #fff;
}

.contact-form .uk-input,
.contact-form .uk-select,
.contact-form .uk-textarea {
    background-color: #444;
    color: #fff;
    border: 1px solid #666;
}

.contact-form .uk-input::placeholder,
.contact-form .uk-select,
.contact-form .uk-textarea::placeholder {
    color: #ccc;
}

.product-card {
    border-top: 4px solid #C49A6C;
}