/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Global Links */
a {
  color: #20402e; /* Lane Green */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #d4a017; /* Lane Gold */
}

/* Typography Overrides */
p {
 font-size: 1.1em;
 line-height: 1.6;
}

/* Breadcrumb Eyebrow Style */
.breadcrumb-eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background-color: transparent;
  padding: 0;
  margin-bottom: 0px;
  margin-top: -1.5rem;
}
.breadcrumb-eyebrow .breadcrumb-item a {
  color: #20402e; /* Lane Green */
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-eyebrow .breadcrumb-item.active {
  color: #666;
}

/* Custom Nav Tabs */
.nav-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.nav-tabs .nav-link {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #20402e; /* Lane Green */
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  font-size: 1.1rem;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: #d4a017; /* Lane Gold */
}

.nav-tabs .nav-link.active {
  color: #20402e;
  background-color: transparent;
  border-bottom: 3px solid #20402e; /* Green underline for active */
  font-weight: 700;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #20402e; /* Lane Green */
  margin-top: 10px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 4px solid #d4a017; /* Lane Gold */
  display: inline-block; /* Border matches text width */
}

@media only screen and (min-width: 992px) {
  h1 {
    margin-top: 5px;
  }
}

h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #20402e;
  font-weight: 700;
  margin-top: 20px;
}

#logo {
 img {
   width: 10%;
   min-width: 150px;
 }
}

#social {
 img {
   width: 40px;
 }
}

@media only screen and (max-width: 767px) {
 #social {
   img {
     width: 30px;
   }
 }
}

.pagination a, .pagination span.current, .pagination span.gap {
  float: left;
  padding: 0 6px;
  line-height: 35px;
  text-decoration: none;
  background-color: white;
  /* border: 1px solid #ddd; */
  border-left-width: 0;
  font-size:1.2rem;
}

