body {
    font-family: 'Pridi', sans-serif; /* Ensure Pridi is applied */
    color: #333;
    background-color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

@font-face { 
    font-family: 'chicago'; 
    src: url('fonts/chicago_4/Chicago.otf'); 
}
@font-face { 
    font-family: 'chicken'; 
    src: url('https://windsor-seoul.com/fonts/chickens_lovers/Chickens Lovers.ttf'); 
}

.button_class {
    font-family: 'Pridi', sans-serif;
}

/* Header */
.header {
    background: linear-gradient(90deg, rgb(0, 0, 0), rgba(30, 30, 30, 0.6)); /* Gradient for depth */
    color: #fff;
    padding: 5px 5px; /* Increased padding for elegance */
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.logo {
    width: 130px; /* Square width */
    height: 80px; /* Square height */
    border-radius: 10px; /* Slight rounding for a polished square look */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1); /* Hover effect */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the square logo fills the space */
}

.header-text {
    margin-left: 20px;
}

.header-title {
    margin: 0;
    font-size: 30px; /* Larger for prominence */
    font-weight: 700;
    font-family: 'Dancing Script', cursive; /* Consistent with popup */
    color: #ffc107; /* Warm accent */
}

.header-description {
    margin: 0;
    font-size: 20px;
    color: #ddd; /* Softer white */
    font-family: 'Pridi', sans-serif;
    font-style: italic;
}

/* Navbar */
.navbar {
    margin-left: auto;
    margin-right: 30px;
}

.nav-list {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 20px; /* Slightly more spacing */
}

.nav-list li a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    font-size: 17px; /* Slightly larger */
    font-family: 'Pridi', sans-serif;
    font-weight: 500;
    padding-bottom: 5px; /* Space for underline */
    transition: color 0.3s ease;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #e67e22; /* Match menu accent */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
}

.nav-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-list li a:hover {
    color: #e67e22; /* Match menu accent */
}
.nav-list li a.active {
    color: #e67e22;
}

.nav-list li a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 10px;
    }

    .header-text {
        margin-left: 0;
        text-align: center;
        margin-top: 10px;
    }

    .navbar {
        margin-left: 0;
        margin-right: 0;
        margin-top: 10px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

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

/* Popup */
.popup-card {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay */
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: linear-gradient(135deg, #fff, #f5f5f5); /* Subtle gradient */
    margin: 10% auto;
    padding: 30px;
    border: none; /* Remove border */
    width: 80%;
    max-width: 650px;
    position: relative;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Modern shadow */
    animation: slideIn 0.7s ease-in-out;
}

@keyframes slideIn {
    from { transform: translateY(-100px); }
    to { transform: translateY(0); }
}

.close-btn {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover,
.close-btn:focus {
    color: #333;
}

.popup-content h2 {
    font-family: 'Cookie', cursive;
    font-size: 38px; /* Larger title */
    color: #2c3e50; /* Darker for contrast */
    margin-bottom: 15px;
}

.popup-content h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Pridi', sans-serif;
    font-weight: 400;
}

.dine_in {
    font-size: 22px;
    font-weight: bold;
    color: #e67e22; /* Consistent accent */
    margin: 10px 0;
}

.popup-content h4 {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
    font-family: 'Pridi', sans-serif;
}

.explore-menu {
    background-color: #e67e22; /* Match menu accent */
    color: #fff;
    padding: 12px 30px;
    font-size: 17px;
    border-radius: 25px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Pridi', sans-serif;
}

.explore-menu:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* ----------------- */

/* Intro */
/* Intro Section */
.intro {
    position: relative;
    height: 95vh; /* Reduced from 120vh for better fit */
    background: url('https://windsor-seoul.com/images/backgrounds/backgroung.png') no-repeat center center/cover; /* Ensure correct path */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 90px;
    color: #fff;
    overflow: hidden; /* Prevent overflow */
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)); /* Gradient overlay */
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2; /* Above overlay */
    max-width: 850px; /* Slightly narrower for focus */
    padding: 20px;
    animation: fadeInUp 1s ease-in-out; /* Subtle entrance animation */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-title {
    font-size: 58px; /* Larger for impact */
    font-family: 'Dancing Script', cursive; /* Elegant font */
    font-weight: 700;
    color: #ffc107; /* Warm accent */
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* Enhanced shadow */
    line-height: 1.2;
}

.intro-description {
    font-size: 20px; /* Larger for readability */
    font-family: 'Merienda', sans-serif;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 700px; /* Constrain width for better wrapping */
    margin-left: auto;
    margin-right: auto;
}

.dine_in {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22; /* Match menu and popup accent */
    margin-bottom: 20px;
    font-family: 'Merienda', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.opening-hours {
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.95); /* Brighter, opaque */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); /* Softer shadow */
    border-radius: 50px;
    max-width: 400px;
    margin: 0 auto 25px;
    font-family: 'Pridi', sans-serif;
}

