:root {
    --primary-color: #BC4413;
    --secondary-color: #0C0D08;
    --accent-color: #EBC988;
    --light-text: #f8f9fa;
    --dark-text: #212529;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--light-text);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(12, 13, 8, 0.95);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-container {
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 120px;
    height: 120px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent-color);
}

.logo-img {
    width: 90%;
    height: auto;
    border-radius: 50%;
}

.navbar-brand {
    margin-right: 140px;
    /* Space for the overlapping logo */
}

@media (max-width: 991.98px) {
    .logo-container {
        width: 80px;
        height: 80px;
        position: relative;
        transform: none;
        top: 0;
        margin-right: 15px;
    }

    .navbar-brand {
        margin-right: 0;
        display: flex;
        align-items: center;
    }

    .navbar-collapse {
        background-color: var(--secondary-color);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }
}

.nav-link {
    color: var(--accent-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 0.6;
    /* Dimmed for text readability */
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #1a1b16;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Quality Section */
.quality-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(188, 68, 19, 0.9), rgba(188, 68, 19, 0.9)), url('../images/bg-pattern.png');
    color: white;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
}

.map-container {
    height: 400px;
    width: 100%;
    border: 2px solid var(--accent-color);
}

/* Buttons */
.btn-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #a0360f;
    transform: scale(1.05);
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}