/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6; /* Very light background */
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styling */
.header {
    background-color: #2c3e50; /* Charcoal Gray - Professional and dark */
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header h1 {
    margin: 10px 0 5px 0;
    font-size: 2.5em;
    font-weight: 700;
}

.header .tagline {
    font-size: 1.1em;
    font-weight: 300;
}

/* Avatar Styles */
.avatar-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 0 0 3px #95a5a6; /* Light gray ring */
}

/* Main Content Container */
.container {
    max-width: 1200px; /* Increased width to accommodate 3 columns */
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three columns for content */
    gap: 30px;
}

/* Profile and Information Cards */
.profile-card, .location-card, .skills-card, .aviation-card, .birthday-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.profile-card:hover, .location-card:hover, .skills-card:hover, .aviation-card:hover, .birthday-card:hover {
    transform: translateY(-5px);
}

.profile-card h2, .location-card h2, .skills-card h2, .aviation-card h2, .birthday-card h2 {
    color: #2c3e50; /* Charcoal Gray heading color */
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.info-group {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.info-group:last-child {
    border-bottom: none;
}

.label {
    font-weight: 400;
    color: #555;
}

.value {
    font-weight: 700;
    color: #2c3e50; /* Charcoal Gray value color */
}

.link-value a {
    color: #3498db; /* Clear blue for links */
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.link-value a:hover {
    color: #2c3e50;
    text-decoration: underline;
}

/* Skills/Project List Styling */
.skill-list, .project-list {
    list-style: none;
    padding: 0;
}

.skill-list li {
    background: #ecf0f1; /* Light gray background for items */
    margin-bottom: 8px;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    color: #34495e;
}

/* Location Specific Note */
.note {
    background-color: #ecf0f1; /* Light gray background */
    border-left: 5px solid #95a5a6; /* Accent gray */
    padding: 15px;
    margin-top: 20px;
    font-style: italic;
    color: #34495e;
    border-radius: 4px;
}

/* Birthday Countdown Styling - Spans two columns now */
.birthday-card {
    grid-column: 2 / 4; 
    text-align: center;
}

.countdown {
    margin-top: 20px;
    padding: 15px;
    background-color: #fcf8e3; /* Soft yellow for attention */
    border: 1px solid #f9e2ae;
    border-radius: 8px;
}

.timer-label {
    display: block;
    font-size: 1em;
    color: #444;
    margin-bottom: 5px;
}

.timer-value {
    font-size: 2.5em;
    font-weight: 700;
    color: #e67e22; /* Orange for emphasis */
    letter-spacing: 2px;
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 0.9em;
    margin-top: 40px;
}

/* Responsive Design for smaller screens */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr; /* Stack content vertically on smaller screens */
    }

    /* Cards span full width */
    .birthday-card, .location-card, .skills-card, .aviation-card {
        grid-column: 1 / 2;
    }
}
