﻿:root {
    --primary-color: #680114; /* Your signature maroon */
    --accent-color: #e1b52f;  /* Gold/Yellow accent */
    --text-color: #333;
    --bg-color: #fcf9f2;      /* Soft cream background */
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styling */
.main-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.brand h1 { margin: 0; font-size: 2rem; }
.tagline { font-style: italic; color: var(--accent-color); margin: 5px 0; }

.contact-info {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
}

.contact-info a { color: white; text-decoration: none; border-bottom: 1px solid var(--accent-color); }

/* Main Layout */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns on desktop */
}

/* Responsiveness for Mobile */
@media (max-width: 768px) {
    .location-card { grid-template-columns: 1fr; }
}

.location-details { padding: 30px; }

.heading { color: var(--primary-color); margin-top: 0; border-bottom: 2px solid var(--accent-color); display: inline-block; }

/* Hours of Operation - matches Price List layout */
.hours ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    width: 100%;
}

.hours li span:first-child {
    color: var(--primary-color);
    font-size: 14px;
}

.hours li span:last-child {
    color: var(--text-color);
    background: #fdf5e6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Updated Price List for Mobile Visibility */
.price-list ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-list li {
    display: flex;             /* Keeps name and price on the same line */
    justify-content: space-between; /* Pushes name to left, price to right */
    align-items: center;
    padding: 12px 0;           /* Increased padding for easier reading on mobile */
    border-bottom: 1px solid #eee;
    font-weight: bold;
    width: 100%;               /* Ensures it takes up the full width of the card */
}

.price-list li span:first-child {
    color: var(--primary-color);
    font-size: 14px;           /* Slightly smaller font to ensure fit */
    text-transform: uppercase;
}

.price-list li span:last-child {
    color: var(--text-color);
    background: #fdf5e6;       /* Subtle highlight for the price */
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #eee;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

.map-container {
    background: #eee;
    display: flex;
}

/* Logo Alignment Fix */
.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 100%;
    max-width: 400px; /* Larger on desktop for a prominent look */
    height: auto;
    border-radius: 0;
}

/* Floating Call Button - Mobile Only */
.mobile-call-button {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Green for 'Action' */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-call-button {
        display: block; /* Shows only on mobile devices */
    }

    .logo-img {
        max-width: 200px;
    }

    /* Prevent the iframe's fixed width from expanding the grid track */
    .location-details,
    .map-container {
        min-width: 0;
    }

    /* Make the map iframe responsive */
    .map-container iframe {
        width: 100%;
        height: 300px;
    }

    /* New mobile fixes for hours */
    .hours {
        padding: 0 10px;
    }

    .hours li {
        flex-wrap: nowrap;
        padding: 10px 0;
    }

    .hours li span:first-child {
        font-size: 12px;
        flex: 1;
    }

    .hours li span:last-child {
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
        padding: 2px 6px;
    }

    /* New mobile fixes for price list */
    .price-list li {
        flex-wrap: nowrap;
        padding: 10px 0;
    }

    .price-list li span:first-child {
        font-size: 12px;
        flex: 1;
    }

    .price-list li span:last-child {
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
        padding: 2px 6px;
    }

    .price-list {
        padding: 0 10px;
    }
}

    




