:root {
  --main-bg-color: rgb(154 157 160);
  --main-shadow: rgb(0, 0, 0);
  --main-text-color: rgb(0, 0, 0);
  --twitch-bg-color: #6441a4;
  --twitch-text-color: rgb(240, 236, 236);
  --composer-bg-color: #3f58a8;
  --composer-text-color: rgb(211, 255, 253);
  --etude-bg-color: #1b582a;
  --etude-text-color: rgb(211, 255, 253);
  --harmony-bg-color: #801c1c;
  --harmony-text-color: rgb(221, 221, 221);
  --secondary-bg-color: #ffffff;
  --secondary-shadow: rgb(0, 0, 0);
  --secondary-text-color: rgb(0, 0, 0);
  --tertiary-bg-color: #e7e7e7;
  --input-bg-color: #ffffff;
  --input-bg-color-hover: #bbc8d3;
  --input-text-color: rgb(0, 0, 0);
  --navbar-bg-color: #ffffff;
  --navbar-text-color: rgb(0, 0, 0);
  --primary-btn-color: #007bff;
  --primary-btn-hover: rgb(47, 93, 243);
}
  html {
    position: relative;
    min-height: 100%;
  }
  
  body {
    /* background-color: #435165; */
    background-color: #4e4e4e;
    width: 100%;
    height: auto;
    /* Margin bottom by footer height */
    margin-bottom: 60px;
  }
  .main {
    padding: 15px;
    display: grid;
    grid-template-columns: auto auto;
    padding: 20px;
    margin-left: 4vw;
    margin-right: 4vw;
    padding-top: 0px;
  }
  .wrapper {
    display: grid;
    padding: 0;
    margin: 0;
    /* padding: 20px; */
    /* margin-left: 5vw; */
    /* margin-right: 5vw; */
  }
  .media-wrapper {
    display: grid;
    padding: 15px;
  }
  .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px;
    /* Vertically center the text there */
    background-color: #f5f5f5;
  }
  
  .content {
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
    grid-auto-flow: dense;
  }
  .card {
    background-color: rgb(223, 223, 223);
  }
  .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  .inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    background-color: var(--primary-btn-color);
    display: inline-block;
    cursor: pointer;
}
  .inputfile:focus + label,
  .inputfile + label:hover {
    background-color: var(--primary-btn-hover);
  }
  .inputfile:focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
  }
  h1 {
    font-size: 4vw !important;
  }
  h1.card-title {
    padding-top:100px;font-size:5rem;color:white;text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;text-align: center;
  }
  h3.card-text {
    padding-top: 100px;font-size: 3rem;color: white;text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  }
  @media screen and (max-width: 800px) {
    .main {
      grid-template-columns: 100% !important;
      padding: 0px !important;
      margin: 0px !important;
      width: 96vw !important;
    }
    h1 {
      font-size: 10vw !important;
    }
    .media-wrapper {
      padding: 10px !important;
      grid-template-columns: 100% !important;
      grid-area: auto / auto/auto/auto !important;
    }
    .media-wrapper-constant {
      padding: 10px !important;
      grid-area: auto / auto/auto/auto !important;
    }
  }
  
/* Orchestra-specific styles */
.orchestra-hero {
  background: linear-gradient(135deg, var(--composer-bg-color), var(--primary-btn-color));
}

.patron-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patron-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.concert-card {
  border-left: 4px solid var(--primary-btn-color);
}

.fa-heart, .fa-music, .fa-users {
  color: inherit !important;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Enhanced hero section */
.hero-overlay {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

/* Concert section styling */
.upcoming-concerts {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

/* About section styling */
.about-section {
  background: var(--secondary-bg-color);
}
  