/*
Theme Name: A's Burgers Custom
Theme URI: https://asburgers.com
Description: Custom WordPress theme for A's Burgers with retro California styling
Version: 1.0
Author: Nick Nguyen its@NickNguyen.com
Author URI: https://internettechnologyservices.com
Tags: restaurant, burgers, california
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fjalla One','Arial', 'Helvetica', sans-serif;
    background:transparent;
    color: #333;
    min-height: 100vh;
    position: relative;
    padding-bottom: 400px; /* Space for background image */
}

/* Background Image Container */
.site-background {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1500px;
    z-index: -1;
    opacity: 0.4;
}

.site-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header Container - Responsive Wrapper */
.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Section - Center */
.site-logo {
    flex: 0 0 300px;
    max-width: 300px;
    order: 2;
}

.site-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Location Items */
.location-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

/* Dana Point - Left */
.location-left {
    order: 1;
}

/* San Juan - Right */
.location-right {
    order: 3;
}

.location-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.location-item .address {
    font-size: 14px;
   display:block;
    color: #666;
    margin-bottom: 3px;
}
.location-item .address:hover {
  
    color: #000;

}

.location-item .phone {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
}

.location-item .phone:hover {
    color: #c0392b;
}

/* Navigation Menu - Blue Box */
.main-navigation {
    border-radius: 15px;
    margin: 20px 0;
    padding: 15px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.main-navigation li {
    display: inline-block;
}

.main-navigation a {
    color: rgba(238, 6, 6, 1);
    text-decoration: none;
    text-transform:uppercase;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 20px;
    display: block;
    transition: background 0.3s;
    border-radius: 5px;
}

.main-navigation a:hover {
    background: rgba(240, 210, 88, 1);
    border-color: #ee0606;
    border-style: solid;
}
.single_add_to_cart_button{

    background-color: #ee0606;
}
.current-menu-item{
       background: rgba(240, 210, 88, 1);
    border-color: #ee0606;
    border-style: solid;
}
/* Main Content - Red Box */
.main-content {
    background: rgba(240, 210, 88, 0.5);
    border-radius: 15px;
    margin: 20px auto;
        border-color:rgba(238, 6, 6, 1);
    border-width: thick;
    border-style: solid;
    padding: 40px;
    min-height: 400px;
    max-width: 1600px;

}

.main-content h1 {
    font-size: 32px;
    color: #d32f2f;
    margin-bottom: 20px;
}

.main-content h2 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 15px;
}

.main-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background:  transparent;
    padding: 20px 40px;
    text-align: center;
    margin-top: 40px;
}

.site-footer p {
    font-size: 14px;
    color: hsl(0, 91%, 40%);
}

/* WooCommerce Custom Menu-Style Layout */

/* Category Title */
.menu-category-title {
    font-size: 56px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-transform: capitalize;
    border-bottom: 3px solid #333;
}

/* Location Category Grouping */
.location-products-group {
    margin-bottom: 60px;
}

.location-category-heading {
    font-size: 42px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 30px;
    padding-bottom: 10px;
    text-transform: capitalize;
    border-bottom: 2px solid #e74c3c;
}

/* Products Container */
.menu-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-products-list {
    background: transparent;
}

/* Individual Product Item - Menu Style */
.menu-product-item {
    display: grid;
    grid-template-columns: 280px 1fr 180px;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 2px solid #ffffff;
    align-items: center;
    background: transparent;
    max-width: 100%;
}

.menu-product-item:first-child {
    border-top: 2px solid #ccc;
}

.menu-product-item:last-child {
    border-bottom: 2px solid #333;
}

/* Product Name */
.menu-product-name h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
    text-transform: capitalize;
}

/* Product Description */
.menu-product-description {
    padding: 0 20px;
}

.menu-product-description p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

/* Price and Add to Cart Column */
.menu-product-price-cart {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Product Price */
.menu-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: right;
}

.menu-product-price .woocommerce-Price-amount {
    font-size: 18px;
}

/* Quantity and Add to Cart Section */
.menu-cart-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.menu-qty-minus,
.menu-qty-plus {
    background: #f5f5f5;
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    line-height: 1;
}

.menu-qty-minus:hover,
.menu-qty-plus:hover {
    background: #c0392b;
    color: white;
}

.menu-qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

.menu-qty-input::-webkit-outer-spin-button,
.menu-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

/* Add to Cart Button */
.menu-add-button {
    background: transparent;
    color: #c0392b;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: right;
    white-space: nowrap;
}

.menu-add-button:hover {
    color: #a02818;
    background: transparent;
}

/* Hide default WooCommerce elements */
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-pagination,
.woocommerce-breadcrumb {
    display: none;
}

