/* ==========================================
   1. GLOBAL STYLES (Shared across all pages)
   ========================================== */
html {
    /* The default browser size is 16px. 
       Bumping this to 18px scales UP all Tailwind text, margins, and padding proportionally! 
       Try 18px, 19px, or 20px until it looks perfect for you. */
    font-size: 19px; 
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================
   2. HOMEPAGE STYLES (index.html)
   ========================================== */
.hero-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80') center/cover;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   3. HERITAGE PAGE STYLES (heritage.html)
   ========================================== */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #bfdbfe;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 2rem;
    }
}