:root {
    --primary-color: #080808;
    font-family: 'DM Sans', sans-serif; 
    opacity: 0.9;
    --font-size: 18px;
    --spacing: 1rem;
    --white:         #f5f5f5;
    --white-dim:     #999;
    --pink:          #FF2D8B;
    --pink-light:    #FF6BB3;
    --pink-dark:     #C0006A;
    --chrome:        #C8C8C8; 
  
  }
  /* Leather texture */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: repeating-linear-gradient(
        45deg, 
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 8px
      );
      pointer-events: none;
      z-index: 0;
    }
    
body {
    display: grid;
    font-size: var(--font-size);
    color: rgb(255, 255, 255);
    background-color: var(--primary-color);
    margin: 0;
    padding: 20px;
    overflow-x: hidden;

}
.hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 30px 20px 40px;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(255,45,139,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(26,62,170,0.12) 0%, transparent 60%),
        var(--black);
      z-index: 1;
    }
 
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient
      (90deg, transparent, var(--pink), var(--chrome), var(--pink), transparent);
    }
 
 
#TBM-logo{
    justify-items: center;
    margin-bottom: auto;
}

p.bio-text{
  font-style: oblique;
  font-weight: bold;
}

#top-panel {
  display: flex;
  align-items: stretch;
  gap: 32px;
  color: rgba(255, 0, 0, 0.5);
  padding: 24px 28px;
  /* border-top: 2px solid #C9A84C;
  border-bottom: 2px solid #C9A84C; */
  flex-wrap: wrap;
  justify-content: center;
  
}
#pricing-div{
  max-width: 475px;
  display: flex;
  margin-right: 20%;
}
#pricing, #pricing2 {
  display: flex;
  flex-direction: column;
  gap: .5px; 
  color: rgba(255, 0, 0, 0.5);
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  flex: 1;                /* equal width always */
     /* prevents too-narrow on small screens */
  box-sizing: border-box;
}
.name{

  max-width: 150px;
}

#pricing p, #pricing2 p {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 4px 0;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 10px;
  flex: 1; 
  justify-content: space-between;  /* name left, price right */
  white-space: nowrap;
  /* transition: color 0.2s, padding-left 0.2s; */
  cursor: default; 
}

#pricing p:last-child,
#pricing2 p:last-child {
  border-bottom: none;
}

#pricing p .name,
#pricing2 p .name {
  color: #ffffff;
  text-align: left;
  flex: 1;
}
#pricing p .price,
#pricing2 p .price {
  color: var(--pink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}


#qr-codes {
  display: flex;
  flex-direction: column;
  margin-top: 12.5%;
}

#middle-panel {
  display: flex;
}
#btn-div {
  display: flex;
  background-color: var(--primary-color);
  width: 175px;
  height: 15vh;
  margin-top: 15px;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

#book-btn, #hours-btn {
  background: rgb(232, 27, 57);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 25px;
  text-decoration: none;
  border: none;
}
#book-btn:hover, #hours-btn:hover{
    border-color: var(--pink);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255,45,139,0.3);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.open {
  display: flex;
}

.hours-card{
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  justify-content: left;
  position: relative;
}
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  line-height: 1;
}

.close:hover {
  color: var(--pink);
}

h2{
  color: black
}
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 425px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

#infoPanel{
  background: var(--white-dim);
  border-radius: 12px;
  padding: 30px;
  width: 225px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  justify-content: left;
}

#addressBtn, #phoneBtn{
  font-weight: 600;
}

#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;
}

#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: 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;
}

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

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

    /* ── SECTIONS ── */

    .section-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 24px;
      position: relative;
      z-index: 1;
    }
 
    .section-label {
      font-size: 11px;
      letter-spacing: 0.4em;
      color: var(--pink);
      text-transform: uppercase;
      margin-bottom: 10px;
      font-weight: 600;
    }
 
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 6vw, 60px);
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
 
    .pink-rule-pricing {
      width: 60px; 
      height: 3px;
      display: flex;
      background: linear-gradient(90deg, var(--pink), var(--pink-dark));
      border-radius: 2px;
      /* align-self: flex-start; */
      position: absolute;
      left: 45px;
      /* margin-left: 4%; */
    }
    
    .pink-rule-details {
      width: 60px; 
      height: 3px;
      display: block;
      background: linear-gradient(90deg, var(--pink), var(--pink-dark));
      margin: 0 0 48px 0; 
      margin-bottom: 48px;
      border-radius: 2px;
      align-self: flex-start;
      margin-left: 5%;
    }
    .pink-rule {
      width: 60px; 
      height: 3px;
      display: block;
      background: linear-gradient(90deg, var(--pink), var(--pink-dark));
      margin: 0 0 48px 0; 
      margin-bottom: 48px;
      border-radius: 2px;
      /* align-self: flex-start;
      flex-wrap: nowrap; */
    }
    /* ── PHOTOS ── */
    .photos-grid {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
    }
 
    .photo-item { text-align: center; }
 
    .photo-circle {
      width: 150px; 
      height: 150px;
      border-radius: 50%;
      border: 3px solid #2a2a2a;
      overflow: hidden;
      position: relative;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      background: var(--black-card);
      display: flex; align-items: center; justify-content: center;
      color: #444;
      font-size: 13px;
      letter-spacing: 0.1em;
      margin: 0 auto;
    }
    .photo-circle img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
    }
 
    .photo-label {
      margin-top: 14px;
      font-size: 12px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--chrome);
      font-weight: 600;
    }


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

#dc-flag{
  display: flex;
  margin-left: 17.5%;
  width: 150px;
  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#panelLinks, p {
  color: white;
  text-decoration: none;
}

a#links {
  color: var(--white);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif; 
  font-style: italic;
  font-size: var(--font-size);
  font-weight: bold;
}

footer p {
  font-size: 10px;
}

@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; }
}
