/* 
Group 3
Final
Event and Follow page
Sarah Hilliard

Colors
Background: #F5F5F5
Buttons: #4A90E2
Borders and Headings: #A8E6CF
Card Backgrounds: #333333
*/

/* Header customs */

#index-header {
  background-image: url(images/perry-header-background.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40vh;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin: 0;
  padding: 10px;
  border-radius: 15px;
  color: #4a90e2;
}

#index-header-content {
  background-color: rgba(51, 51, 51, 0.9);
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
  margin-top: 1.8em;
}

/* Heading customs */

h1 {
  font-family: "Tagesschrift", system-ui;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: #4a90e2;
}

h2 {
  font-family: "Tagesschrift", system-ui;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: #4a90e2;
}

h3 {
  font-family: "Tagesschrift", system-ui;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: #4a90e2;
}

h4 {
  font-family: "Tagesschrift", system-ui;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: #000000;
}

p {
  font-family: "Source Code Pro", monospace;
  line-height: 1.6;
  color: #f5f5f5;
  /* Font family and text customs */
}

footer p a {
  color: #F5F5F5;
}

.text-decoration-none {
  text-decoration: none;
  /* Sets up no text decor for links */
}

.custom-card {
  background-color: #333333;
  /* customizes card backgrounds and borders */
}

.table-card {
  background-color: #A8E6CF;
  /* customizes table card background*/
}

.table-card p {
  color: #333333;
}

.custom-card-hover:hover {
  background-color: #A8E6CF;
}

.social-link {
  color: #F5F5F5;
  font-family: "Source Code Pro", monospace;
  /* nav link color and font family */
}

.social-link:hover {
  color: #A8E6CF;
}

.introImg {
  width: 40%;
  height: auto;
  margin: auto;
}

/* introduction image styling */

.ximg {
  width: 50%;
  height: auto;
  margin: auto;
}

body {
  background-color: #F5F5F5;
  font-size: large;
  /* Body background color */
}

footer {
  background-color: #333333;
  /* Background color for the footer */
}

footer a:hover {
  color: #A8E6CF;
}

nav {
  background-color: #333333;
  /* Custom background color for the nav */
}

.navbar-brand {
  color: #A8E6CF;
  font-family: "Tagesschrift", system-ui;
  /* Sets the words of the navbar color and font family */
}

.navbar-brand:hover {
  color: #4a90e2;
}

.nav-link {
  color: #F5F5F5;
  font-family: "Source Code Pro", monospace;
  /* nav link color and font family */
}

.active {
  background-color: #A8E6CF;
  border-radius: 15px;
  /* Sets the active link color */
}

.nav-link:hover {
  color: #4a90e2;
}

.navbar-toggler {
  color: #A8E6CF;
  background-color: #A8E6CF;
  /* Sets color for the nav toggler */
}

.darktext {
  color: #000000;
}

@media screen and (max-width: 900px) {
  #index-header-content {
    padding: 0px;
    margin-top: 0em;
  }

  header h1 {
    font-size: 2em;
    margin: 0;
    padding: 10px;
    border-radius: 15px;
    color: #4a90e2;
  }

}


@media print {
  .no-print {
    display: none;
    /* Hide elements not meant for print */
  }
}