:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-gray: #f8f9fa;
    --kenyan-green: #006633;
    --kenyan-red: #cc0000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(rgba(44,62,80,0.7), rgba(44,62,80,0.7)), url('/images/restaurant-bg.jpg') center/cover no-repeat;
    padding: 160px 0;
}

.hero-logo {
    max-height: 120px;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.6));
}

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

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: transform 0.3s ease;
}

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

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

    .btn-primary:hover {
        background-color: #c0392b;
        border-color: #c0392b;
    }

.text-accent {
    color: var(--accent-color) !important;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.kenyan-flag-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--kenyan-green) 33%, #000 33%, #000 66%, var(--kenyan-red) 66%);
}

.media-placeholder {
    height: 250px;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    }

.blockquote {
    font-style: italic;
    color: var(--primary-color);
}

.blockquote-footer {
    font-size: 0.9rem;
    color: #555;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/images/restaurant-bg.jpg') center/cover no-repeat;
    padding: 200px 0;
    position: relative;
}

.hero-logo {
    max-height: 150px;
    filter: drop-shadow(0px 5px 8px rgba(0,0,0,0.6));
}

.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Button tweaks */
.hero-section .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 24px;
    font-size: 1.1rem;
}

    .hero-section .btn-primary:hover {
        background-color: #c0392b;
        border-color: #c0392b;
    }

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

    .hero-slide img {
        object-fit: cover;
        height: 100%;
        filter: brightness(70%);
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,62,80,0.45); /* dark overlay */
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

.hero-logo {
    max-height: 120px;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.6));
}

.carousel-caption h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
}

.carousel-caption .btn {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 1.1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}
