/* ========== SLOGAN SLIDER ========== */
.slogan-slider {
    position: relative;
    height: 60px;
    margin: 30px 0 50px;
    overflow: hidden;
}

.slogan-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

.slogan-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== GLEAM TEXT EFFECT ========== */
.gleaming {
    display: inline-block;
    position: relative;
    /* Preserve all parent styles */
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.gleaming span {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    animation: gleamFadeIn 2s alternate infinite;
    /* Inherit all styles */
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    letter-spacing: inherit;
}

@keyframes gleamFadeIn {

    50%,
    100% {
        opacity: 1;
        filter: blur(0px);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

/* Legacy support for simple gleam-text class */
.gleam-text {
    position: relative;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(212, 175, 55, 1) 25%,
            rgba(255, 255, 255, 1) 50%,
            rgba(183, 110, 121, 1) 75%,
            rgba(255, 255, 255, 0.8) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gleamShine 4s linear infinite;
}

@keyframes gleamShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ========== CONTACT DETAILS ========== */
.contact-city {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--rose-gold);
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--black-soft);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    padding-left: 0;
}

.contact-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
}

.contact-link:hover {
    color: var(--rose-gold);
    padding-left: 20px;
}

.contact-link:hover::before {
    opacity: 1;
    left: 0;
}

/* ========== SCROLL TO SECTION BUTTON ========== */
.scroll-to-manifesto {
    cursor: pointer;
}

/* ========== RESPONSIVE UPDATES ========== */
@media (max-width: 768px) {
    .slogan-slider {
        height: 50px;
        margin: 20px 0 40px;
    }

    .slogan-text {
        font-size: 0.9rem;
    }

    .contact-details {
        gap: 6px;
    }

    .contact-link {
        font-size: 0.8rem;
    }
}