@media (max-width:1920px) {}

@font-face {
  font-family: 'Kanit';
  src: url('/fonts/Kanit-Medium.woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bely-display';
  src: url('/fonts/Bely\ Display.ttf');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  color: whitesmoke;
  font-family: "Bely-display", sans-serif;
}

.nav-link {
  color: rgb(211, 111, 26) !important;
}

.hero {
  margin-top: 15vh;
}

.hero h1 {
  font-size: 6rem;
  text-align: end;

}

h1 {
  font-family: "Bely-display", sans-serif;
  color:#C8D6E5
}

.subtitle {
  text-align: center;
}

p,span{
  color:#C8D6E5
}

.button {
  background-color: rgb(211, 111, 26);
  border-radius: 2px;
  border: none;
  color: whitesmoke;
  height: 3%;
  width: 150px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  padding: 5px;
  cursor: pointer;
}

button:hover {
  box-shadow: 0 0 6px rgba(211, 111, 26, 0.8),
    0 0 16px rgba(211, 111, 26, 0.6),
    0 0 24px rgba(211, 111, 26, 0.5);
  transition: all 0.2s ease-in-out;
}

.logo-img {
  max-height: 80px;
  height: auto;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.socials {
  color: rgb(211, 111, 26);
  text-align: end;
  font-size: 1.5rem;
  right: 0;
  bottom: 0;
  padding: 1rem;
}

.socials a {
  text-decoration: none;
  color: rgb(212, 98, 32);
}

.socials i:hover,
.socials a:hover,
.nav-link:hover {
  color: rgb(212, 98, 32);
  text-shadow: 0 0 6px rgba(211, 111, 26, 0.8),
    0 0 16px rgba(211, 111, 26, 0.6),
    0 0 24px rgba(211, 111, 26, 0.5);
  transition: all 0.3s ease-in-out;
}

.map {
  border-color: rgb(211, 111, 26);
  border-width: 5px;
  border-style: solid;
}

.contact {
  color: rgb(211, 111, 26);
}

.contact h1 {
  font-family: "Bely-display", sans-serif;
}

.contact a {
  text-decoration: none;
  color: rgb(211, 111, 26);
}

.title {
  color: rgb(211, 111, 26);
}

form label {
  color: rgb(211, 111, 26);
}

form input {
  background-color: rgba(0, 0, 0, 0.4) !important;
  color: whitesmoke !important;
  border-radius: 4px !important;
}

.custom-btn {
  background-color: rgb(211, 111, 26);
  border: 2px solid rgb(211, 111, 26);
  color: white;
}

.custom-btn:hover,
.custom-btn:focus,
.custom-btn:active,
.custom-btn:visited {
  background-color: rgb(211, 111, 26);
  border-color: rgb(211, 111, 26);
  color: white;
  box-shadow: none;
}

.card {
  overflow: hidden; /* hide image overflow when zoomed */
}

.img-zoom-container {
  overflow: hidden;
  border-radius: 0.25rem 0.25rem 0 0; /* round only top corners */
  max-height: 300px; /* or match your card-img-top height */
}

.img-zoom-container img {
  transition: transform 0.3s ease;
}

.img-zoom-container img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Maintain consistent aspect ratio */
.ratio-box {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 4:3 ratio (adjust to 133% for 3:4, 100% for 1:1, etc.) */
    overflow: hidden;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.ratio-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ratio-box img:hover {
    transform: scale(1.1);
}

/* Standardize card size */
.artist-card {
    width: 100%;
    max-width: 300px;
    height: 100%;
}




/* Sticky top bar */
.mobile-top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  padding: 10px 20px;
  z-index: 1052;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mobile-toggle {
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1053;
}
.mobile-toggle:hover
{
  box-shadow: none;
}

/* Each bar */
.mobile-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Top */
.mobile-toggle span:nth-child(1) {
  top: 0;
}

/* Middle */
.mobile-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

/* Bottom */
.mobile-toggle span:nth-child(3) {
  bottom: 0;
}

/* Active: turn into X */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 50%;
}

/* Fullscreen mobile menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1050;
}

.fullscreen-menu.active {
  transform: translateY(0);
}

.fullscreen-menu a {
  color: rgb(211, 111, 26);
  font-size: 2rem;
  margin: 20px;
  text-decoration: none;
}
