@charset "utf-8";
/* CSS Document */
body{
	margin: 0;
	padding: 0;
}


.header{
    background: linear-gradient(to right, #11255A 55%, transparent 100%),
                url('Pictures/indianaflag.jpg') no-repeat right;
    background-size:auto 375%;
    margin: auto;
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title{
	color: white;
	font-size: 75px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
	display:block;
    margin:0 auto;
	width: 15%;
}
.center > a,
.center > .dropdown > a{
    font-size: 25px;
    line-height: 25px;
    padding: 10px 25px;
    border-radius: 10px;
    font-family: Georgia, serif;
    font-weight: normal;
    text-decoration: none;
    font-style: normal;
    font-variant: normal;
    background-color: #223F8D;
    color: #fff;
}
.center a:hover {
    background: #1C6EA4;
}
.center{
	display: flex;
	background: #223F8D;
    justify-content: center;
    padding: 8px;
}

.center a.active {
    background-color: #11255A;
    border-radius: 8px;
}



/* Wrapper for both containers */
.front-sections {
    display: flex;
    justify-content: center;
    align-items: flex-start;  /* Align tops */
    gap: 20px;                /* Space between boxes */
    width: 100%;
    margin: 40px auto;        /* Space above/below */
    flex-wrap: wrap;          /* Allows stacking on mobile */
}

/* Shared styles for news and events containers */
.news-container-front,
.events-container-front {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.37);
    padding: 20px;
    box-sizing: border-box;
    text-align: center;

    /* Side-by-side behavior */
    flex: 1 1 400px;     /* Flexible width, starts at 400px */
    max-width: 500px;    /* Prevents from being too wide */
    min-width: 300px;    /* Prevents from being too narrow */

    margin: 0;           /* Remove auto margins that caused misalignment */
}

/* News-specific adjustments */
.news-container-front img {
    width: 80%;
}

/* Events-specific adjustments */
.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: #fafafa;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 7px;
    text-align: center;
}

.date-box {
    color: #fff;
    background-color: #11255A;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.37);
    max-width: fit-content;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
}

.event-details {
    padding: 0;
    text-align: center;
    flex: auto;
}

.event-title {
    font-size: 25px;
}

