/* Single Branch Template Styles */

.branch-single {
    max-width: 1200px;
    min-height: 100vh;
    margin: 24px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
}

.branch-single h1 {
    font-family: 'Glober', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.branch-address {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #34495e;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
}

.branch-address strong {
    color: #2c3e50;
    font-weight: 600;
}

.branch-single p em {
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    display: block;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 6px;
    margin: 20px 0;
}

/* Branch Hours Styling */
.branch-hours-section {
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #27ae60;
}

.branch-hours-section h3 {
    font-family: 'Glober', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #27ae60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* Status Indicator Styling */
.status-indicator {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.status-indicator.open {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: 2px solid #27ae60;
}

.status-indicator.closed {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 2px solid #e74c3c;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

.hours-list {
    display: grid;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.hours-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hours-item .day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    min-width: 100px;
}

.hours-item .time {
    color: #27ae60;
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .branch-single {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .branch-single h1 {
        font-size: 2rem;
    }
    
    .branch-address {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .branch-hours-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .branch-hours-section h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .status-indicator {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .hours-item {
        padding: 10px 12px;
    }
    
    .hours-item .day {
        min-width: 80px;
        font-size: 0.95rem;
    }
    
    .hours-item .time {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .branch-single h1 {
        font-size: 1.8rem;
    }
    
    .branch-address {
        font-size: 1rem;
        padding: 12px;
    }
    
    .branch-hours-section {
        padding: 15px;
    }
    
    .branch-hours-section h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .status-indicator {
        font-size: 0.7rem;
        padding: 4px 8px;
        align-self: flex-start;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hours-item .day {
        min-width: auto;
    }
}