
.top-header {
    background-color: rgb(219, 215, 215); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icons  */
.gold-icon {
    color: #d4af37; 
    font-size: 1.1rem;
}

.header-text {
    font-size: 1rem; 
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

/* Social icons  */
.header-socials a {
    color: #d4af37; 
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
}

.header-socials a:hover {
    color: #b8962d; 
    transform: translateY(-2px);
}

/* Responsive*/
@media (max-width: 768px) {
    .top-header .container .d-flex {
        justify-content: center !important;
        gap: 15px;
    }
    .header-left-info {
        justify-content: center;
    }
    .header-socials {
        margin-top: 10px;
    }
}

body > i:first-child, 
body > b:first-child, 
body > span:first-child,
body > div:first-child:not(.reminder-container) { 
    display: none !important; 
}

@media (max-width: 768px) {
   
    .top-header .container .d-flex {
        justify-content: space-between !important; 
        align-items: center !important;
        flex-direction: row !important; 
        padding: 5px 0;
    }

   
    .header-left-info {
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    .header-text {
        font-size: 0.8rem !important;
        letter-spacing: 0;
    }

   
    .header-socials {
        margin-top: 0 !important; 
        display: flex !important;
        gap: 12px !important;
    }

    .header-socials a {
        font-size: 1.1rem !important;
    }

    .gold-icon {
        font-size: 0.9rem !important;
    }
}
