/* Brand Identity - Shine Beauty Parlour */
:root {
    --brand-gold: #D4AF37;
    --brand-nude: #F5E6E0;
    --brand-dark: #2C2C2C;
    --brand-white: #FFFFFF;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

.logo-icon {
    display: none;
    /* Hidden since we are using image */
}

.logo-text {
    display: none;
    /* Hidden since image contains text */
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-tagline {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--brand-gold);
    margin-top: 5px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Luxury Gold Shine Effect */
.text-shine {
    background: linear-gradient(to right, #D4AF37 20%, #FFF5D7 40%, #FFF5D7 60%, #D4AF37 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}