:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a2530 0%, #0f1620 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-decorative-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-icon {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0;
    animation: iconFloat 20s ease-in-out infinite;
}

.hero-icon.steak {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-icon.cleaver {
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-15deg);
}

@keyframes patternFloat {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconFloat {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    20% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px);
    }
    80% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-content a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
}

.hero-content a:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

.hero-content p {
    margin: 1rem 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-icon {
        width: 120px;
        height: 120px;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Times Grid */
.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.times-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.times-card ul {
    list-style: none;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-box h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-box i {
    color: #e74c3c;  /* Red color from your image */
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-box p {
    margin: 0.5rem 0;
    color: #666;
}

.contact-box a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #e74c3c; /* Your brand color */
    text-decoration: underline;
}

/* Social Icons Section */
.social-section {
    text-align: center;
    margin: 2rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #e74c3c;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
} 

/* Contact Section Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #c0392b;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* We should add a mobile menu button */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .times-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Mobile Adjustments */
@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }
} 

/* Opening Hours Styles */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.hours-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hours-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 0.5rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .hours-card {
        padding: 1.5rem;
    }

    .hours-card h2 {
        font-size: 1.5rem;
    }
} 

/* About Section Styles */
.about-wrapper {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text {
    max-width: 800px;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.highlight span {
    font-weight: 500;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-wrapper {
        padding: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-text .lead {
        font-size: 1.2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 

/* Menu Page Specific Styles */
.menu-hero {
    height: 50vh;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    margin-top: 0;
}

.menu-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.menu-info {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-notice {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-item h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.menu-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.extra {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.grilled-meats {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.grilled-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.grilled-meats .menu-item {
    text-align: center;
    min-width: 0;
}

.grilled-meats h2 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-list .price {
    color: #e74c3c;
    font-weight: 600;
}

.grilled-note {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #f1f1f1;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.chefs-special {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.chefs-special h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.chefs-special p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .grilled-meats {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .chefs-special {
        padding: 2rem;
    }
} 

/* Add to your existing styles */
.nav-links a.active {
    color: var(--secondary-color);
} 

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
} 

/* Weekly Lunch Styles */
.weekly-lunch {
    padding: 4rem 0;
    background: var(--light-bg);
}

.lunch-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lunch-day {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lunch-item.single {
    padding: 0.5rem 0;
}

.lunch-day h2 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.lunch-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.lunch-item {
    margin-bottom: 1.5rem;
}

.lunch-item:last-child {
    margin-bottom: 0;
}

.lunch-item p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.lunch-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lunch-info p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.lunch-info ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lunch-info li {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .lunch-grid {
        grid-template-columns: 1fr;
    }

    .lunch-info ul {
        flex-direction: column;
        gap: 0.5rem;
    }
} 

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Adjust spacing between sections */
.weekly-lunch {
    padding: 4rem 0;
    background: var(--light-bg);
}

.menu-section {
    padding: 4rem 0;
    background: white;
}

/* Keep your existing styles */ 

/* Add to your existing styles */
.logo-link {
    display: block;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.9;
} 

/* Footer Styles */
.site-footer {
    background-color: #2c3e50;  /* Dark blue color from image */
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-details, .hours-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
}

.contact-details a:hover {
    color: #3498db;  /* Light blue on hover */
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .footer-info {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
    }

    .footer-section {
        flex: 1;
        max-width: 300px;
    }
} 

/* Map Section */
.map-section {
    background-color: #f8f9fa;  /* Same as contact section background */
    padding: 0 1rem 4rem;  /* Added bottom padding */
    width: 100%;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .map-section {
        padding-bottom: 2rem;  /* Smaller padding on mobile */
    }
} 

/* Navigation active state */
.nav-links a.active {
    color: #e74c3c;  /* Red color to match your theme */
}

/* Ensure hover state doesn't override active state */
.nav-links a:hover {
    color: #e74c3c;
}

.nav-links a.active:hover {
    color: #e74c3c;
} 

.service-time {
    text-align: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.service-time i {
    color: #e74c3c;
    margin-right: 8px;
}

.service-time .section-subtitle {
    display: block;
    margin: 5px 0 10px 0;
    font-weight: 600;
    color: #e74c3c;
}

.time-detail {
    margin: 5px 0;
    font-weight: 500;
}

.price-note {
    margin-top: 10px;
    color: #e74c3c;
    font-weight: 600;
} 

.week-number {
    font-size: 0.8em;
    color: #e74c3c;
    margin-left: 10px;
} 

.weekly-special h2 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.weekly-special .menu-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.weekly-special h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.weekly-special .meat-type {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.weekly-special .description {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.weekly-special .price {
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-top: 1.5rem;
}

.lunch-item.featured {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} 

.lunch-list {
    max-width: 800px;
    margin: 2rem auto;
}

.day-item {
    margin-bottom: 2rem;
}

.day-item h2 {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.menu-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-content h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.menu-content p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.price {
    color: #e74c3c;
    font-weight: 600;
    display: block;
}

.weekly-special h2 {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-time {
    text-align: center;
    margin: 1rem 0;
    color: #666;
}

.service-time i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.lunch-info {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    color: #666;
}

.lunch-info ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.lunch-info li {
    margin: 0.3rem 0;
} 

.menu-content .dish-description {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.3rem;
} 

/* Add responsive behavior for smaller screens */
@media (max-width: 768px) {
    .grilled-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grilled-items {
        grid-template-columns: 1fr;
    }
} 

.grilled-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.grilled-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.grilled-item {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.grilled-item h2 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.grilled-item .price {
    color: #e74c3c;
    font-weight: 600;
    margin: 0.5rem 0;
}

.grilled-info {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
    .grilled-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grilled-grid {
        grid-template-columns: 1fr;
    }
} 

/* Add or update this CSS */
#kontakt {
    scroll-margin-top: 100px; /* Adjust this value as needed */
}

/* Alternative solution if the above doesn't work well */
.contact-section {
    padding-top: 80px;
    margin-top: -80px;
} 

#a-la-carte {
    scroll-margin-top: 100px; /* Adjust this value based on your nav height */
} 

/* Shop Hero Section - Matching Menu Hero */
.shop-hero {
    height: 60vh;
    background: linear-gradient(135deg, #1a2530 0%, #0f1620 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.shop-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.shop-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.shop-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .shop-hero {
        height: 50vh;
    }
    
    .shop-hero h1 {
        font-size: 2rem;
    }
    
    .shop-hero p {
        font-size: 1.2rem;
    }
}

/* Shop Introduction */
.shop-intro {
    padding: 4rem 0;
    background-color: #fff;
}

.shop-description {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.shop-description ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.shop-description li {
    padding: 0.5rem 0;
    font-size: 1.1em;
    position: relative;
    padding-left: 1.5em;
}

.shop-description li:before {
    content: "•";
    color: #e31837;
    position: absolute;
    left: 0;
}

/* Services Section */
.shop-services {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5em;
    color: #e31837;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin: 1rem 0;
    color: #333;
}

/* Quality Section */
.quality-section {
    padding: 4rem 0;
    background-color: #fff;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.quality-item {
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.quality-item h3 {
    color: #e31837;
    margin-bottom: 1rem;
}

.quality-item ul {
    list-style: none;
    padding: 0;
}

.quality-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.quality-item li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero .hero-content h1 {
        font-size: 2em;
    }

    .shop-hero .hero-content p {
        font-size: 1.2em;
    }

    .services-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .quality-item {
        padding: 1.5rem;
    }
} 

/* Meat Categories Styling */
.meat-category {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.meat-category h3 {
    color: #e31837;
    font-size: 1.8em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e31837;
}

.category-note {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.meat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.meat-item {
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.meat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.meat-item h4 {
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    color: #333;
}

.meat-item .origin {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 0.5rem;
}

.meat-item .price {
    font-weight: bold;
    color: #e31837;
    font-size: 1.1em;
    margin-top: 0.5rem;
}

.meat-item .price-variant {
    color: #e31837;
    font-size: 0.9em;
    margin-top: 0.25rem;
}

.meat-item .price-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .meat-category {
        padding: 1rem;
        margin: 2rem 0;
    }

    .meat-grid {
        grid-template-columns: 1fr;
    }

    .meat-item {
        padding: 1rem;
    }
} 

.no-menu-message {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 2rem 0;
}

.no-menu-message h3 {
    color: #e31837;
    margin-bottom: 1rem;
}

.no-menu-message p {
    margin: 0.5rem 0;
}

.no-menu-message a {
    color: #e31837;
    text-decoration: none;
    font-weight: bold;
}

.no-menu-message a:hover {
    text-decoration: underline;
} 

.origin {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9em;
} 

.meat-notes {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 0.3em;
}

.menu-notes {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 0.3em;
    margin-bottom: 0.5em;
}

.week-info {
    color: #31708f;
    font-size: 0.9em;
    margin-top: 0.5em;
    font-style: italic;
}

.week-warning {
    color: #d9534f;
    font-size: 0.9em;
    margin-top: 0.5em;
}

.footer-section .contact-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .contact-details a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* Update social links layout */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.social-links i {
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content a {
        font-size: 0.9rem;
        padding: 0.2rem 0;
    }
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        text-align: center;
    }
    
    .social-links a {
        justify-content: center;
    }
}

.permanent-menu {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
}

.permanent-menu p {
    color: #37474F;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.permanent-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.permanent-menu li {
    color: #c41230;  /* Your brand red color */
    font-weight: 500;
}

.permanent-menu li:not(:last-child)::after {
    content: "•";
    color: #ddd;
    margin-left: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .permanent-menu ul {
        flex-direction: column;
        align-items: center;    /* Center items on mobile */
        gap: 10px;
    }
}

.section-title {
    color: #37474F;
    font-size: 1.8rem;
    text-align: center;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.menu-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.permanent-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.permanent-menu li {
    color: #c41230;
    font-weight: 500;
}

.permanent-menu li:not(:last-child)::after {
    content: "•";
    color: #ddd;
    margin-left: 1rem;
}

.weekly-special .menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.weekly-special .menu-content li {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
}

.weekly-special .menu-content li:not(:last-child)::after {
    content: "•";
    color: #ddd;
    margin-left: 1rem;
}

.weekly-special {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 2rem;
}

.weekly-special:last-of-type {
    border-bottom: none;
}

.lunch-list {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 2rem;
}

/* Add these styles to your existing CSS */

/* Adjust spacing for mobile */
@media (max-width: 768px) {
  .weekly-special {
    margin: 1.5rem auto; /* Reduce margin between sections on mobile */
  }
  
  .weekly-special .menu-content {
    padding: 1.5rem; /* Slightly less padding in the white cards */
  }
  
  /* Make the dividers between sections more subtle */
  .weekly-special {
    border-top: 1px solid rgba(241, 241, 241, 0.5);
    padding-top: 1rem;
  }
  
  /* Improve the bullet points between menu items */
  .weekly-special .menu-content li:not(:last-child)::after {
    content: "•";
    color: #e74c3c; /* Make bullets the same color as the text for better visibility */
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-size: 1.2rem; /* Slightly larger bullets */
  }
  
  /* Adjust font sizes for better readability */
  .weekly-special h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  
  /* Price styling */
  .price {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.special-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Remove the :before pseudo-element that was creating the double line */
.special-hours:before {
    display: none;
}

.special-hours h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e74c3c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.special-hours .hours-list {
    font-size: 0.95rem;
}

.special-hours .hours-item {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.special-hours .hours-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .special-hours {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .special-hours h3 {
        font-size: 1.1rem;
    }
    
    .special-hours .hours-list {
        font-size: 0.9rem;
    }
}

/* Add to your existing styles */
.passed-date {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.passed-date::after {
    content: 'Passerat';
    background-color: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.passed-date span:first-child {
    flex: 1;
    min-width: 0;
}

.passed-date span:last-child {
    margin-left: auto;
    white-space: nowrap;
}

/* Update hours-item to support flex layout */
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 0.5rem;
}

.hours-item span:first-child {
    font-weight: 500;
}

.special-hours-link {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.special-hours-link a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.special-hours-link a:hover {
    color: #c0392b;
}

.special-hours-link i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.special-hours-link a:hover i {
    transform: translateX(3px);
}