/* Preloader */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #d4af37;
    --bs-btn-border-color: #d4af37;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d4af37;
    --bs-btn-hover-border-color: #d4af37;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d4af37;
    --bs-btn-active-border-color: #d4af37;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #cda935;
    --bs-btn-disabled-border-color: #d4af37;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #f8f8f8;
    --accent-color: #d4af37;
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --link-color: #d4af37;
    --link-hover-color: #212529;
    --border-color: #e5e5e5;
}

body {
    font-family: 'Archivo Black', arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c19b2f;
    border-color: #c19b2f;
    transform: translateY(-2px);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.menu-item {
    background: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.menu-item-content p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.menu-item-content .price {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid var(--border-color);
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .card, .about {
    animation: fadeIn 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Menu Hero Section */
.menu-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/food/bannerfood.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
}

.menu-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.menu-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Menu Categories */
.menu-categories {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.category-tab {
    padding: 10px 25px;
    border: none;
    background: none;
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--heading-color);
    transition: width 0.3s ease;
}

.category-tab.active {
    color: var(--heading-color);
}

.category-tab.active::after {
    width: 100%;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.order-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.order-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 80px 0 20px;
    margin-top: 80px;
}

.footer-info h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.footer-info p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.footer-contact .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-contact .contact-info i {
    margin-right: 10px;
    color: var(--heading-color);
}

.working-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.working-hours p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    max-width: 400px;
}

.newsletter-form .form-control {
    border-radius: 5px 0 0 5px;
    border: 1px solid var(--border-color);
}

.newsletter-form .btn {
    border-radius: 0 5px 5px 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-color);
    margin: 0;
}

.footer-bottom a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--heading-color);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-info,
    .footer-contact,
    .footer-newsletter {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom a {
        display: block;
        margin: 10px 0;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link.instagram::before {
    background: var(--accent-color);
}

.social-link.whatsapp::before {
    background: var(--accent-color);
}

.social-link.facebook::before {
    background: var(--accent-color);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    position: relative;
    z-index: 2;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-brand:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

/* About Video */
.about-video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-video video {
    width: 525px;
    height: 525px;
    display: block;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-tab {
    padding: 10px 25px;
    border: none;
    background: none;
    font-family: 'Archivo Black', arial, sans-serif;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    color: var(--primary-color);
}

.category-tab.active::after {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-family: 'Archivo Black', arial, sans-serif;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Social Section */
.social-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-link.facebook {
    background: linear-gradient(45deg, #1877F2, #166FE5);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-categories {
        flex-wrap: wrap;
        gap: 15px;
    }

    .category-tab {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
} 