/*
 * CormackCoreWeb 2.0 - Custom Stylesheet
 * Author: Charlie - Cormack Advertising
 * Add your custom styles here
 */

/* Brochure Banner Styles */
.brochure-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.brochure-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brochure-banner-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 10px;
}

.brochure-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brochure-link svg {
    flex-shrink: 0;
}

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

    .brochure-banner-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .brochure-links {
        justify-content: center;
    }

    .brochure-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}
