/* 
If you're reading this for whatever reason, hello! I really suck at web dev and needed to get better so I decided this silly little project was a good way to do so.

A lotta my code is really bad so have fun reading it ig
*/
:root {
  --default-font-family: Arial, sans-serif;
  --default-text-color: #ffffff;
  --default-background-color: #000000;
  --letter-background-color: #000000;
  --accent-color: #ffffff;
  --link-color: #ffffff; /* New variable for link color */
}


body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font-family);*display:;
  background-color: var(--default-background-color);
  color: var(--default-text-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.warning-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  background-color: #d0342c;
  border-radius: 15px;
}
.warning-container img.warning-icon {
  display: block;
  width: 50px;
}
.warning-container p {
  margin: 0;
}
.hidden {
  display: none;
}

h1 {
  font-size: 5rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  text-align: center;
}

h2 {
  font-size: 3.5rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  margin-top: 0.5rem;
}

/* this just changes hyperlink styling in the email header */
h2 a {
  color: #50a3e2;
}

h3 {
  margin-bottom: 0rem;
  margin-top: 0rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: normal;
}

p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--default-text-color);
  font-weight: normal;
  text-align: center;
}

b {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--default-text-color);
  font-weight: normal;
  text-align: center;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

name {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: var(--accent-color);
  margin-top: 0.5rem;
}

value {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: var(--accent-color);
  margin-top: 0.5rem;
}

.field-bubble {
  flex-basis: calc(50% - 10px);
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

img {
  margin: 0 auto;
  width: 100px;
}



.title-container {
  margin-top: 20px;
  text-align: center;
  position: relative;
}

.title-container img {
  display: block;
  margin: 0 auto;
  width: 15rem;
  align-self: center;
}

.title-container h1 {
  margin-bottom: 0px;
  position: relative;
  margin-top: 0px;
}
.title-container h2 {
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: normal;
}

/* this adds that bigass line seperator thingy */
.title-container h2:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
}


/* contact button because i am NOT tryna get sued */
.contact-container {
  text-align: center;
  margin-top: 20px;
}
#contactButton {
  background-color: #1f1f1f; /* same as field-bubble */
  color: var(--default-text-color);
  padding: 20px;
  border: none;
  border-radius: 10px;
  font-family: var(--default-font-family);
  font-size: 1.2rem;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  margin-bottom: 25px;
}
/* button hover effect */
#contactButton:hover {
  background-color: #313131; /* slightly lighter than #1f1f1f */
}

.day-info-variable {
  font-weight: bold;
  text-decoration: underline;
}

.disclaimer {
  font-size: 3.5rem;
  font-weight: normal;
  margin-bottom: 0rem;
  margin-top: 0rem;
  color: var(--accent-color);  
}


/* styling for the table in /bathrooms */
.bathroom-table {
  display: table;
  margin: auto;
}
table {
  max-width: 90%;
  margin: auto;
  border-collapse: collapse;
  font-size: larger;
}
th, td {
  border: 1px solid white;
  padding: 10px;
  text-align: center;
}
th {
  font-size: larger;
}

/* styling for the table in /bathrooms */
.bathroom-table {
  display: table;
  margin: auto;
}
table {
  max-width: 90%;
  margin: auto;
  border-collapse: collapse;
  font-size: larger;
}
th, td {
  border: 1px solid white;
  padding: 10px;
  text-align: center;
}
th {
  font-size: larger;
}