/* Archive Description */
.woocommerce-archive-description {
    margin-bottom: 30px;
    text-align: center;
}

.woocommerce-archive-description p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Products Header */
.woocommerce-products-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Category Page Specific */
.woocommerce-products-header .term-description {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
}

/* Ensure content containment on all pages */
.woocommerce-content {
    max-width: 100%;
    overflow-x: hidden;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .menu-products-container {
        padding: 0 15px;
    }
    
    .menu-product-item {
        grid-template-columns: 220px 1fr 150px;
        gap: 25px;
    }
    
    .menu-product-name h2 {
        font-size: 28px;
    }
    
    .menu-product-description p {
        font-size: 18px;
    }
    
    .menu-category-title {
        font-size: 48px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 200px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .site-header {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        gap: 20px;
    }
    
    .site-logo {
        flex: 0 0 200px;
        max-width: 200px;
        order: 1;
    }
    
    .location-item {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .location-left {
        order: 2;
    }
    
    .location-right {
        order: 3;
    }
    
    .location-item h3 {
        font-size: 18px;
    }
    
    .location-item .phone {
        font-size: 20px;
    }
    
    .main-navigation {
        margin: 15px 0;
        padding: 10px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .main-navigation a {
        font-size: 24px;
        padding: 8px 15px;
    }
    
    .main-content {
        margin: 15px;
        padding: 20px 15px;
        max-width: 100%;
    }
    
    /* WooCommerce Responsive */
    .menu-products-container {
        padding: 0 10px;
    }
    
    .menu-category-title {
        font-size: 36px;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
    
    .location-category-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .location-products-group {
        margin-bottom: 40px;
    }
    
    .menu-product-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }
    
    .menu-product-name h2 {
        font-size: 26px;
        text-align: left;
    }
    
    .menu-product-description {
        padding: 0;
    }
    
    .menu-product-description p {
        font-size: 18px;
        line-height: 1.7;
        text-align: left;
    }
    
    .menu-product-price-cart {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }
    
    .menu-product-price {
        font-size: 20px;
    }
    
    .menu-cart-form {
        align-items: flex-start;
        width: 100%;
    }
    
    .quantity-wrapper {
        justify-content: flex-start;
    }
    
    .menu-add-button {
        font-size: 16px;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .site-footer {
        padding: 15px 20px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .site-logo {
        flex: 0 0 180px;
        max-width: 180px;
    }
    
    .main-navigation a {
        font-size: 20px;
    }
    
    .menu-category-title {
        font-size: 28px;
    }
    
    .location-category-heading {
        font-size: 26px;
    }
    
    .menu-product-name h2 {
        font-size: 22px;
    }
    
    .menu-product-description p {
        font-size: 16px;
    }
    
    .menu-product-price {
        font-size: 18px;
    }
    
    .menu-add-button {
        font-size: 16px;
        padding: 6px 12px;
    }
}

/* ============================================
   CUSTOM PAGE TEMPLATES STYLING
   ============================================ */

/* HOME PAGE TEMPLATE */
.home-page {
    text-align: center;
}

.hero-section {
    padding: 60px 20px;
    margin-bottom: 40px;
}

.hero-slogan {
    font-size: 72px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 24px;
    color: #555;
    font-style: italic;
}

.welcome-section {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px 20px;
}

.welcome-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
}

.welcome-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Featured Items Section */
.featured-section {
    padding: 40px 20px;
    margin-bottom: 40px;
}

.featured-section h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-item {
    text-align: center;
}

.featured-placeholder {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    border: 3px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.placeholder-text {
    color: #999;
    font-size: 16px;
    font-weight: 600;
}

.featured-item h3 {
    font-size: 24px;
    color: #c0392b;
    margin-bottom: 10px;
}

.featured-item p {
    font-size: 16px;
    color: #666;
}

/* Call to Action Section */
.cta-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 20px;
    margin-top: 60px;
    border-radius: 15px;
}

.cta-section h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 40px;
}

.cta-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-location h3 {
    font-size: 28px;
    color: #c0392b;
    margin-bottom: 15px;
}

.cta-location p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #c0392b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #a02818;
}

/* ABOUT US PAGE TEMPLATE */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 56px;
    color: #333;
}

.fresh-philosophy {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 60px;
}

.fresh-tagline {
    margin-bottom: 30px;
}

.fresh-main {
    font-size: 48px;
    font-weight: 700;
    color: #c0392b;
    line-height: 1.3;
    margin-bottom: 20px;
}

.fresh-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Three Pillars Section */
.fresh-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 20px;
    margin-bottom: 60px;
}

