* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background: #0c0f20;
    min-height: 100vh;
    padding: 0;
    color: white;
    margin: 0;
    padding-top: 140px; /* Account for fixed header */
}

.container {
    max-width: 100%;
    margin: 0 auto;
    background: #0c0f20;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

header {
    background: white;
    color: #0c0f20;
    padding: 40px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    padding: 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

header.scrolled h1 {
    font-size: 2em;
    margin-bottom: 5px;
}

header.scrolled .subtitle {
    font-size: 0.95em;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.header-left {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
}

header.scrolled .header-logo {
    height: 45px;
}

header h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: none;
    transition: all 0.3s ease;
    color: #0c0f20;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.95;
    font-weight: 400;
    transition: all 0.3s ease;
    color: #0c0f20;
}

.main-nav {
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 0;
    border-bottom: none;
}

.nav-link {
    padding: 15px 30px;
    color: #0c0f20;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: none;
    position: relative;
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-link.active {
    text-decoration: underline;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-section {
    margin-bottom: 50px;
}

.profile-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.profile-image {
    flex-shrink: 0;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #0056b3;
}

.profile-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #0056b3;
    display: block;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #0c0f20;
    font-weight: 700;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.info-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.label {
    font-size: 0.9em;
    color: #0c0f20;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value {
    font-size: 1.4em;
    font-weight: 600;
    color: #0c0f20;
}

.value.highlight {
    color: #0c0f20;
    font-size: 1.6em;
}

.player-statement-section {
    margin-bottom: 50px;
}

.player-statement-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    font-weight: 700;
}

.statement-image {
    text-align: center;
    margin-bottom: 30px;
}

.swing-photo {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #0056b3;
}

.statement-content {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

.statement-content p {
    color: #0c0f20;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: left;
}

.statement-content p:last-child {
    margin-bottom: 0;
}

.details-section {
    margin-bottom: 50px;
}

.details-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    font-weight: 700;
}

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

.detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.detail-card:hover {
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.2);
    border-color: #0056b3;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.detail-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0c0f20;
}

.detail-card p {
    color: #0c0f20;
    line-height: 1.6;
}

.videos-cta-section {
    margin-bottom: 50px;
}

.videos-cta-content {
    background: #0c0f20;
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.videos-cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.videos-cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #003d7a;
}

.contact-section {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0c0f20;
    font-weight: 700;
}

.contact-section p {
    color: #0c0f20;
    font-size: 1.1em;
    line-height: 1.6;
}

.contact-email {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #003d7a;
    text-decoration: underline;
}

.email-reveal-link {
    color: #0056b3;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.email-reveal-link:hover {
    color: #003d7a;
}

.email-revealed {
    display: inline-block;
}

footer {
    background: #0c0f20;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Video Page Styles */
.videos-section {
    margin-bottom: 50px;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro h2 {
    font-size: 2em;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.2em;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.video-category-section {
    margin-bottom: 60px;
}

.video-category-section:last-child {
    margin-bottom: 30px;
}

.category-heading {
    font-size: 1.8em;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 3px solid white;
}

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

.video-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.video-card:hover {
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.3);
    border-color: #0056b3;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #f0f0f0;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4em;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.4em;
    color: #0c0f20;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-description {
    color: #0c0f20;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.video-link {
    display: inline-block;
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1em;
}

.video-link:hover {
    color: #003d7a;
    text-decoration: underline;
}

.add-video-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    color: #856404;
    margin-top: 30px;
}

.add-video-note p {
    margin: 0;
    font-size: 0.95em;
}

/* Schedule Page Styles */
.schedule-section {
    margin-bottom: 50px;
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    background: white;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.schedule-item:hover {
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.3);
    border-color: #0056b3;
    transform: translateY(-2px);
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 15px;
    background: #0056b3;
    color: white;
    border-radius: 5px;
    text-align: center;
}

.date-month {
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.date-day {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
}

.date-year {
    font-size: 0.85em;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.schedule-details {
    flex: 1;
}

.schedule-details h3 {
    font-size: 1.5em;
    color: #0c0f20;
    margin-bottom: 10px;
    font-weight: 600;
}

.schedule-location {
    color: #0c0f20;
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: 500;
}

.schedule-location a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.schedule-location a:hover {
    color: #003d7a;
    text-decoration: underline;
}

.schedule-time {
    color: #666;
    font-size: 0.95em;
    margin: 0;
    padding-left: 20px;
}

.schedule-time li {
    margin-bottom: 5px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    body {
        padding-top: 180px; /* More space for mobile header */
    }

    header {
        padding: 30px 20px;
    }

    header.scrolled {
        padding: 15px 20px;
    }

    header h1 {
        font-size: 2em;
    }

    header.scrolled h1 {
        font-size: 1.5em;
    }

    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

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

    .category-heading {
        font-size: 1.5em;
        text-align: center;
    }

    .video-category-section {
        margin-bottom: 40px;
    }

    .videos-cta-content {
        padding: 30px 20px;
    }

    .videos-cta-content h2 {
        font-size: 2em;
    }

    .videos-cta-content p {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .header-left {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .header-logo {
        height: 50px;
    }

    header.scrolled .header-logo {
        height: 40px;
    }

    .main-nav {
        flex-direction: row;
        justify-content: center;
    }

    .nav-link {
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .nav-link.active {
        border-left-color: white;
        border-bottom: none;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .schedule-date {
        width: 100%;
        max-width: 120px;
    }

    main {
        padding: 20px;
    }
}

