.no-border-shadow .card-title {
    margin-bottom: 0 !important;
}

:root {
    --nevada-blue: #25408F;
    --nevada-blue-light: rgba(37,64,143,0.1);
    --nevada-blue-dark: #1a2d66;
    --nevada-light-yellow: #f9d173;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-gray: #e9ecef;
    --warning-orange: #f39c12;
    --vegas-accent: #b8860b;
}

body {
    font-family: "verdana-pro", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-gray);
}

a.btn:link, a.btn:visited {
    color: white;
}

a.btn:hover {
    color: #1B2F5A;
}

a.btn {
    margin: .5rem;
    border-color: #1B2F5A;
}

.btn-primary {
    background-color: #1B2F5A;
    color: white;
}

    .btn-primary:hover {
        background-color: white;
        color: #1B2F5A;
        border: 1px solid #1B2F5A;
    }

/* Custom alert styling - extends Bootstrap alert */
.announcement-item {
    border-left: 6px solid var(--warning-orange);
    border-top: 1px solid rgba(243,156,18,0.3);
    border-right: 1px solid rgba(243,156,18,0.3);
    border-bottom: 1px solid rgba(243,156,18,0.3);
    position: relative;
    overflow: hidden;
    background: #fff;
}

    .announcement-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--warning-orange);
        pointer-events: none;
    }

.announcement-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

    .announcement-title span {
        font-size: 1.4rem;
        color: var(--warning-orange);
    }

@keyframes grow {
    from {
        width: 0;
    }

    to {
        width: 75%;
    }
}

/* Location selector */
.location-selector {
    display: flex;
    justify-content: center;
    background: var(--white);
    border-radius: 50px;
    padding: .25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    width: 400px;
    margin: 3rem auto 0;
    gap: .5rem;
}

.location-btn {
    flex: 1;
    padding: .9rem 1.4rem;
    border: none;
    background: transparent !important;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-size: .95rem;
    position: relative;
    color: #7f8c8d !important;
}

    .location-btn.carson {
        color: #7f8c8d !important;
        background: transparent !important;
    }

    .location-btn.vegas {
        color: #7f8c8d !important;
        background: transparent !important;
    }

    .location-btn.active.carson {
        background: var(--nevada-light-yellow) !important;
        color: #2c3e50 !important;
        box-shadow: 0 2px 8px rgba(249,209,115,0.4) !important;
    }

    .location-btn.active.vegas {
        background: var(--vegas-accent) !important;
        color: white !important;
        box-shadow: 0 2px 8px rgba(184,134,11,0.4) !important;
    }

    .location-btn:hover:not(.active) {
        color: #5a6c7d !important;
        background: rgba(127,140,141,0.1) !important;
    }

/* Sections */
.location-section {
    display: none;
    animation: fade .4s ease;
}

    .location-section.active {
        display: block;
    }

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Café Spotlight */
.cafe-spotlight {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

    .cafe-spotlight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--nevada-light-yellow);
    }

    .cafe-spotlight.carson {
        border-color: var(--light-yellow);
    }

    .cafe-spotlight.vegas {
        border-color: var(--mustard-yellow);
    }

.cafe-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.cafe-info h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: .35rem;
}

.cafe-info .cafe-icon {
    font-size: 2rem;
    margin-right: .65rem;
}

.cafe-location {
    color: var(--text-light);
    font-weight: 500;
}
/* Custom button styling - extends Bootstrap btn */
.order-btn:hover {
    /* Remove green background and box-shadow for order buttons */
    background: inherit !important;
    box-shadow: none !important;
    transform: translateY(-2px);
}

.cafe-details {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.cafe-detail-item {
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: .9rem;
}

    .cafe-detail-item strong {
        display: block;
        color: var(--nevada-blue);
        margin-bottom: .25rem;
    }

/* Custom button classes and hover fixes */
.btn-carson-active {
    background: var(--light-yellow) !important;
    color: black !important;
    border: none;
    border-radius: 40px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
}

.btn-vegas-active {
    background: var(--mustard-yellow) !important;
    color: white !important;
    border: none;
    border-radius: 40px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
}

.btn-location-rounded {
    border-radius: 40px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
}

.order-btn-carson {
    background: var(--nevada-light-yellow);
    color: black !important;
    border: none;
}

.order-btn-vegas {
    background: var(--vegas-accent);
    color: white !important;
    border: none;
}

.order-btn-carson:hover {
    background: var(--light-yellow) !important;
    color: black !important;
    filter: brightness(0.95);
    box-shadow: 0 2px 8px rgba(249,209,115,0.4) !important;
}

.order-btn-vegas:hover {
    background: #e0b200 !important;
    color: white !important;
    filter: brightness(0.95);
    box-shadow: 0 2px 8px rgba(184,134,11,0.4) !important;
}

/* Custom button classes to replace repeated inline styles */
.btn-carson-active {
    background: var(--light-yellow) !important;
    color: black !important;
    border: none;
    border-radius: 40px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
}

.btn-vegas-active {
    background: var(--mustard-yellow) !important;
    color: white !important;
    border: none;
    border-radius: 40px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
}

.btn-location-rounded {
    border-radius: 40px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
}

.order-btn-carson {
    background: var(--nevada-light-yellow);
    color: black !important;
    border: none;
}

.order-btn-vegas {
    background: var(--vegas-accent);
    color: white;
    border: none;
}

/* Building cards (from v1) - leveraging style guide classes */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%;
    box-sizing: border-box;
}

    .location-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,.15);
    }

