/*
Theme Name: Dr. Alok Bhuwan Custom
Author: Alok Bhuwan
Description: Fresh, High-Performance, W3C Compliant.
Version: 3.0
*/

/* --- 1. GLOBAL RESET & FONTS --- */
:root {
    --primary: #d97706;
    --primary-dark: #b45309;
    --text-main: #374151;
    --text-light: #6b7280;
    --bg-light: #fffcf8;
}

* { box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --- 2. THE TIMELINE ENGINE (FRESH) --- */
.timeline-container {
    position: relative;
    padding: 20px 0;
    margin-left: auto;
    margin-right: auto;
}

/* This is the vertical line */
.timeline-line {
    position: absolute;
    left: 31px; /* Center of the dot */
    top: 0;
    bottom: 0; /* Stretches to the very end of the container */
    width: 2px;
    background: #e5e7eb; /* Light grey connecting line */
    z-index: 1;
}

/* Individual Timeline Item */
.timeline-item {
    position: relative;
    padding-left: 80px; /* Space for the dot and line */
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* The Dot */
.timeline-dot {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background-color: var(--primary);
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

/* --- 3. UI COMPONENTS --- */
.award-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 1.25rem;
    transition: all 0.4s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

/* WordPress Menu Styling */
.custom-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.95rem;
}

.custom-nav a:hover {
    color: var(--primary);
}