/* 
* The Front End Cafe Theme
* Main Stylesheet
*/

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    color: #e67e22;
    transition: all 0.3s ease;
}

a:hover {
    color: #d35400;
}

.btn-primary {
    background-color: #e67e22;
    border-color: #e67e22;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #d35400;
    border-color: #d35400;
}

.btn-outline-primary {
    color: #e67e22;
    border-color: #e67e22;
}

.btn-outline-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

.text-primary {
    color: #e67e22 !important;
}

.bg-primary {
    background-color: #e67e22 !important;
}

/* Header Styles */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
}

.navbar-dark .navbar-brand {
    color: #e67e22;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover, 
.navbar-dark .navbar-nav .nav-link.active {
    color: #e67e22;
}

/* Cards & Panels */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #2c3e50;
}

footer a {
    color: #e67e22;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
}

/* Menu Page Specific */
.menu-category {
    margin-bottom: 3rem;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    margin: 0;
    font-weight: 700;
}

.menu-item-price {
    color: #e67e22;
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item-description {
    margin-bottom: 0;
}

.dietary-info {
    font-size: 0.8rem;
    font-style: italic;
    color: #666;
}

/* Contact & Reservation Form */
.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    color: #e67e22;
    font-size: 1.5rem;
    margin-right: 1rem;
    vertical-align: middle;
}

.reservation-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Map */
.map-container {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-item-price {
        margin-top: 0.5rem;
    }
} 