.card-header {
    background: var(--nevada-blue);
    color: var(--white);
    padding: 1.5rem;
    position: relative;
    height: 154px;
}
/* .card-header::after {
        content:'';
        position:absolute;
        bottom:0; left:0; right:0;
        height:4px;
        background:var(--nevada-light-yellow);
    } */
.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}

.card-address {
    opacity: .9;
    font-size: .95rem;
    color: #ddd;
}

.card-content {
    padding: 1.5rem;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--nevada-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.info-section {
    margin-bottom: 1.5rem;
}

    .info-section:last-child {
        margin-bottom: 0;
    }

.section-title {
    color: var(--nevada-blue);
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.contact-info {
    background: var(--nevada-blue-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
    font-size: .9rem;
}

    .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact-item i {
        color: var(--nevada-blue);
        width: 20px;
        margin-right: .5rem;
        flex-shrink: 0;
    }

    .contact-item a {
        color: var(--nevada-blue);
        text-decoration: none;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }

.policy-notice {
    background: var(--warning-orange);
    color: var(--white);
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

    .policy-notice i {
        margin-top: .1rem;
        flex-shrink: 0;
    }

.info-list {
    list-style: none;
    padding-left: 0;
}

    .info-list li {
        padding: .3rem 0;
        border-bottom: 1px solid var(--border-gray);
        font-size: .9rem;
    }

        .info-list li:last-child {
            border-bottom: none;
        }
/* Custom badge styling to override Bootstrap where needed */
.badge.highlight {
    background: var(--warning-orange) !important;
    color: var(--white) !important;
}

.accessibility-section {
    background: var(--nevada-blue-light);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: .9rem;
}

.accessibility-title {
    color: var(--nevada-blue);
    font-weight: 600;
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
}

    .accessibility-title::before {
        content: '♿';
        margin-right: .5rem;
        font-size: 1.2em;
    }
/* Custom floor navigation buttons */
.floor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0 .25rem;
}

.floor-btn {
    background: var(--white);
    border: 2px solid var(--nevada-blue);
    color: var(--nevada-blue);
    padding: .45rem .9rem;
    border-radius: 25px;
    font-size: .75rem;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

    .floor-btn:hover,
    .floor-btn.active {
        background: var(--nevada-blue);
        color: var(--white);
    }

/* Floor Plans */
.floor-content {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    animation: fadeIn .3s ease;
}

    .floor-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.floor-section {
    text-align: center;
    margin-bottom: 1rem;
}

.floor-image {
    margin-bottom: 1rem;
}

    .floor-image a {
        display: inline-block;
        text-decoration: none;
        transition: .3s;
    }

        .floor-image a:hover {
            transform: scale(1.05);
        }

    .floor-image img {
        width: 150px;
        height: 150px;
        border-radius: 12px;
        border: 3px solid var(--border-gray);
        transition: .3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .floor-image a:hover img {
        border-color: var(--nevada-blue);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .floor-image .floor-link {
        display: block;
        margin-top: .5rem;
        color: var(--nevada-blue);
        font-size: .85rem;
        font-weight: 500;
    }

.floor-info {
    text-align: left;
    font-size: .9rem;
    line-height: 1.5;
}

    .floor-info p {
        margin-bottom: .75rem;
    }

    .floor-info strong {
        color: var(--nevada-blue);
        font-weight: 600;
    }

/* Quick Reference Hover Effects */
.quick-ref-link:hover {
    background: var(--nevada-blue-light) !important;
    transform: translateX(4px);
}

/* Custom modal styling - extends Bootstrap modal */
.modal.show {
    display: block;
}

/* Parking image styles */
.parking-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

    .parking-image:hover {
        transform: scale(1.02);
    }

/* Zoom functionality */
.zoom-within-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .zoom-within-container input[type="checkbox"] {
        display: none;
    }

        .zoom-within-container input[type="checkbox"]:checked + label img {
            transform: scale(2);
            cursor: zoom-out;
        }

    .zoom-within-container label {
        display: block;
        cursor: zoom-in;
    }

        .zoom-within-container label img {
            transition: transform .3s ease;
            width: 100%;
            height: auto;
        }




/* Breadcrumb styles now handled by lcb-breadcrumb component */

@media (max-width:768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .cafe-details {
        grid-template-columns: 1fr;
    }

    .cafe-info h3 {
        font-size: 1.3rem;
    }
}