.pillar {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

.pillar-icon {
    margin-bottom: 20px;
}

.icon-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #c0392b;
    border-radius: 50%;
    font-size: 40px;
}

.pillar h3 {
    font-size: 28px;
    color: #c0392b;
    margin-bottom: 20px;
}

.pillar p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Our Story Section */
.our-story {
    padding: 40px 20px;
    margin-bottom: 60px;
}

.our-story h2 {
    font-size: 42px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    text-align: center;
}

.placeholder-box {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    border: 3px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quality Promise Section */
.quality-promise {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    text-align: center;
}

.quality-promise h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
}

.promise-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.promise-list li {
    font-size: 18px;
    line-height: 2;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.promise-list li:last-child {
    border-bottom: none;
}

.promise-list li strong {
    color: #c0392b;
    font-weight: 700;
}

/* COMMUNITY PAGE TEMPLATE */
.community-page {
    max-width: 1200px;
    margin: 0 auto;
}

.community-hero {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.community-hero h1 {
    font-size: 56px;
  color: #c0392b;
    margin-bottom: 15px;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 800px;
    height: 350px;
    object-fit: fit;
    border-radius: 10px;
    display: block;
    margin: 20px auto 0;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.community-intro {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.community-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Gallery Section */
.community-gallery {
    padding: 40px 20px;
}

.community-gallery h2 {
    font-size: 42px;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    text-align: center;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-caption {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

/* Community CTA */
.community-cta {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-top: 60px;
}

.community-cta h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
}

.community-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.social-placeholders {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: inline-block;
    padding: 12px 30px;
    background: #c0392b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.social-link:hover {
    background: #a02818;
}

/* RESPONSIVE DESIGN FOR CUSTOM PAGES */
@media (max-width: 768px) {
    .hero-slogan {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-locations {
        grid-template-columns: 1fr;
    }
    
    .fresh-main {
        font-size: 32px;
    }
    
    .fresh-pillars {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .placeholder-box {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .social-placeholders {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
    }
    
    .hero-image-placeholder {
        height: 250px;
    }
}

/* ============================================
   LOCATIONS PAGE TEMPLATE STYLING
   ============================================ */

.locations-page {
    max-width: 1400px;
    margin: 0 auto;
}

.locations-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.locations-page .page-title {
    font-size: 56px;
    color: #c0392b;
    font-weight: 700;
    margin-bottom: 15px;
}

.locations-page .page-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

/* Locations Container */
.locations-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

/* Location Card */
.location-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Location Image */
.location-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.drive-thru-badge {
    background: #27ae60;
    color: white;
}

.open-seven-days-badge {
    background: #3498db;
    color: white;
}

/* Location Details */
.location-details {
    padding: 40px;
}

.location-name {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 3px solid #c0392b;
    padding-bottom: 15px;
}

/* Info Grid */
.location-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-section h3 {
    font-size: 22px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-section .address {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.directions-btn {
    display: inline-block;
    background: #c0392b;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.directions-btn:hover {
    background: #a02818;
    transform: translateX(5px);
}

.phone-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #c0392b;
    text-decoration: none;
    margin-bottom: 8px;
}

.phone-number:hover {
    color: #a02818;
}

.call-note {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

/* Hours Section */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
}

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

.hours-list .day {
    font-weight: 600;
    color: #333;
}

.hours-list .time {
    color: #555;
}

.hours-list li.closed .time {
    color: #e74c3c;
    font-weight: 700;
}

.special-note {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.special-note.open-note {
    background: #d4edda;
    color: #155724;
}

/* Features Section */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    font-size: 17px;
    color: #555;
}

/* Location Map */
.location-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
}

/* Locations Footer */
.locations-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 40px;
}

.footer-section h3 {
    font-size: 24px;
    color: #c0392b;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Responsive Design for Locations Page */

@media (max-width: 1024px) {
    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .locations-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .locations-page .page-title {
        font-size: 42px;
    }
    
    .locations-page .page-subtitle {
        font-size: 18px;
    }
    
    .location-image {
        height: 250px;
    }
    
    .location-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .location-details {
        padding: 25px 20px;
    }
    
    .location-name {
        font-size: 32px;
    }
    
    .location-info-grid {
        gap: 20px;
    }
    
    .info-section h3 {
        font-size: 20px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .locations-footer {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .locations-page .page-title {
        font-size: 32px;
    }
    
    .locations-page .page-subtitle {
        font-size: 16px;
    }
    
    .location-image {
        height: 200px;
    }
    
    .location-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .location-name {
        font-size: 28px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .directions-btn {
        width: 100%;
        text-align: center;
    }
}
