/* Global Styles */
:root {
    --primary-color: #5e3a1a;
    --secondary-color: #a67c52;
    --accent-color: #d4a373;
    --light-color: #f5ebe0;
    --dark-color: #2c1810;
    --text-color: #333;
    --white-color: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

.highlight {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Navbar */
.navbar {
    background-color: rgba(46, 26, 15, 0.9);
    transition: all 0.3s ease;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--accent-color);
}

.nav-link {
    color: var(--white-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border: 10px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Menu Section */
.menu {
    background-color: var(--light-color);
}

.menu h2 {
    position: relative;
    padding-bottom: 15px;
}

.menu h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.menu-category {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.menu-category h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px dashed var(--accent-color);
    padding-bottom: 10px;
}

.menu-item {
    margin-bottom: 20px;
    position: relative;
}

.menu-item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* About Section */
.about {
    background-color: var(--white-color);
    position: relative;
}

.about h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.about h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    background-color: var(--light-color);
}

.gallery h2 {
    position: relative;
    padding-bottom: 15px;
}

.gallery h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.gallery-item img {
    transition: transform 0.5s;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background-color: var(--white-color);
}

.contact h2 {
    position: relative;
    padding-bottom: 15px;
}

.contact h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.contact-form .form-control {
    border-radius: 0;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background-color: var(--light-color);
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.footer p {
    margin-bottom: 0;
}

.footer .fa-heart {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 150px 0 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .hero-image-container {
        margin-top: 50px;
    }
}

@media (max-width: 992px) {
    .about .col-lg-6:last-child {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
} 