/* Custom font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

/* Hero section fixed height */
section.h-\[80vh\] {
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
}

section.h-\[80vh\] > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Fixed header styling */
header {
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Container styling - removed max-width limit */
main {
    width: 100%;
}

/* Date display styling */
.date-display {
    margin-right: 2rem;
}

.text-9xl {
    font-size: 12rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

/* Real-time clock styling */
#current-time {
    font-family: 'Inter', monospace;
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

#current-time:hover {
    color: #000;
}

/* For creating visual sections in a full-width layout */
.max-w-screen-2xl {
    max-width: 1536px;
}

/* True full-width sections when needed */
.full-bleed {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* VC-style section styling */
.vc-section {
    background-color: #d0d2d5;
    padding: 3rem 0;
}

.vc-section h3 {
    font-weight: 400;
    letter-spacing: 0.02em;
}

.vc-section .big-statement {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.vc-section ul li {
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.vc-section .column-heading {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.vc-section .column-text {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Card hover effects */
.border-t-2:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Custom button styling */
.inline-flex {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-8xl {
        font-size: 7rem;
    }
    
    .date-display {
        margin-right: 0;
    }
    
    .vc-section .big-statement {
        font-size: 1.75rem;
    }
}

/* Article cards styling */
.article-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.article-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFF;
    transition: width 0.3s ease;
}

.article-card:hover::after {
    width: 100%;
}

.card-title {
    transition: color 0.3s ease;
}

.article-card:hover .card-title {
    color: #93C5FD; /* Light blue color on hover */
}

/* Improve background image quality */
.bg-center.bg-cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast; /* For Chrome */
    image-rendering: crisp-edges; /* Standard property */
    -ms-interpolation-mode: nearest-neighbor; /* For IE */
} 