:root {
  --dark-wook: #4A2E1A;
  --light-wood: #C9A37D;
  --barn-red: #8B2B2B;
  --paper: #EDE5D3;
  --dark-gray: #2A2522;
  --ivory: #F4EFE6;
  --clay: #D8C3A5;
  --sand: #E2D2BB;
  --deep-red: #5E1A1A;
}

/** CSS Reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Lora', serif;
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--paper);
}

body h1 {
  color: var(--dark-wook);
  font-family: 'Rye', serif;
  font-size: 2.6rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding-top: 50px;
}

a {
  color: inherit;
  text-decoration: none;
}


/** Life in the Berry association home page */

.asso-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
}

.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
  background-image: url('../images/2048/coming-soon.jpg');
  color: var(--dark-wook);
}

.soon p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 600px;
  margin: 20px auto 20px auto;
  line-height: 1.6;
  font-family: 'Lora', serif;
}

.soon h1 {
  color: var(--barn-red);
}

.asso {
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-align: center;
  max-width: 600px;
  margin: 20px auto 20px auto;
  line-height: 1.6;
  font-family: 'Lora', serif;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.floating-logo {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 1500;
  padding: 0px;
}

.floating-logo img {
  background-color: transparent;
  width: 90px;
  height: auto;
  display: block;
  margin-left: 40px;
  padding: 8px;
}

.floating-logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.2);
  transition: transform 0.1s ease, filter 0.1s ease;
  cursor: pointer;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding-top: 20px;
  margin-bottom: 30px;
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Rye', serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 0 rgba(0,0,0,0.4);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--ivory);
  text-decoration: underline;
}

.btn-strong {
  background-color: var(--barn-red);
  color: var(--paper);
}

.btn-strong:hover {
  background-color: var(--deep-red);
  color: var(--ivory);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.5);
}

.btn-plain {
  background-color: transparent;
  border: 2px solid #fdf8f0;
  color: #fdf8f0;
  box-shadow: none;
}

.btn-plain:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn-plain-inverted {
  background-color: transparent;
  border: 2px solid var(--barn-red);
  color: var(--barn-red);
  box-shadow: none;
  max-width: 340px;
}

.btn-plain-inverted:hover {
  transform: translateY(-1px);
  background-color: var(--ivory);
  color: var(--barn-red);
  text-decoration: underline;
}


main {
  width: 100%;
}
.main-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

section {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 6px;
}

section.hero {
  background-color: var(--ivory);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

section h2 {
  font-family: 'Rye', serif;
  color: var(--dark-wook);
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.4rem;
  
  padding-bottom: 6px;
  margin-bottom: 12px;
  text-align: center;
}

.lineup-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  flex-direction: row;
  padding: 0;
}

.lineup-item-wrapper {
  margin-bottom: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

.lineup-item {
  padding: 8px 10px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  padding: 0;
}

.lineup-item-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.lineup-item-text-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.lineup-desc {
  display: inline-block;
  flex-direction: column;
  justify-content: flex-start;  
  flex-wrap: wrap;
}

.lineup-desc strong {
  display: inline;
}

.lineup-desc ul {
  margin-left: 40px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.lineup-desc a {
  color: var(--barn-red);
  text-decoration: underline;
}

.lineup-desc a:hover {
  color: var(--light-wood);
  text-decoration: underline;
}

.lineup-item-clickable {
  position: relative;
  color: var(--ivory);
}

.lineup-item-clickable:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: transform 0.1s ease, filter 0.1s ease;
  color: var(--paper);
}

.lineup-band {
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
}

.lineup-overlay-text {
  font-size: 1.1rem;
  line-height: 44px;
  opacity: 0.85;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.lineup-time {
  font-size: 0.85rem;
  opacity: 0.85;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.lineup-overlay {
  font-size: 0.85rem;
  font-style: normal;
  position: absolute;
  z-index: 1000;
  background-color: #2A252299;
  width: 100%;
  height: 88px;
  text-align: center;
  border-radius: 0;
  top: 120px;
  left: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.lineup-overlay * {
  pointer-events: none;
}

.lineup-tag {
  font-size: 0.85rem;
  opacity: 0.85;
  color: var(--barn-red);
  display: flex;
}



.lineup-click-me {
  font-size: 0.75rem;
  font-style: normal;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.card-photo {
  width: 420px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.card-photo-wrap {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  text-align: center;
}


/** Error pages */

.error {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: 'Lora', serif;
}

.error a {
  color: var(--dark-wook);
  text-decoration: underline;
}

.error a:hover {
  color: var(--barn-red);
}

/** Legal pages */

.legal {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px;
}

.legal h2 {
  margin-top: 50px;
  margin-bottom: 8px;
}

.legal ul {
  margin-left: 40px;
  margin-top: 10px;
}

.legal a {
  color: var(--barn-red);
  text-decoration: underline;
}

.legal a:hover {
  color: var(--light-wood);
  text-decoration: underline;
}
.sub {
  font-size: 0.9rem;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Lora', serif;
  font-style: italic;
}

/** Footer */

footer {
  color: var(--paper);
  text-align: center;
  padding: 0;
  font-size: 0.8rem;
  font-family: 'Lora', serif;
  border-bottom: 1px solid var(--dark-gray);
  padding-bottom: 10px;
  background-color: var(--dark-wook);
}

.footer-table {
  width: 100%;
  padding: 18px 0;
  border-collapse: collapse;
  border: none;
  background-color: transparent;
  margin: 0;
  font-size: 0.8rem;
  color: var(--paper);
  text-align: center;
  vertical-align: middle;
}

.footer-table td {
  padding-top: 18px;
}

footer a {
  color: #f3e8d8;
  text-decoration: underline;
}

.contact-link {
  color: var(--barn-red);
  text-decoration: underline;
}

.social-bar-container {
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-bar-item {
  display: inline-block;
}

.social-bar-item {
  display: inline-block;
}

.social-bar-item img {
  filter: brightness(1.6) contrast(0.8);
}

.social-bar-item img:hover {
  filter: brightness(1.2) contrast(1.2);
  transition: transform 0.1s ease, filter 0.1s ease;
  transform: scale(1.05);
  cursor: pointer;
}