/* Lane Layout Colors */
.lane-green { color: #20402e; }
.bg-lane-green { background-color: #20402e; }
.lane-gold { color: #d4a017; } 
.bg-lane-gold { background-color: #d4a017; }

.pagination {
  /* border-left: 1px solid #ddd; */
  .first{
    padding : 0;
    float: none;
    border: none;
  }
  .prev {
    padding : 0;
    float: none;
    border: none;
  }
  .page {
    padding : 0;
    float: none;
    border: none;
  }
  .next {
    padding : 0;
    float: none;
    border: none;
  }
  .last {
    padding : 0;
    float: none;
    border: none;
  }
}

/* Custom Lane Tech Colors */
.text-lane-green { color: #20402e !important; }
.bg-lane-green { background-color: #20402e !important; }
.text-lane-gold { color: #d4a017 !important; }
.bg-lane-gold { background-color: #d4a017 !important; }

/* Varsity Button Styles */
.btn-lane {
    background-color: #20402e;
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #20402e;
    border-radius: 0;
    padding: 10px 25px;
    transition: all 0.3s;
}
.btn-lane:hover {
    background-color: white;
    color: #20402e;
    border-color: #20402e;
}

.btn-lane-outline {
    background-color: transparent;
    color: #20402e;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #20402e;
    border-radius: 0;
    padding: 10px 25px;
    transition: all 0.3s;
}
.btn-lane-outline:hover {
    background-color: #20402e;
    color: white;
}

/* Footer Social Links */
.social-link:hover img {
    transform: scale(1.15);
}

/* Team Card with Photo Background */
.team-card-photo {
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center 35%;
}
.team-card-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.team-card-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(32, 64, 46, 0.7) 0%, rgba(32, 64, 46, 0.85) 100%);
    z-index: 1;
}
.team-card-photo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}
.team-card-photo .team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-name-overlay {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.team-record-badge {
    background: #d4a017;
    color: #333;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.btn-team-photo {
    background: white;
    color: #20402e;
    border: 2px solid white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-team-photo:hover {
    background: #d4a017;
    border-color: #d4a017;
    color: white;
}

/* News Card Styles */
.card-news {
    border: none;
    border-top: 1px solid #e0e0e0;
    border-left: 4px solid #d4a017;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: white;
}
.card-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
/* Ensure links inside card titles behave nicely */
.card-news h2 a, .card-news h3 a, .card-news h4 a { 
    color: #20402e; 
    text-decoration: none; 
}
.card-news h2 a:hover, .card-news h3 a:hover, .card-news h4 a:hover { 
    color: #d4a017; 
}

/* News card with image overlay */
.news-image-wrapper {
    overflow: hidden;
    height: 280px;
}
.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card-news:hover .news-card-image {
    transform: scale(1.05);
}
.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.news-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}
.news-overlay-date {
    display: inline-block;
    background: #d4a017;
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}
.news-overlay-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.news-overlay-title a:hover {
    color: #d4a017 !important;
}

.date-badge {
    background: #f0f0f0;
    color: #666;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    padding: 5px 10px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

/* Mobile Optimization Overrides */
@media (max-width: 767px) {
    /* Hero Section Mobile Optimization */
    .hero-section {
        min-height: 420px !important;
        padding: 2rem 1rem !important;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 3rem !important;
    }

    /* Hero Content Mobile Text Placement */
    .hero-content {
        width: 100% !important;
        text-align: left;
        max-width: 100%;
    }

    /* Responsive Typography */
    .display-4 {
        font-size: 2.4rem !important;
    }
    .display-6 {
        font-size: 1.8rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }

    /* Event Card Mobile Optimization */
    .card-news {
        margin-bottom: 10px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    }
    .card-news:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    .card-news .card-body {
        padding: 0 !important;
    }
    .card-news h5 {
        font-size: 0.9rem !important;
        line-height: 1.2;
    }

    /* Scrollable Tabs for Mobile */
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-bottom: 2px solid #ddd;
        padding-bottom: 0px;
    }
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
    /* Hide scrollbar for cleaner look */
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    .nav-tabs {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Header Adjustments */
    header img {
        max-height: 70px !important;
        margin-right: 15px !important;
    }
    header .d-flex.flex-column span:first-child {
        font-size: 1.8rem !important; /* Resize "Lane Tech Football" */
    }
    header .d-flex.flex-column span:last-child {
        font-size: 0.75rem !important; /* Resize "Home of the Champions" */
    }
    
    /* Navbar Adjustments */
    .navbar-toggler {
        align-self: flex-start;
        margin-top: 10px;
    }
}

/* Extended Mobile Optimizations */
@media (max-width: 991px) { /* Targeting Mobile & Tablet Navbar collapse */
   /* Navbar Polish */
   .navbar-toggler {
       border-color: #d4a017 !important; /* Gold Border */
       padding: 8px 12px;
   }
   .navbar-toggler:focus {
       box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.5); /* Gold Glow */
   }
   .navbar-collapse {
       padding-top: 10px;
       border-top: 1px solid rgba(255,255,255,0.1);
       margin-top: 10px;
   }
   .navbar-nav .nav-item {
       border-bottom: 1px solid rgba(255,255,255,0.1); /* Subtle divider */
   }
   .navbar-nav .nav-item:last-child {
       border-bottom: none;
   }
   .navbar-nav .nav-link {
       padding-top: 12px;
       padding-bottom: 12px;
   }
}

@media (max-width: 767px) {
    /* Mobile Menu Button Styling */
    .header-mobile-optimized .navbar-toggler {
        padding: 6px 10px;
        border: 2px solid #d4a017 !important;
        border-radius: 4px;
        background: transparent !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .header-mobile-optimized .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.5);
        outline: none;
    }
    .header-mobile-optimized .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4a017' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
    }
    
    /* Mobile Header Optimization - Horizontal Layout */
    .header-mobile-optimized {
        flex-wrap: nowrap !important;
        gap: 10px !important;
        justify-content: flex-start !important;
        padding: 12px !important;
        padding-bottom: 12px !important;
        margin-bottom: 12px !important;
        background: white;
    }
    .header-mobile-optimized a {
        gap: 10px !important;
        flex: 1;
    }
    .header-mobile-optimized img {
        width: 65px !important;
        max-height: 65px !important;
    }
    .header-mobile-optimized .display-6 {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        line-height: 1.1;
        letter-spacing: 0.5px;
    }
    .header-mobile-optimized .small {
        font-size: 0.65rem !important;
        margin-top: 2px !important;
        line-height: 1.1;
        letter-spacing: 0.5px;
    }
    .header-mobile-optimized .navbar-toggler {
        padding: 6px 10px;
        border-color: #d4a017 !important;
        flex-shrink: 0;
        align-self: center;
    }
    .header-mobile-optimized .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.5);
    }
    
    /* Hide navbar bar on mobile, show only when expanded */
    .navbar-mobile-hidden {
        margin-bottom: 0 !important;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Reduce h1 top margin on mobile */
    h1 {
        margin-top: 2px !important;
        margin-bottom: 10px !important;
        font-size: 1.6rem !important;
        padding-bottom: 4px !important;
        border-bottom-width: 3px !important;
    }
    h2 {
        font-size: 1.35rem !important;
    }
    
    /* Optimize h4 for mobile */
    h4 {
        font-size: 1.3rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Tighten paragraph spacing */
    p {
        margin-bottom: 0.75rem !important;
    }
    
    /* Tighten list spacing */
    ul {
        margin-bottom: 1rem !important;
    }
    
    li {
        margin-bottom: 0.4rem !important;
    }
    
    /* Tighten breadcrumb spacing */
    .breadcrumb-eyebrow {
        font-size: 1rem !important;
        margin-bottom: 3px !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    
    /* Reduce main container padding after navbar */
    main {
        padding-top: 8px !important;
    }
    
    /* Better Touch Targets on Card Links */
    .card-news a {
        display: inline-block;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* ===========================================
   Coach Card Styles
   =========================================== */
.coach-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.coach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.coach-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 30%;
}

.coach-card-img-placeholder {
    width: 100%;
    height: 280px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 4rem;
}

.coach-card-body {
    padding: 1.25rem;
}

.coach-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #20402e;
    margin-bottom: 0.25rem;
}

.coach-card-role {
    color: #666;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.coach-card-cta {
    color: #20402e;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
}

.coach-card:hover .coach-card-cta {
    opacity: 1;
}

.coach-card-bio {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Coach Show Page Styles */
.coach-details h1 {
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
}

.coach-role-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    color: #20402e;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.coach-team-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.coach-team-label a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.coach-team-label a:hover {
    color: #20402e;
}

.coach-bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

.coach-placeholder-large {
    width: 100%;
    height: 350px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 6rem;
}

/* Mini Coach Cards (for "Other Coaches" section) */
.coach-card-mini {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.coach-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.coach-card-mini-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center 30%;
}

.coach-card-mini-placeholder {
    width: 100%;
    height: 120px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2rem;
}

.coach-card-mini-body {
    padding: 0.75rem;
}

.coach-card-mini-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: #20402e;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.coach-card-mini-role {
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

@media only screen and (max-width: 767px) {
    .coach-card-img,
    .coach-card-img-placeholder {
        height: 220px;
    }
    
    .coach-placeholder-large {
        height: 250px;
        font-size: 4rem;
    }
    
    .coach-card-mini-img,
    .coach-card-mini-placeholder {
        height: 100px;
    }
}

/* ===========================================
   Player Card Styles
   =========================================== */
.player-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    position: relative;
}

.player-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.player-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 30%;
}

.player-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 3rem;
}

.player-card-body {
    padding: 1rem;
    position: relative;
}

.player-card-number {
    position: absolute;
    top: -1.5rem;
    right: 1rem;
    background: #20402e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    min-width: 2.5rem;
    text-align: center;
}

.player-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #20402e;
    margin-bottom: 0.15rem;
    margin-top: 0;
}

.player-card-position {
    color: #666;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.player-card-details {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.player-card-cta {
    color: #20402e;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-card:hover .player-card-cta {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .player-card-img,
    .player-card-img-placeholder {
        height: 160px;
    }
    
    .player-card-number {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Full-width player cards on very small phones */
@media only screen and (max-width: 575px) {
    .player-card-img,
    .player-card-img-placeholder {
        height: 280px;
    }
    
    .player-card-body {
        padding: 1.25rem;
    }
    
    .player-card-name {
        font-size: 1.4rem;
    }
    
    .player-card-position {
        font-size: 0.85rem;
    }
    
    .player-card-details {
        font-size: 0.9rem;
    }
    
    .player-card-number {
        font-size: 1.1rem;
        padding: 0.25rem 0.6rem;
    }
}

/* ===========================================
   Player Show Page Styles
   =========================================== */
.player-jersey-badge {
    display: inline-block;
    background: #20402e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.player-jersey-badge-small {
    display: inline-block;
    background: #20402e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-right: 0.75rem;
}

.player-roster-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.player-team-link {
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.player-team-link:hover {
    color: #20402e;
}

/* Player Hero Card */
.player-hero-card {
    margin-bottom: 2rem;
}

.player-hero-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.player-hero-photo .player-photo {
    width: 280px;
    height: 350px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.player-hero-info {
    flex: 1;
}

.player-hero-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
    color: #20402e;
}

.player-hero-name .jersey-num {
    color: #20402e;
}

.player-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.player-stats-row .stat-item {
    min-width: 70px;
}

.player-stats-row .stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.2rem;
}

.player-stats-row .stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #20402e;
}

.player-stats-row .team-link {
    color: #20402e;
    text-decoration: none;
}

.player-stats-row .team-link:hover {
    text-decoration: underline;
}

.player-callup-note {
    font-size: 0.95rem;
    color: #666;
}

.player-callup-note p {
    margin: 0;
}

.player-callup-note a {
    color: #20402e;
    font-weight: 500;
}

.player-social-row {
    display: flex;
    gap: 0.75rem;
}

.player-social-row .social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #20402e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
}

.player-social-row .social-btn:hover {
    transform: scale(1.1);
    background: #2d5a3f;
    color: #fff;
}

.player-social-row .social-btn.hudl {
    background: linear-gradient(135deg, #f26522 0%, #d4540f 100%);
}

.player-social-row .social-btn.hudl:hover {
    background: linear-gradient(135deg, #ff7733 0%, #e5611a 100%);
}

@media only screen and (max-width: 767px) {
    .player-hero-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .player-hero-photo .player-photo {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
    
    .player-hero-name {
        font-size: 2rem;
    }
    
    .player-stats-row {
        gap: 1.5rem;
    }
}

.player-name-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #20402e;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    border-bottom: 4px solid #d4a017;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.player-position-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.player-position-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.25rem;
    color: #555;
    font-weight: 500;
    margin: 0;
}

.player-jersey-inline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #20402e;
    background: rgba(32, 64, 46, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.player-commit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #20402e;
}

.player-commit i {
    color: #333;
}

.player-commit strong {
    font-weight: 600;
}

.player-commit-text {
    display: flex;
    flex-direction: column;
}

.player-commit-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.player-commit-school {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #20402e;
}

.player-position-abbrev {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.player-commit-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.player-team-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.player-team-label a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.player-team-label a:hover {
    color: #20402e;
}

.player-stat-box {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    text-align: center;
    min-width: 80px;
}

.player-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 0.15rem;
}

.player-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #20402e;
}

.player-update-notification {
    background: #f8f9fa;
    border-left: 4px solid #d4a017;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #666;
}

.player-update-notification i {
    color: #d4a017;
}

.player-update-notification a {
    color: #20402e;
    font-weight: 500;
}

.player-update-notification a:hover {
    text-decoration: underline;
}

.player-placeholder-large {
    width: 100%;
    height: 350px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 6rem;
    border-radius: 8px;
}

@media only screen and (max-width: 767px) {
    .player-hero-photo {
        width: 100% !important;
        max-width: 100%;
    }
    
    .player-placeholder-large {
        width: 100%;
        height: 280px;
        font-size: 3rem;
    }
    
    .player-hero-photo .player-photo {
        width: 100%;
        height: auto;
        max-height: 280px;
    }
    
    .player-jersey-badge {
        font-size: 1.5rem;
    }
}

/* Player CTA Section */
.player-cta-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-cta-hudl {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f26522 0%, #e55a1c 100%);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 60px;
}

.player-cta-hudl:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.4);
    color: #fff;
}

.player-cta-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.player-cta-text {
    display: flex;
    flex-direction: column;
}

.player-cta-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-cta-sublabel {
    font-size: 0.75rem;
    opacity: 0.85;
}

.player-cta-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-cta-social:hover {
    transform: translateY(-2px);
    background: #333;
    color: #fff;
}

@media only screen and (max-width: 575px) {
    .player-cta-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .player-cta-hudl {
        justify-content: center;
    }
    
    .player-cta-social {
        width: 100%;
        height: auto;
        padding: 0.75rem;
    }
}

/* College Commit Badge */
.player-commit-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.player-commit-badge i {
    font-size: 1.1rem;
}

/* Position Abbreviation */
.player-position-abbrev {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* Nav Dropdown Styles */
.navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar .dropdown-item {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.5px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(255,255,255,0.1);
    color: #d4a017 !important;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.4rem;
}