.opening-hours p {
    font-size: 18px;
    color: #333; /* Darker for contrast */
    margin: 0;
    font-weight: 500;
}

.order-now {
    background-color: #e67e22; /* Consistent accent */
    color: #fff;
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Pridi', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-now:hover {
    background-color: #ff8c00; /* Slightly brighter hover */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

.book-table-button {
    background-color: #fff; /* Reversed from #e67e22 */
    color: #e67e22; /* Reversed from #fff */
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pridi', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block; /* For the <a> tag inside */
    text-decoration: none; /* Remove underline from <a> */
}

.book-table-button a {
    color: #e67e22; /* Ensure the <a> tag matches the button text color */
    text-decoration: none; /* Remove underline */
}

.book-table-button:hover {
    background-color: #ff8c00; /* Slightly darker white for hover */
    transition:.5s;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.book-table-button:hover a {
    color: #ffffff; /* Match hover text color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro {
        height: 100vh; /* Full height on smaller screens */
    }

    .intro-content {
        padding: 15px;
    }

    .intro-title {
        font-size: 42px; /* Smaller for mobile */
    }

    .intro-description {
        font-size: 16px;
        max-width: 90%;
    }

    .dine_in {
        font-size: 20px;
    }

    .opening-hours {
        padding: 10px 20px;
        max-width: 300px;
    }

    .opening-hours p {
        font-size: 16px;
    }

    .order-now {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Menu Bar */

.menu {
    background: linear-gradient(135deg, #ffffff, #ffffff); /* Match About Us */
    padding: 60px 20px;
    position: relative;
    
}

.menu h2 {
    font-size: 48px;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    color: #2c3e50;
    margin-bottom: 30px; /* Space below title */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.menu-container {
    max-width: 1400px; /* Match existing max-width */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* Left Sidebar for Menu Tabs */
.menu-sidebar {
    width: 300px; /* Fixed width */
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    
    height: fit-content;
}


.menu-tabs {
    display: flex;
    flex-direction: column;
    
}

.menu-tabs button {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #7f8c8d;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Pridi';
}

.menu-tabs button:hover,
.menu-tabs button.active {
    color: #e67e22;
    transform: translateX(10px);
}

.menu-tabs button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #e67e22;
    left: 0;
    bottom: 8px;
    transition: width 0.3s ease;
}

.menu-tabs button:hover::after,
.menu-tabs button.active::after {
    width: 40px;
}

/* Right Content Area for Menu Items */
.menu-content {
    flex: 1;
    position: relative;
    padding-top: 0; /* No extra top padding */
    margin-top: 0;
}


/* Search Bar */
#search {
    width: 100%;
    max-width: 900px; /* Limit width for aesthetics */
    padding: 12px 20px;
    margin: 0 auto 20px; /* Center and space below */
    font-size: 16px;
    font-family: 'Pridi', sans-serif;
    display: block; /* Ensure centering works */
    border-radius: 20px;
    border-color: #e67e22;
    border-style: ridge;
}

.menu-items {
    display: none; /* Default hidden state */
    opacity: 0;
    transform: translateY(50px); /* Start below for upward scroll effect */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-items.active {
    display: block; /* Show when active */
    opacity: 1;
    transform: translateY(0); /* Slide up to position */
}

/* Menu Items Container */
.menu-items {
    display: none;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.menu-items.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
/* New column class for left and right partitions */
.menu-column {
    width: 49%; /* Keep width, but items will stretch wider due to more space */
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

/* Menu Item Styling */
.menu-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    padding: 5px; /* Increased from 5px for more internal space */
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

/* Ensure other menu-item styles remain unchanged */
.menu-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;

}

.menu-item .details {
    flex: 1;
    padding: 0 0 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    gap: 10px; /* Add small gap between name/description and price */
}

.menu-item .details h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}

.menu-item .details .price {
    font-size: 16px;
    font-weight: bold;
    color: #e67e22;
    margin-left: 0; /* Remove margin-left, controlled by gap now */
    white-space: nowrap;
    flex-shrink: 0; /* Prevent price from shrinking */
    width: auto; /* Fit to content */
}

.menu-item .details .line {
    display: none;
}

.menu-item .details p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 5px 0 0 0;
    line-height: 1.4;
    width: 100%;
    max-width: 600px; /* Increased from 500px for more description space */
    overflow-wrap: break-word;
}


.menu-item .details .text-container {
    flex: 1; /* Take up remaining space */
    min-width: 0; /* Prevent overflow issues */
}



/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        padding: 40px 15px;
    }

    .menu h2 {
        font-size: 40px;
    }

    .menu-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-sidebar {
        width: 100%;
        max-width: 500px;
        position: static;
        margin-bottom: 20px;
    }

    .menu-content {
        width: 100%;
    }

    #search {
        max-width: 100%;
    }
}

.bs {
    font-size: 12px;
    font-weight: bold;
    color: #e67e22 !important; /* Match your accent color */
    text-transform: uppercase;
    margin: 0 0 10px 0; /* Small bottom margin to separate from h3 */
    letter-spacing: 2px;
    font-family: 'Pridi', sans-serif;
}

/* Lunch Box Section */
.lunch-box {
    background-color: #ffffff; /* Light background */
    padding: 10px 20px;
    text-align: center;
    font-family: 'Pridi', sans-serif;
}

.lunch-box-content {
    max-width: 1600px;
    margin: 0 auto;
}

.lunch-box-title {
    font-size: 42px;
    font-family: 'Dancing Script', cursive;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.lunch-box-description {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.lunch-box-preview {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lunch-box-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.lunch-box-preview img {
    width: 100%;
    max-width: 300px; /* Larger to showcase the single image */
    height: 450px;
    /* rotate: 90deg; */
    object-fit: cover;
    border-radius: 10px;
}

.preview-details {
    text-align: left;
    max-width: 550px;
}

.preview-details h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px;
    font-family: 'Pridi', sans-serif;
}

.preview-details p {
    font-size: 15px;
    color: #7f8c8d;
    margin: 0 0 15px;
    line-height: 1.5;
}

.preview-details .price {
    font-size: 18px;
    font-weight: bold;
    color: #e67e22;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .lunch-box {
        padding: 40px 15px;
    }

    .lunch-box-title {
        font-size: 34px;
    }

    .lunch-box-description {
        font-size: 16px;
        max-width: 90%;
    }

    .lunch-box-preview {
        flex-direction: column;
        padding: 15px;
    }

    .lunch-box-preview img {
        max-width: 100%;
        height: 200px;
    }

    .preview-details {
        text-align: center;
        max-width: 100%;
    }

    .lunch-box .order-now {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Order Now Section */
.order-now-section {
    background: linear-gradient(135deg, #ffffff, #fff); /* Subtle gradient */
    padding: 60px 20px;
    text-align: center;
    font-family: 'Pridi', sans-serif;
}

.order-now-content {
    max-width: 1000px;
    margin: 0 auto;
}

.order-now-section h2 {
    font-size: 42px;
    font-family: 'Dancing Script', cursive; /* Match Intro */
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.sp_desc {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0 auto 30px;
    max-width: 700px;
    line-height: 1.6;
}

.order-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.order-link {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-link img {
    width: 150px; /* Consistent size */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.or-divider {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
    margin: 20px 0;
    font-family: 'Pridi', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-now {
    background-color: #e67e22;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Pridi', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.call-now span {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.call-now:hover {
    background-color: #ff8c00;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* About Us Section */
/* About Us Section */
.about-us-section {
    background: linear-gradient(135deg, #fff, #ffffff); /* Subtle, modern gradient */
    padding: 20px 20px;
    font-family: 'Pridi', sans-serif;
    text-align: center; /* Center the h2 */
}

.about-us-section h2 {
    font-size: 48px;
    font-family: 'Dancing Script', cursive; /* Modern elegance */
    color: #2c3e50;
    margin-bottom: 20px; /* Space below h2 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.about-us-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Image Side */
.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: 400px; /* Clean, modern height */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02); /* Subtle hover effect */
}

/* Text Side */
.about-text {
    flex: 1;
    max-width: 50%;
    text-align: left; /* Align text left for readability */
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.about-text strong {
    color: #e67e22; /* Accent color */
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 15px;
    }

    .about-us-section h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .about-us-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image, .about-text {
        max-width: 100%;
    }

    .about-image img {
        height: 300px;
    }

    .about-text p {
        font-size: 16px;
        text-align: center; /* Center text on mobile */
    }
}


/* Footer */
.footer {
    background: linear-gradient(180deg, #000000, #5c5c5c);
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Pridi', sans-serif;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.left-content {
    flex: 1;
    min-width: 300px;
    display: flex; /* Split into two portions */
    justify-content: space-between;
    gap: 20px; /* Space between contact and hours */
}

.contact-info, .footer-hours {
    flex: 1; /* Equal width for both */
    min-width: 150px; /* Minimum width to prevent collapse */
}

.contact-info h3, .footer-hours h3 {
    font-size: 24px;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 16px;
    color: #ddd;
    margin: 8px 0;
    line-height: 1.5;
}

.footer-hours p {
    font-size: 15px; /* Slightly smaller to differentiate */
    color: #ccc; /* Lighter shade for distinction */
    margin: 8px 0;
    line-height: 1.5;
}

.contact-info a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.right-content {
    flex: 1;
    min-width: 300px;
}

.map-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-content {
        flex-direction: column; /* Stack contact and hours on mobile */
        align-items: center;
    }

    .contact-info, .footer-hours {
        width: 100%;
        margin-bottom: 20px;
    }

    .right-content {
        flex: none;
        width: 100%;
    }

    .map-container {
        max-width: 100%;
    }

    .contact-info h3, .footer-hours h3 {
        font-size: 22px;
    }

    .contact-info p, .footer-hours p {
        font-size: 15px;
    }
}