/* Mobile responsive stacking */
@media (max-width: 850px) {
    .front-sections {
        flex-direction: column;
        align-items: center;
    }

    .news-container-front,
    .events-container-front {
        width: 90%;
        max-width: none;
    }
}
.announcement {
    width: 400px;
    display: inline-block;
    margin: 1%;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #11255A;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}



.people-container-total{
    max-width: auto;
    text-align: center;
}
.people-container {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:0 auto;
}
.person-card {
    display: inline-block;
    width: 200px;
    margin: 20px;
    padding: 20px;
    height: 150px;
    background-color: #ffffff;
    border: 2px solid #11255A;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.person-card h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #11255A;
}
.person-card p {
    margin: 5px 0;
    font-size: 1em;
}
.name{
    font-size: 30px;
}
.people-header{
    color: #ffffff;
        background: linear-gradient(to left, #11255A 60%, transparent 100%),
                    url('Pictures/gymnast-floor.jpg') no-repeat left;
        background-size:auto 475%;
    padding: 6px;
    font-size: 50px;
    height: 100px;
    border-bottom:6px solid rgba(14, 30, 73, 0.685)
}
.committee-container{
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:0 auto;
}
.committee-header{
    display: inline-block;
    width: 1000px;
    margin: 20px;
    padding: 10px;
    height: 100px;
    background-color: #ffffff;
    border: 2px solid #11255A;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.cards-row{
    max-width: 1000px;
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

.minutes-container,
.assigning-container {
    max-width: 1000px;
    display: flex;        /* keep them on one line */
    gap: 20px;                   /* spacing between cards */
    margin: 0 auto;          /* allow scroll if too narrow */
    color: #11255A;
}

.minutes-card,
.assigning-card {
    flex: 0 0 450px;              /* fixed width */
    padding: 10px;
    height: auto;
    background-color: #ffffff;
    border: 2px solid #11255A;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;       /* includes border/padding in width */
}
.assigning-card li{
    text-align: left;
    font-size: 17px;
}
.minutes-card li{
    text-align: left;
    font-size: 17px;
}


.links-container {
    max-width: auto;
    margin: 0 auto;
    padding: 0;
   text-align: center;
   justify-content: center;
}
.link-card-container{
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:0 auto;
}
.linktitle{
    font-size: 20px;
    color: #ffffff;
}
.links-header{
    color: #ffffff;
        background: linear-gradient(to left, #11255A 60%, transparent 100%),
                    url('Pictures/gymnast-floor.jpg') no-repeat left;
        background-size:auto 475%;
    padding: 6px;
    font-size: 50px;
    height: 100px;
    border-bottom:6px solid rgba(14, 30, 73, 0.685)
}
.link-card {
    display: inline-block;
    width: 200px;
    margin: 20px;
    text-align: center;
    background-color: #49505788;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 2px solid #11255A;
    overflow: hidden;
}
.link-card img {
    width: 80%;
    height: auto;
}
.link-card a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2em;
}
.link-card a:hover {
    background-color: #6c757d;
}
.links {
    background-color: #223F8D;
}





    .about-header{
        color: #ffffff;
        background: linear-gradient(to left, #11255A 60%, transparent 100%),
                    url('Pictures/gymnast-floor.jpg') no-repeat left;
        background-size:auto 475%;
        padding: 6px;
        font-size: 50px;
        height: 100px;
        border-bottom:6px solid rgba(14, 30, 73, 0.685)
    }
    .about-words {
    display: flex;              /* puts Mission and Goals side by side */
    justify-content: center;    /* centers them in the container */
    gap: 40px;                  /* space between the two boxes */
    flex-wrap: wrap;            /* allows stacking on small screens */
    text-align: left;
    margin-bottom: 15px;
}

.mission, .goals {
    width: 500px;                 /* each takes about half the space */
    font-size: 19px;            /* adjust to make smaller if you like */
}

.subtext {
    font-size: 19px;
    color: #144E75;
    margin-bottom: 10px;
    font-style: italic;
}




.news-header{
    color: #ffffff;
    background: linear-gradient(to left, #11255A 60%, transparent 100%),
                url('Pictures/gymnast-floor.jpg') no-repeat left;
    background-size:auto 475%;
    padding: 6px;
    font-size: 50px;
    height: 100px;
    border-bottom:6px solid rgba(14, 30, 73, 0.685)
    }
    .news-container {
        max-width: auto;
        margin: auto;
        padding: 0;
        text-align: center;
    }

    .events-header{
        color: #ffffff;
        background: linear-gradient(to left, #11255A 60%, transparent 100%),
                    url('Pictures/gymnast-floor.jpg') no-repeat left;
        background-size:auto 475%;
        padding: 6px;
        font-size: 50px;
        height: 100px;
        border-bottom:6px solid rgba(14, 30, 73, 0.685)
    }
    .events-container-total {
        max-width: auto;
        margin: auto;
        padding: 0;
        text-align: center;
        justify-content: center;
    }
    .events-container{
        justify-content: center;
    }
    .event-card h2{
        color: #11255A;
        font-size: 30px;
        margin: auto;
        padding-top: 40px;
    }
    .event-card a{
        text-decoration: none;
    }
    .event-card{
        width: 800px;
        justify-content: center;
        text-align: center;
        display: inline-block;
    }
    .event-card p{
        font-size: 20px;
    }
    .prices{
        display: inline-block;
        text-align: left;
        font-size: 17px;
    }
    .prices-list{
        justify-content: center;
    }
    .ijc-descript{
        font-size: 17px;
    }





.education-header{
    color: #ffffff;
    background: linear-gradient(to left, #11255A 60%, transparent 100%),
                url('Pictures/gymnast-floor.jpg') no-repeat left;
    background-size:auto 475%;
    padding: 6px;
    font-size: 50px;
    height: 100px;
    border-bottom:6px solid rgba(14, 30, 73, 0.685)
}
.education-container {
    max-width: auto;
    margin: auto;
    padding: 0;
    text-align: center;
    justify-content: center;
}
.NGA-info-container {
    text-decoration: none;
    justify-content: center;
}
.education-title h2 {
    color: #11255A;
    margin: auto;
    padding-top: 40px;
    text-align: center;
}    
/* override the narrow column so cards can breathe */
.education-title { width: auto; margin: 0; }

/* responsive card grid */
.education-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px;
}

/* the card itself */
.edu-card{
  display: block;
  background: #fff;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 16px 14px;
  text-decoration: none;
  color: #11255A;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

/* gentle lift on hover/focus */
.edu-card:hover,
.edu-card:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-color: #11255A;
  outline: none;
}

/* headings + subtext */
.edu-card h3{
  margin: 0 0 6px;
  font-size: 22px;
  color: #000;
}
.edu-card h4{
    font-size: 17px;
}

/* small pill tag (optional) */
.edu-card .tag{
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  background: #223F8D;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}

/* list styling inside a card (for the Updates card) */
.edu-card ul{
  margin: 1px 0 0 1.1rem;
  padding: 0px;
  text-align: left;
}
.edu-card ul li::marker {
    font-size: 1em;
    color: #000;
}
.edu-card li{ 
    margin: 4px 0; 
    color: #000;
}
.edu-card li a{
  color: #11255A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.edu-card li a:hover{ text-decoration-thickness: 2px; }

.edu-card .testing li{
    padding: 0px;
}







.calendar-header{
        color: #ffffff;
        background: linear-gradient(to left, #11255A 60%, transparent 100%),
                    url('Pictures/gymnast-floor.jpg') no-repeat left;
        background-size:auto 475%;
    padding: 6px;
    font-size: 50px;
    height: 100px;
    border-bottom:6px solid rgba(14, 30, 73, 0.685)
}
.calendar-container {
        max-width: auto;
        margin: auto;
        padding: 0;
        text-align: center;
}
.nga-calendar{
    text-align: center;
    font-size: 20px;
}




.container-news {
    display: block;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 100%;
}

.content-box {
    display: flex;                  /* makes children sit side by side */
    justify-content: space-around;  /* space between the two boxes */
    align-items: flex-start;        /* align them to the top */
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    width: 700px;
    margin: auto;
}

.new-judges, .new-ratings {
    flex: 1;               /* makes both share width equally */
    margin: 0 10px;        /* adds some gap between them */
}
.general-news {
    color: #11255A;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    width: 700px;
    margin: 0 auto 20px auto; /* center + spacing below */
}
.general-news h2 {
    font-size: 35px;
}

.content-box h2{
    color: #11255A;
    font-size: 35px;
    margin: auto;
    padding-top: 40px;
}
.content-box h3{
    font-size: 22px;
}
.content-box h4{
    font-size: 20px;
}

.image-gallery {
    display: inline-flex;
    justify-content: center;
    margin-top: 20px;
}

.image-box { 
    background-color: #d9d9d9;
    border-radius: 5px;
}
.meeting-minute{
    text-align: center;
}




.assigning-header{
        color: #ffffff;
        background: linear-gradient(to left, #11255A 60%, transparent 100%),
                    url('Pictures/gymnast-floor.jpg') no-repeat left;
        background-size:auto 475%;
    padding: 6px;
    font-size: 50px;
    height: 100px;
    border-bottom:6px solid rgba(14, 30, 73, 0.685)
}

.judgescupflyer{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}






.footer{
    background-color: #11255A;
    color: #ffffff;
    justify-items: left;
    text-align: right;
}
.footer-case{
    text-align: baseline right;
    margin:0 auto;
    padding: 5px;
}
.footer-logo{
    display: flex;
    width: 15%;
}

.front-sections {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* key for top alignment */
    gap: 20px;
    margin: 40px auto;
    width: 80%;
    flex-wrap: wrap;
}


.news-container-front,
.events-container-front {
    flex: 1 1 400px;
    max-width: 500px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.jc-25 {
    width: 100%;
    height: auto;
    border: 2px solid black;
    border-radius: 10px;
}
.jc-title {
    margin-bottom: 20px;
}
.jc-title h2 {
    font-size: 50px;
}
.comp-pack {
    font-size: 20px;
}

.calendar-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px; /* your layout limit */
  margin: 30px auto;
  aspect-ratio: 16/10; /* helps on mobile; keeps a good height */
}

.calendar-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mileage-contain {
    display: flex;               /* enables centering */
    justify-content: center;     /* centers horizontally */
    margin: 20px 0;              /* space above/below */
}

.mileage-box {
    border: 2px solid #11255A;   /* border around it */
    padding: 15px 25px;          /* space inside the box */
    border-radius: 8px;          /* optional: rounded corners */
    background-color: #ffffff;   /* optional: white background */
    font-size: 20px;             /* adjust text size */
    text-align: center;          /* center the text */
    color: #000;              /* match your theme color */
}




/* Make normal nav buttons consistent */
.center > a,
.dropdown > a {
  display: inline-block;
  padding: 10px 14px;
  background: #223F8D;
  color: #fff;               /* set your link color as needed */
  text-decoration: none;
  margin: 0;
  line-height: 1.2;
}

/* Dropdown container: inline item in the row, but anchor for absolute children */
.dropdown {
  position: relative;        /* anchor for the submenu */
  display: inline-block;     /* keep it inline with other buttons */
  z-index: 5;
}

/* Submenu: sits UNDER the Events button */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;    /* drop it just below the button */
    left: 0;                   /* align left edges; change to 50% + translateX(-50%) to center */
    background: #223F8D;
    min-width: 180px;
    white-space: nowrap;       /* keep it compact */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 10;               /* above the nav bar, not above other rows */
    font-size: 18px;
    line-height: 25px;
    border-radius: 10px;
}

/* Submenu links */
.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}
.dropdown-content a:hover {
    border-radius: 10px;
}

/* Show on hover and keyboard focus (better for mobile/keyboard) */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}



    h1, h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    /* ===== CONTAINER ===== */
    .checklist-container {
      max-width: 900px;
      margin: auto;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      padding: 20px;
    }

    /* ===== SECTIONS ===== */
    .checklist-section {
      margin-bottom: 30px;
    }

    .checklist-section h2 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      border-bottom: 2px solid #223F8D;
      padding-bottom: 5px;
    }

    /* ===== ITEMS ===== */
    .checklist-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .checklist-item input[type="checkbox"] {
      margin-right: 10px;
      transform: scale(1.3);
      cursor: pointer;
    }

    .checklist-item label {
      flex: 1;
      cursor: pointer;
      line-height: 1.4;
    }

    .checklist-item label a {
      color: #223F8D;
      text-decoration: underline;
    }

    /* ===== BUTTONS ===== */
    .buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .buttons button {
      background-color: #223F8D;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .buttons button:hover {
      background-color: #1C6EA4;
    }

    /* ===== PRINT STYLES ===== */
    @media print {
      .buttons {
        display: none;
      }
      body {
        background: #fff;
      }
      .checklist-container {
        box-shadow: none;
        border: none;
      }
    }
    .checklist-detail {
        margin-left: 30px;       /* indent under checkbox */
        font-size: 0.9rem;       /* slightly smaller text */
        color: #444;             /* lighter color for subtext */
        line-height: 1.4;
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .checklist-detail a {
        color: #223F8D;          /* match your theme links */
        text-decoration: underline;
    }

/* Replace checkmark with 🚫 for special-icon checkboxes */
.checklist-item.special-icon input[type="checkbox"] {
  appearance: none;       /* remove default checkbox style */
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  background: white;
}

.checklist-item.special-icon input[type="checkbox"]::after {
  content: "🚫";
  font-size: 14px;
  position: absolute;
  top: -3px;
  left: -2px;
}

.checklist-item.info-icon input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  background: white;
}

.checklist-item.info-icon input[type="checkbox"]::after {
  content: "ℹ️";
  font-size: 14px;
  position: absolute;
  top: -3px;
  left: -2.5px;
}

.baj-welcome {
  max-width: 700px;   /* keep it from stretching too wide */
  margin: 40px auto;  /* centers horizontally */
  text-align: center; /* centers text inside */
  border-radius: 10px;
}
.baj-welcome ul {
    text-align: left;
}

/* ===== COST TABLE (optional) ===== */
.table-wrap {
  overflow-x: auto;
  margin-top: 10px;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cost-table thead th {
  border-bottom: 2px solid #223F8D;
  text-align: left;
  padding: 8px 10px;
}

.cost-table tbody td {
  border-bottom: 1px solid #e6e6e6;
  padding: 8px 10px;
  vertical-align: top;
}

.cost-table tbody tr:last-child td {
  border-bottom: none;
}

.cost-table tbody tr:nth-child(even) td {
  background: #fafafa;
}
