
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Macondo&display=swap');

/* CSS Variables */
:root {
    --primary-font: 'Inter', sans-serif;
    --secondary-font: 'Macondo', cursive;
    --primary-color: #3a2620; /* dark brown */
    --secondary-color: #aa9581; /* beige */
    --highlight-color: #416a8e; /* blue */
    --light-highlight-color: #7a9fc2; /* light blue */
}

/* Global Styles */
body {
    font-family: var(--primary-font);
    padding-top: 57.15px; /* Adjust for fixed navbar height */
}

h1,
h2,
h3 {
    font-family: var(--secondary-font);
    color: var(--primary-color);
}
 
h1,
h2 {
    text-transform: uppercase;
}

h2 {
    margin-bottom: 2rem;
}

.sub-heading-color {
    color: var(--highlight-color);
}

.section {
padding-top: 4rem; /* Prevent overlap */
}

/* buttons */
.custom-button-filled {
  border: 2px solid var(--highlight-color);
  background-color: var(--highlight-color);
color: white;
}

.custom-button-filled:hover {
  border: 2px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: white;
}

.custom-button-outline {
    border: 2px solid var(--highlight-color);
    padding: 7px 25px;
    color: var(--highlight-color);
}

.custom-button-outline:hover {
    background-color: var(--highlight-color);
    color: white;
}

/* navbar */
#navbar {
    background-color: var(--primary-color);
}

#navbar .logo {
    width: 30px;
}

/* Header */

#header .lead { 
    font-family: var(--secondary-font);  
}

/* services */

#services .card-footer {
    font-weight: bold;
    color: var(--highlight-color);
    background-color: transparent;
}

#services .card {
    margin-bottom: 1.5rem;
}

/* fav games */


/* Events */

#events .table {
    /* events table font size small enough that 
      the table doesn't overflow on xs screens. 
      Size set back to 1rem in a media query 
      for sm screens and up */
    font-size: 0.7rem;
}

.student-discount {
    background-color: var(--highlight-color);
    font-weight: bold;
    color: white;
    display: block;
    max-width: 300px;
    margin: auto;
    padding: 5px 10px;
    font-size: 0.8rem;
}

/* footer */
#contact {
    background-color: var(--primary-color);
    color: white;
    padding-bottom: 3rem;
}

#contact h2 {
    color: white;
}

#contact .sub-heading-color {
    color: var(--highlight-color-light );
}

#contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

#contact .social-links i {
    color: var(--highlight-color-light);
    font-size: 1.9rem;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

#contact .social-links i:hover {
    color: var(--secondary-color);
}

#contact .table-dark * {
    background-color: transparent;
}

/* media queries */
/* Small screens and up */
@media screen and (min-width: 576px) {
    /* increase font size in events table when screen size is large enough */
    #events .table {
        font-size: 1rem;
    }
    .student-discount {
        font-size: 1rem;
    }
}

/* medium devices 768px plus */
@media screen and (min-width: 768px) {
/* make cards same height */ 
    #services .card-body {
        min-height: 191px;
    }
}

/* large devices 992px plus */
@media screen and (min-width: 992px) {
/* make cards same height */ 
    #services .card-body {
        min-height: autopx;
    }
}

/* xl devices 1200px plus */
@media screen and (min-width: 1200px) {
/* make cards same height */ 
    #services .card-body {
        min-height: 220px;
    }
}

/* xxl devices 1400px plus */
@media screen and (min-width: 1400px) {
/* make cards same height */ 
    #services .card-body {
        min-height: 195px;
    }
 }.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}