/* ------------------------------
   COLOUR VARIABLES
------------------------------ */
:root {
  --blue: #003A70;
  --yellow: #F7C600;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #6B6B6B;
  --divider: #D9DDE3;
  --tint-blue: #E8F0FA;
  interpolate-size: allow-keywords;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  width: 100vw;
  max-width: 100%;
  margin: 0;
}
/* ------------------------------
   GLOBAL STYLES
------------------------------ */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 120%;
}

h1, h2, h3 {
  color: var(--blue);
  margin-top: 0;
}

/* ------------------------------
   HEADER
------------------------------ */
.site-header {
  background: var(--blue);
  color: var(--white);
  padding: 16px 0;
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
  top: 0;
  position: sticky;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.header-inner > p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: normal;

}

.club-logo {
  height: 90px;
  width: auto;
}
#mainEl {
  /* position: absolute;*/
    text-align: center;
  color: var(--blue);
  background-color: var(--bg);
  font-size: 16px;
  line-height: normal;
  padding: 20px;
}

.aElement {
    text-align: center;
  color: var(--blue);
  background-color: var(--white);
  font-size: 16px;
  line-height: normal;
}
.alist {
    text-align: center;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
  margin: 30px;
}
.alist img {
  width: 80px;
}

.amenu-container {
  display: flex;
  width: 95%;
  max-width: 700px;
  height: auto;
  margin: auto;
 
  /*background-color: rgba(64,66,167,0.5);*/

  overflow-y: auto;
  justify-content: space-evenly;
  flex-wrap: wrap;
  /*box-shadow: 0px 0px 12px 5px rgba(64,66,167,0.5);*/
}
/*.amenu-container img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    opacity: 0.2;
    z-index: -1;
}*/
.abutton-container {
  width: 120px;
  height: auto;

  background-color: var(--yellow);

  margin: 10px;
  border: 4px solid var(--blue);
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
  border-radius: 20px;
  cursor: pointer;
}
.abutton-container:hover,
.abuttton-container:focus {
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
}
.amyBtn {
  position: relative;
  top: 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.8rem;
  width: 90%;
  margin: auto;
  color: var(--blue);
}

/* The Modal (background) */
.amodal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /*Sit on top */
  padding-top: 100px; /* Location of the box */
  padding-bottom: 100px;
  margin-bottom: 100px;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

/* Modal Content */
.amodal-content {
  background-color: var(--bg);
  border: 8px solid var(--yellow);
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
  border-radius: 20px;

  margin: auto;
  margin-bottom: 150px;
  padding: 0px;

  width: 80%;
  max-width: 800px;
}

/* The Close Button */
.aclose {
  color: #aaaaaa;
  margin-right: 1rem;
  float: right;
  font-size: 3rem;
  font-weight: bold;
}

.aclose:hover,
.aclose:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
#nav {
  width: 100%;
  height: 1em;
  background-color: #333399;
  visibility: visible;
  margin-bottom: 2rem;
}
#search {
  width: 100%;
  height: 1em;
  background-color: #333399;
  visibility: visible;
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
  text-align: center;
  padding: 24px;
  background: var(--blue);
  color: var(--white);
  margin-top: 60px;
}