/* ================================================
   HERO SHARED STYLES - hero-shared-styles.css
   LogicalCity Website
================================================ */

/* --- OVERLAP SECTION --- */
.overlap-section {
    position: relative;
    z-index: 20;
    background: #f8f9fa;
}

/* --- PAGE HERO OVERLAP --- */
.page-hero {
    padding-bottom: 5rem !important;
    position: relative;
}

.main-content-wrapper {
    margin-top: -5rem;
    position: relative;
    z-index: 20;
}



/* --- UTILITY CLASSES --- */
.text-gold { color: #C5A059 !important; }
.text-dark-green { color: #1a3a2a !important; }
.bg-dark-green { background-color: #1a3a2a !important; }
.bg-gold { background-color: #C5A059 !important; }
.font-heading { font-family: 'Playfair Display', serif; }

.divider {
    width: 60px;
    height: 3px;
    background-color: #C5A059;
}

.letter-spacing-3 { letter-spacing: 3px; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff !important;
}

.back-to-top.visible {
    display: flex;
}
.back-to-top:hover {
    background-color: #b8903a;
    transform: scale(1.1);
    color: black;
}

/* --- OVERLAY (Hero video overlay) --- */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* --- SCROLL DOWN INDICATOR --- */
.scroll-down-indicator {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* --- HOVER GOLD TRANSITION --- */
.hover-gold { transition: color 0.3s ease; }
.hover-gold:hover { color: #C5A059 !important; }

/* --- SOCIAL ICONS --- */
.social-icons a {
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    color: #C5A059 !important;
    transform: translateY(-3px);
}

.navbar-nav .nav-link {
    position: relative;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase; /* ADD THIS */
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}