/* Global Styles */
:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-light: #f8f9fa;
    --text-dark: #2c2c2c;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px;
}

/* Navigation */
.navbar {
    background: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.odeko-icon img {
    width: 30px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.odeko-icon:hover img {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-content h1 {
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 30px;
}

.newsletter-form .form-control {
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 15px 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--secondary-color);
}

/* Features Section */
.features-section {
    background: white;
}

.feature-box {
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-box i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 60px;
    margin-top: -80px;
    padding-top: 180px;
}

.about-content {
    background: white;
}

.about-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.mission-highlights {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight-item i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-box .btn-primary:hover {
    transform: scale(1.05);
    background: var(--accent-color);
}

/* Menu Page */
.menu-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 60px;
    margin-top: -80px;
    padding-top: 180px;
}

.menu-content {
    background: white;
}

.menu-category {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.menu-item {
    padding: 25px;
    margin-bottom: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.menu-item h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.menu-item p {
    color: #666;
    margin-bottom: 0;
}

.order-online-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 60px 40px;
    border-radius: 15px;
    color: white;
}

.order-online-box .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.order-online-box .btn-primary:hover {
    transform: scale(1.05);
}

.odeko-large {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 60px;
    margin-top: -80px;
    padding-top: 180px;
}

.contact-content {
    background: white;
}

.contact-info-box,
.contact-form-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    color: #666;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form-box .form-label {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-box .form-control {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-form-box .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.map-container {
    margin-top: 40px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
}

.footer h5 {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 20px;
    }

    .social-icons {
        margin-top: 20px;
        justify-content: center;
    }

    .hero-content {
        margin-top: 40px;
        text-center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .about-hero,
    .menu-hero,
    .contact-hero {
        padding: 80px 0 40px;
        padding-top: 150px;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.feature-box,
.info-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
