:root {
    --silver: #C0C0C0;
    --dark-silver: #A9A9A9;
    --midnight-blue: #191970;
    --deep-blue: #000033;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Lora', serif;
}

body {
    background-color: var(--white);
    color: var(--midnight-blue);
    font-family: var(--font-serif);
    font-weight: 400;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;700&display=swap');

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--midnight-blue);
}

h1 strong {
    font-weight: 700;
    color: var(--dark-silver);
    background: linear-gradient(45deg, #7F7F7F, #E0E0E0, #7F7F7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    color: var(--midnight-blue);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--silver);
}

/* Components */
.silver-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 3rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(25, 25, 112, 0.05);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.silver-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--silver), var(--dark-silver), var(--silver));
}

.btn-silver {
    background: linear-gradient(45deg, var(--midnight-blue), var(--deep-blue));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 40px;
    border-radius: 0;
    border: 1px solid var(--midnight-blue);
    box-shadow: 0 5px 15px rgba(25, 25, 112, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
}

.btn-silver:hover {
    background: var(--white);
    color: var(--midnight-blue);
    border-color: var(--midnight-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 25, 112, 0.3);
    text-decoration: none;
}

/* Hero */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #f0f0f0, #ffffff);
}

#shimmerCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 30px;
}

.hero-border {
    padding: 20px;
    border: 1px solid var(--silver);
    position: relative;
    display: inline-block;
}

.hero-border::before,
.hero-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--midnight-blue);
    transition: all 0.5s ease;
}

.hero-border::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.hero-border::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.hero-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    /* Elegant B&W */
    transition: filter 0.5s;
}

.hero-photo:hover {
    filter: grayscale(0%);
}

/* Timeline vertical line override for silver theme if needed */
.list-unstyled .media {
    position: relative;
}

/* Audio */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-silver {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--silver);
    color: var(--midnight-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-music-silver:hover {
    background: var(--midnight-blue);
    color: var(--white);
    border-color: var(--midnight-blue);
}

/* Footer */
footer {
    background: var(--deep-blue);
    color: var(--silver);
    padding: 4rem 0;
}