/* Brand page specific styles */

/* Logo showcase */
.logo-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.logo-variant {
    width: 100%;
}

.logo-bg {
    padding: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-bg img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-bg-light {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.logo-bg-dark {
    background-color: #0c1a50;
}

.variant-label {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: rgb(95, 124, 145);
}

/* Colour palette */
.colour-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.colour-swatch {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.swatch {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.colour-info {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.colour-name {
    font-weight: bold;
    color: rgb(33, 50, 96);
    font-size: 16px;
}

.colour-hex {
    font-family: monospace;
    font-size: 14px;
    color: rgb(95, 124, 145);
}

.colour-rgb {
    font-size: 12px;
    color: rgb(140, 160, 175);
}

/* Gradient showcase */
.gradient-showcase {
    margin-top: 30px;
    margin-bottom: 40px;
}

.gradient-bar {
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(to right, #5db1ff, #9f72e1, #f659a8, #e1c631);
}

.gradient-label {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: rgb(95, 124, 145);
}

/* Typography */
.typography-sample {
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.type-example {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.type-label {
    font-size: 14px;
    color: rgb(140, 160, 175);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.type-font {
    display: block;
}

/* Headings with gradient underline */
h2 {
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #5db1ff, #9f72e1, #f659a8, #e1c631) 1;
    padding-bottom: 10px;
}

h3 {
    font-size: 24px;
    font-family: "Sen", serif;
    color: rgb(33, 50, 96);
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Download section */
.download-section {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.download-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(to right, #5db1ff, #9f72e1);
    color: white;
    font-family: "Sen", serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 177, 255, 0.3);
}

.download-info {
    margin-top: 15px;
    font-size: 14px;
    color: rgb(140, 160, 175);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-showcase {
        grid-template-columns: 1fr;
    }

    .colour-grid {
        justify-content: center;
    }

    .colour-swatch {
        min-width: 140px;
    }
}
