/* Moura Logo Styles */

/* Font Loading */
@font-face {
    font-family: 'Heavy Heap';
    src: url('../fonts/heavy_heap.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Almanach';
    src: url('../fonts/AlmanachTest-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Almanach';
    src: url('../fonts/AlmanachTest-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Main Moura Logo */
.moura-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.moura-cross-logo {
    width: 80px;
    height: 80px;
    position: relative;
    flex-shrink: 0;
}

.moura-cross-svg {
    width: 100%;
    height: 100%;
}

.cross-stroke {
    fill: none;
    stroke: #D05888;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cross-dot {
    fill: #D05888;
}

.moura-brand-text {
    font-family: 'Almanach', sans-serif !important;
    font-size: 4.5rem;
    font-weight: 500;
    color: #FAFAFA;
    margin: 0;
    line-height: 1;
}

/* Navigation Logo */
.navbar-moura-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-cross-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.navbar-cross-svg {
    width: 100%;
    height: 100%;
}

.navbar-cross-stroke {
    fill: none;
    stroke: #D05888;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.navbar-cross-dot {
    fill: #D05888;
}

.navbar-moura-text {
    font-family: 'Almanach', sans-serif !important;
    font-size: 1.6rem;
    font-weight: 500;
    color: #FAFAFA;
    text-decoration: none;
    line-height: 1;
}

.navbar-moura-text:hover {
    color: #FAFAFA;
    text-decoration: none;
}

/* Small Logo for Discovery Pages */
.discovery-moura-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.discovery-cross-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.discovery-moura-text {
    font-family: 'Almanach', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 500;
    color: #FAFAFA;
    line-height: 1;
}