@font-face {
    font-family: musicalogo;
    src: url("../assets/Neonblitz.otf") format("opentype");
}
@font-face {
    font-family: musicatext;
    src: url("../assets/Avenir LT Std 35 Light.otf") format("opentype");
}
@font-face {
    font-family: musicatext;
    src: url("../assets/Avenir LT Std 85 Heavy.otf") format("opentype");
	font-weight: bold;
}

.musica{font-family: musicalogo; font-size: 2em; color: #ac9d78}
.gold{color:#ac9d78}
.white{color:#fff;}
.pointer{cursor: pointer}
.pointeroff{cursor: default !important}

.hamburger-menu {

}

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

body, html {
    height: 100%;
	font-family: musicatext,sans-serif; 
	background: url("../assets/musicabg3.png");
	background-size: cover;
	color:#fff;
}

.container {
	z-index: 10;
	position:relative;
    display: grid;
    height: 100%;
	max-width:800px;
	margin:auto;
	width: 98%;
}
.grid_span2{grid-column: span 2;}
.grid_index{
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
     grid-template-rows: 10vh repeat(4,22.25vh);
	
   grid-template-areas:
        "header header"
        "box7 box7"
        "box1 box2"
        "box3 box4"
        "box5 box6"
	   ;
}
.grid_index5r{
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    /* grid-template-rows: 10vh 17.8vh 17.8vh 17.8vh 17.8vh 17.8vh ; */
     grid-template-rows: 10vh repeat(5,17.75vh);
	
   grid-template-areas:
        "header header"
        "box1 box2"
        "box3 box4"
        "box5 box6"
        "box7 box8"
        "box9 box10"
	   ;
}
.grid_10_80{
    grid-template-columns: 1; 
    grid-template-rows: 10vh 10vh 79vh; 
   grid-template-areas:
        "header "
        "box1"
        "box2"
	;
}
.grid_10_80>div{width: 100%}

.header {
	border:none !important;
	padding:0 !important;
	cursor: pointer;
}
.column {
	border:none !important;
	margin:none !important;
	height: 100%;
	padding:0 !important;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ac9d78;
    box-sizing: border-box;
	padding:10px;
}

.menubox{
    border: 0px solid #ac9d78 !important;
}
.menuLeftCol{
justify-content:flex-end !important;
}
.menuRightCol{
justify-content:flex-start!important;
}

.box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
	border:0;
}
.box a{
    max-width: 100%;
    max-height: 100%;

}


.col-1,
.col-3 {
  flex: 1;
    display: flex;
    align-items: center;
}

.col-2 {
  flex: 2;
}

.colFlex1{
	flex: 1;
	display: flex;
	align-items: center;
}	
.colFlex1c{
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}	
/* dialog Modal */
.dialog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    font-family: 'Avenir LT Std', Arial, sans-serif;
}

.dialog-modal-content {
    background: #21384A;
    padding: 24px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.dialog-modal h2 {
    color: #AC9D78;
    margin: 0 0 16px 0;
    font-size: 1.5em;
    font-weight: 600;
}

.dialog-modal p {
    line-height: 1.6;
    margin: 0;
    font-size: 1em;
}

.dialog-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.dialog-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* Menu Popup */
.menu-popup {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100%;
  background: #21384A;
  border-right: 1px solid #AC9D78;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.menu-popup.open {
  left: 0;
}

.menu-content {
  padding: 80px 20px 20px 20px;
  height: 100%;
  overflow-y: auto;
}

.menu-header {
  font-family: 'Avenir LT Std';
  font-size: 18px;
  color: #AC9D78;
  font-weight: bold;
  margin-bottom: 4px;
  text-align: left;
}

.menu-subheader {
  font-family: 'Avenir LT Std';
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: left;
  opacity: 0.8;
}

.menu-item {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: 'Avenir LT Std';
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.menu-item:hover,
.menu-item:focus {
  background: rgba(172, 157, 120, 0.1);
  border-color: #AC9D78;
  transform: translateY(-1px);
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Menu overlay for closing when clicking outside */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

#dialogContentText{margin-bottom: 12px}

.mydetails-modal strong {
    color: #AC9D78;
    font-weight: 600;

}

.top-right-corner {
    position: fixed;
    top: 0;
    right: 0;
    width: 43vw;
    height: auto;
    pointer-events: none;
    z-index: 0;
    max-width: 300px;
    max-height: 300px;
}

.bottom-left-corner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 43vw;
    max-width: 300px;
    max-height: 300px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.menuLink{cursor: pointer}

 /* Button */
button {
  width: 100%;
  padding: 0.8rem;
  background: #ac9d78;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #3b54cc;
}

.buttonsml{
padding:0.5rem ;
font-size: 0.8rem ;

}

iframe{
	left:0;
	width:100%;
	height:100%;
	background: #ddd;
	display: block;
} 

h1{
	margin: 0;
	padding: 0;
	font-size: 1.5em;
	font-weight: bold;
}

img{border:0}

@media only screen and (max-width: 420px) {
	.buttonsml{
		padding:0.4rem ;
		font-size: 0.6rem ;

		}
}
