:root {
    --palette-dark: #171C26;
    --palette-dark-blue: #1A2334;
    --palette-off-white: #f7f7f7;
    --palette-off-white-subtle: #B3B5B8;
    --palette-magenta-light: #F43192;
  }
  
  html {
    font-size: 16px;
  }
  
  body {
    background-color: var(--palette-dark);
    margin: 0;

   
  }
  
  main {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
 
  
  /* Content */
  #content {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    row-gap: clamp(0.5rem, 4vh, 2.5rem);
    height: 100%;
    margin-top: 100px;
    margin-bottom: 3rem;
  }
  @media only screen and (orientation: portrait) {
    #content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  }
  
  /* QR code */
  #qr-code-container {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  @media only screen and (orientation: portrait) {
    #qr-code-container {
      justify-content: flex-end;
    }
  }
  
  #qr-code {
    width: clamp(15rem, 30vw, 50vh);
    height: auto;
  }
  @media only screen and (orientation: portrait) {
    #qr-code {
      width: clamp(10rem, 90vw, 30vh);
    }
  }
  
  /* Text */
  #text {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: clamp(0.5rem, 4vh, 2.5rem);
    padding: 3vw;
    height: 100%;
    box-sizing: border-box;
  }
  @media only screen and (orientation: portrait) {
    #text {
      justify-content: flex-start;
    }
  }
  
  @media only screen and (orientation: portrait) {
    #content.closed > #text {
      justify-content: center;
    }
  }
  
  #primary-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.25rem;
  }
  
  #open-today {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--palette-dark-blue);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 30vw;
  }
  @media only screen and (orientation: portrait) {
    #open-today {
      max-width: 60vw;
    }
  }
  
  #content.closed #open-today {
    row-gap: 0.5rem;
  }
  
  #opening-hours {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2rem;
  }
  @media only screen and (orientation: landscape) {
    #opening-hours {
      max-width: 50vw;
    }
  }
  
  #opening-hours > .entry {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
  }
  
  #details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.25rem;
    max-width: 45vw;
  }
  @media only screen and (orientation: portrait) {
    #details {
      max-width: 85vw;
    }
  }
  
  /* Font sizes */
  .title {
    margin: 0;
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 4rem);
    line-height: 1.14em;
  }
  @media only screen and (orientation: portrait) {
    .title {
      font-size: clamp(1.75rem, 4vw, 4rem);
    }
  }
  
  .body {
    text-align: center;
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 3rem);
    line-height: 1.5em;
  }
  @media only screen and (orientation: portrait) {
    .body {
      font-size: clamp(1rem, 3vw, 3rem);
    }
  }
  
  .caption {
    text-align: center;
    margin: 0.375rem 0 0;
    font-size: clamp(1rem, 1vw, 2rem);
    line-height: 1.5em;
  }
  
  /* Text colors */
  .off-white {
    color: var(--palette-off-white);
  }
  
  .off-white-subtle {
    color: var(--palette-off-white-subtle);
  }
  
  .magenta-light {
    color: var(--palette-magenta-light);
  }
  
  /* Button to trigger JS */
  #view-font-sizes {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 0.75rem;
  }
  
  .ff-white img{
    width: 10px;
    height: 10px;
  }
  
  
  
  .contact {
    display: flex; /* Menyusun elemen secara horizontal */
    align-items: center; /* Menjaga elemen sejajar secara vertikal */
    gap: 10px; /* Jarak antara gambar dan teks */
  }
  
  .contact img {
    width: 30px; /* Atur ukuran gambar */
    height: 30px; /* Pastikan proporsi tetap */
    object-fit: cover; /* Jika perlu menjaga proporsi gambar */
  }
  
  .contact p {
    margin: 0; /* Hilangkan margin default teks */
    font-size: 16px; /* Ukuran teks */
    color: #fff /* Warna teks */
  }
  
  
  
  
  
  
  



  /* Styling untuk dropdown dan label */
.month-selector {
  margin-bottom: 20px;
  text-align: left;
}

.dropdown-label {
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
  color: #dbd7d7;
}

.month-dropdown {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  max-width: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9a9;
  transition: border-color 0.3s ease;
}

.month-dropdown:focus {
  border-color: #007BFF;
  outline: none;
}

/* Responsiveness untuk Mobile */
@media (max-width: 600px) {
  .dropdown-label {
    font-size: 16px;
  }
  
  .month-dropdown {
    font-size: 14px;
    max-width: 100%;
  }
}

/* Responsiveness untuk Tablet */
@media (max-width: 768px) {
  .month-dropdown {
    font-size: 15px;
    max-width: 40%;
  }
}
