:root {
    --primary-color: rgb(207, 32, 46);
    font-family: 'DM Sans', sans-serif; 
    opacity: 0.9;
    --font-size: 18px;
    --spacing: 1rem;
    /* --gold-light: #E8C97A;
    --cream: #F5EDD8;
    --dark: #0D0A06;
    --charcoal: #1A1510;
    --mid: #2D2419;
    --text-muted: #8A7A60; */ 
  }

body {
    justify-items: center;
    font-size: var(--font-size);
    color: rgb(255, 255, 255);
    background-color: var(--primary-color);
    margin: 0;
    padding: 20px;
}
#HeadsUp-logo{
  color: black;
  z-index: -1;
}
img {
    background-color: white;
    justify-items: center;
}
p.bio-text{
  font-style: oblique;
  font-weight: bold;
}
#profile-info{

  background: white;
  border-radius: 20px;
  padding: 15px;
  width: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  align-items: center;
  text-align: center;
}
.facebook-logo{
  opacity: 0.8;
  color: #1343e0;
}
#middle-panel {
  display: flex;
  background-color: var(--primary-color);
  font-style: italic;
  font-weight: bold;
  width: 225px;
  height: 15vh;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}

#book-btn, #hours-btn {
  background: rgb(232, 27, 57);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 25px;
  text-decoration: none;
}

#infoPanel{
  background: rgb(255, 255, 255);
  border-radius: 12px;
  padding: 30px;
  width: 450px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

#panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-block {
  display: flex;
  background-color: rgb(210, 197, 197);
  text-align: center;
}

.info-block2 {
  display: flex;
  background-color: rgb(224, 234, 234);
  text-align: center;
}
/* #addressBtn{
  display: flex;
  
} */
#aPanelClosed {
  display: flex;
  position: relative;
  background-color: #0088E0;
  justify-content: space-between;
  margin-bottom: 20px;
}
#aPanelClosed::after {
  content: '';
  position: absolute;
  top: 50%; /* Position just below the div */
  left: 90%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffffff;
  cursor: pointer;
}

/* #pPanelClosed::after {
  content: '';
  position: sticky;
  top: 80.5%; /* Position just below the div */
  /* left: 75%;
  right: 21%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffffff; 
 */ 

 #pPanelClosed::after {
  content: '';
  position: relative;
  top: 80.5%; /* Position just below the div */
  left: 75%;
  right: 21%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffffff; 
}

#aPanel, #pPanel{
  margin-top: 2px;
  text-align: center;
}

#pPanelClosed {
  display: flex;
  background-color: rgb(232, 27, 57);
  justify-content: space-between;
}

#dc-stars{
  font-size: large;
  color: rgb(232, 27, 57);
}

#dc-flag{
  display: flex;
  margin-left: 75px;
  margin-right: 75px;
  width: 300px;
  justify-content: space-between;
}
.btn {
  flex-grow: 1;
  border: none;
  justify-content: space-between;
  background-color: rgb(232, 27, 57);
  text-align: left;
  color: white;
}

 a{
    text-decoration: none;
 }
 
a#panelLinks, p {
  color: white;
  text-decoration: none;
}

a#links {
  color: #0088E0;
  text-decoration: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);

  }
  to {
    opacity: 1;
    transform: translateY(0);

  }
}
body {
  animation: fadeInUp 2.5s ease-in forwards;
}

@media (max-width: 768px) {
  /* Styles for tablets and mobiles */
  body { font-size: 16px; }
  .container { flex-direction: column; }
}

@media (max-device-width: 480x) {
  /* Styles for tablets and mobiles */
  body { font-size: 16px; }
  .container { flex-direction: column; }
}
/* img, iframe { 
  max-width: 100%; 
  height: auto; 
} */