/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #e74c3c;
}

.resume-btn {
    background-color: #e74c3c;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.resume-btn:hover {
    background-color: #c0392b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight {
    color: #f39c12;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.athlete-placeholder {
    width: 300px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.athlete-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #f39c12;
    color: white;
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #e74c3c;
}

.btn-outline {
    background-color: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background-color: #e74c3c;
    color: white;
}

/* Sections */
.quick-stats {
    padding: 80px 0;
    background-color: white;
}

.quick-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.stat-card-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Recent Achievements */
.recent-achievements {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.recent-achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.achievement-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.achievement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.achievement-type {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Personal Records */
.personal-records {
    padding: 80px 0;
    background-color: white;
}

.personal-records h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.record-category {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.record-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.record-category i {
    margin-right: 1rem;
    color: #e74c3c;
}

.record-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.record-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 5px;
    align-items: center;
}

.distance {
    font-weight: bold;
    color: #2c3e50;
}

.time {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
}

.date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Timeline */
.championships {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.championships h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #e74c3c;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    background-color: #e74c3c;
    border-radius: 50%;
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.award-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
    color: white;
}

.award-type.championship {
    background-color: #f39c12;
}

.award-type.qualifier {
    background-color: #3498db;
}

.award-type.recognition {
    background-color: #2ecc71;
}

.award-type.leadership {
    background-color: #9b59b6;
}

/* Progress Charts */
.season-progress {
    padding: 80px 0;
    background-color: white;
}

.season-progress h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.progress-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.chart-container {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.chart-placeholder {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 200px;
    background-color: white;
    border-radius: 5px;
    padding: 1rem;
}

.chart-bar {
    width: 60px;
    background-color: #e74c3c;
    border-radius: 5px 5px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
}

.bar-label {
    margin-bottom: 0.5rem;
}

.bar-date {
    font-size: 0.8rem;
    color: #2c3e50;
    margin-top: 0.5rem;
}

/* Academic Sections */
.academic-overview {
    padding: 80px 0;
    background-color: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.gpa-display,
.rank-display,
.honor-display {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 1rem 0;
}

/* Course Load */
.course-load {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.course-load h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.course-category {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
}

.course-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.course-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.course-name {
    font-weight: 500;
    color: #2c3e50;
}

.course-grade {
    font-weight: bold;
    color: #e74c3c;
}

/* Test Scores */
.test-scores {
    padding: 80px 0;
    background-color: white;
}

.test-scores h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.score-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.score-card h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-radius: 5px;
}

.score-label {
    font-weight: 500;
    color: #2c3e50;
}

.score-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

/* Academic Interests */
.academic-interests {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.academic-interests h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.interest-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.interest-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.interest-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Academic Awards */
.academic-awards {
    padding: 80px 0;
    background-color: white;
}

.academic-awards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.award-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.award-icon {
    font-size: 2rem;
    color: #e74c3c;
    margin-right: 2rem;
}

.award-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.award-year {
    font-weight: bold;
    color: #e74c3c;
}

/* Gallery */
.gallery-filters {
    padding: 40px 0;
    background-color: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #f8f9fa;
    color: #2c3e50;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #e74c3c;
    color: white;
}

.photo-gallery {
    padding: 40px 0 80px;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.photo-placeholder {
    height: 250px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #e74c3c;
    position: relative;
    overflow: hidden;
}

.photo-container {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-photo:hover {
    transform: scale(1.05);
}

.headshot-photo {
    width: 150px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-placeholder:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.upload-notice {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.notice-content {
    max-width: 600px;
    margin: 0 auto;
}

.notice-content i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.notice-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Contact */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-method i {
    font-size: 2rem;
    color: #e74c3c;
    margin-right: 1.5rem;
}

.method-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.method-info p {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.method-info span {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.quick-stats {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.quick-stats h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.quick-stats ul {
    list-style: none;
}

.quick-stats li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.recruiting-timeline {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.recruiting-timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.timeline-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.coach-resources {
    padding: 80px 0;
    background-color: white;
}

.coach-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.resource-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Resume */
.resume-actions {
    padding: 40px 0;
    background-color: white;
}

.actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.resume-content {
    padding: 40px 0;
    background-color: white;
}

.resume-document {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.resume-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e74c3c;
}

.athlete-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.athlete-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.contact-info {
    display: flex;
    gap: 2rem;flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    color: #7f8c8d;
}

.contact-info i {
    margin-right: 0.5rem;
}

.athlete-photo {
    width: 150px;
    height: 200px;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #e74c3c;
}

.resume-section {
    margin-bottom: 3rem;
}

.resume-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.stat-label {
    font-weight: 500;
    color: #2c3e50;
}

.stat-value {
    font-weight: bold;
    color: #e74c3c;
}

.profile-summary {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    line-height: 1.7;
}

.records-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.award-year {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1rem;
}

.award-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.academic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.academic-details h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.academic-details ul {
    list-style: none;
    padding-left: 1rem;
}

.academic-details li {
    margin-bottom: 0.5rem;
    position: relative;
}

.academic-details li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: -1rem;
}

.season-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.season-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 5px;
    align-items: center;
}

.season-header {
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
}

.season-row:not(.season-header) {
    background-color: #f8f9fa;
}

.season-row:not(.season-header):hover {
    background-color: #ecf0f1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-column p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-section i {
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.no-print {
    @media print {
        display: none !important;
    }
}

/* Component placeholders */
#header-placeholder,
#footer-placeholder {
    display: block;
}

/* Print Styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: white;
    }

    .resume-document {
        box-shadow: none;
        padding: 0;
        max-width: none;
    }

    .resume-section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }

    .btn {
        display: none;
    }

    .contact-info {
        font-size: 10pt;
    }

    .photo-placeholder {
        border: 1px solid #ddd;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .records-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .scores-grid {
        grid-template-columns: 1fr;
    }

    .progress-charts {
        grid-template-columns: 1fr;
    }

    .resume-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .academic-grid {
        grid-template-columns: 1fr;
    }

    .records-table {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .season-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .season-row span {
        padding: 0.2rem 0;
    }

    .actions-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .record-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}