/* General Styles */
:root {
    --primary-color: #f8b500;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --secondary-color: #6c757d;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #444;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #e29f00;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-warning:hover {
    background-color: #e29f00;
    border-color: #e29f00;
    color: #fff;
}

.btn-outline-warning {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-warning:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.text-warning {
    color: var(--primary-color) !important;
}

.section-title {
    margin-bottom: 30px;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080?text=KPO+Hero+Image');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero .overlay {
    top: 0; left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero .container { z-index: 2; }
.hero-wave {
    bottom: 0;
    height: 80px;
    pointer-events: none;
}

/* Feature Icons */
.feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    color: #fff;
}

/* Menu Section */
.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-img {
    height: 200px;
    object-fit: cover;
}

.price {
    font-size: 18px;
}

.nav-pills .nav-link {
    color: var(--dark-color);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Gallery */
.gallery-item {
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Review Section */
.review {
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
}

.stars i {
    font-size: 18px;
}

/* Contact Info */
.contact-info .icon {
    font-size: 24px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Footer */
footer {
    background-color: #111;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,1)), url('https://via.placeholder.com/500x500?text=Pattern');
    background-size: 150px;
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-logo {
    display: inline-block;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    vertical-align: middle;
}

.footer-callout {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 10px 15px;
    font-size: 0.9rem;
}

.footer-link {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

.footer-contact i {
    margin-top: 4px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top {
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-hours {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Divider bajo títulos de sección */
.title-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border: none;
}

/* Espaciado consistente para secciones */
.section {
    position: relative;
}
.section.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 15px;
        border-radius: 5px;
    }
    
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 767px) {
    .hero {
        text-align: center;
    }
    
    .feature, .menu-item, .review {
        margin-bottom: 20px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .back-to-top {
        margin-top: 15px;
    }
}
