* {
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'barlow';
}

@font-face {
  font-family: 'sf-pro-regular';
  src: url(font/sf-pro-regular.OTF);
}
@font-face {
  font-family: 'sf-pro-title';
  src: url(font/sf-pro-title.OTF);
}
@font-face {
  font-family: 'tusker';
  src: url(font/TuskerGrotesk-5700Bold.otf);
}
@font-face {
  font-family: 'blastimo';
  src: url(font/blastimoswash.ttf);
}
@font-face {
  font-family: 'qurova';
  src: url(font/qurova.ttf);
}
@font-face {
  font-family: 'handipro';
  src: url(font/handipro.otf);
}
@font-face {
  font-family: 'run';
  src: url(font/run.ttf);
}
@font-face {
  font-family: 'musticapro';
  src: url(font/musticapro.otf);
}
@font-face {
  font-family: 'barlow';
  src: url(font/Barlow-Medium.ttf);
}

body {
  background-color: #090909;
  height: auto;
  overflow-x: hidden;
  margin: auto;
}


header{
    position: fixed;
    background-color: #090909;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-items: center;
    margin: auto;
    z-index: 3;
}

header nav{
    position: relative;
    background-color: none;
    height: 100%;
    max-width: 1460px;
    width: 100%;
    margin: auto;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
list-style: none;
user-select: none;
}
header nav a{
    display: flex;
    margin: auto;
}

.twosidelogocntr{
    position: relative;
    background-color: none;
    display: flex;
    justify-items: flex-start;
    margin-left: 10px;
}

.twosidelogo{
    position: relative;
    width: clamp(50px,4vw,100px);
}

.twosidelogo img{
width: 100px;
user-select: none;
}

.buttons{
position: relative;
display: flex;
flex-direction: row;
gap: 10px;
height: 100%;
width: auto;
margin-right: 10px;
}   

.pricing , .contact , .dashboard {
position: relative;
background-color: none;
text-decoration: none;
height: 50%;
display: flex;
border-radius: 5px;
align-items: center;
transition: all .5s ease-in-out;
}

.dashboard {  
    background-color: #e73c45;

}
 .dashboard button:hover{
    background-color: #280b0c32;
 }

header nav button{
position: relative;
height: 100%;
width: 100px;
border-radius: 5px;
border: 0;
color: #ffffff;
font-family: 'sf-pro-title';
cursor: pointer;
background-color: none;
background: none;
transition: all .1s ease-in-out;
}
.contact button:hover , .pricing button:hover{
border-radius: 0px;
    border-bottom: 1px solid white;
    color: #d5d5d5;
}

main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #090909;
}
main h3{
    font-size: clamp(2vw,14vw,15rem);
    font-family: 'tusker';
    color: rgba(255, 255, 255, 0.663);
    width: 100%;
    max-width: 1800px;
    margin-top: 100px;
    text-align: center;
letter-spacing: 0.3vw;
user-select: none;
}
main .officialemails{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1024px;
    height: auto;
gap: 20px;
    text-align: center;
}
main .officialemails .introp{
    font-size: 1rem;
    font-family: 'handipro';
    font-weight: bold;
    color: white;
    width: auto;
    text-align: center;
    margin-top: 15px;
}
main .officialemails ul{
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 768px;
padding: 25px;
background: rgba(24, 24, 24, 0.416);
box-shadow: 0 4px 30px #0f0f0f10;
backdrop-filter: blur(4.8px);
-webkit-backdrop-filter: blur(4.8px);
border: 1px solid rgba(33, 33, 33, 0.378);  
border-radius: 5px;
transition: all .4s ease-in-out;
cursor: pointer;
}
main .officialemails ul:hover h4{
    color: #e73c45;
}
.mails.clicked{
  transform: scale(0.95) perspective(1000px) translateZ(-5px);
  opacity: 0.9;
}
main .officialemails h4{
    font-size: 1.2rem;
    font-family: 'qurova';
    color: white;
    width: 98%;
    text-align: center;
    transition: all .3s ease-in-out;
}
main .officialemails p{
    font-size: 0.8rem;
    font-family: 'musticapro';
    color: rgba(255, 255, 255, 0.889);
width: 98%;
margin-top: 5px;
}



#toast {
  position: fixed;
  bottom: -60px; 
  left: 50%;
  transform: translateX(-50%);
  background: #28a745; 
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: bottom 0.4s ease;
}

#toast.show {
  bottom: 30px;
}
#toast span{
    font-family: 'handipro';
}
#toast .icon {
  font-size: 18px;
}

    footer{
        position: absolute;
    width: 100%;
    height: 500px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
        margin-top: 100px;
    }
        .footerbackground{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
        max-width: 1900px;
        width: 100%;
        height: 100%;
background: rgba(47, 47, 47, 0.45);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(12.9px);
-webkit-backdrop-filter: blur(12.9px);
border-top-left-radius: 50px;
border-top-right-radius: 50px;
    }
.footercontainer{
         position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
        width: 90%;
        height: 90%;
   
}
.ftop{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70%;
}   
.fcntr1{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
background: url(img/2side\ music\ no\ text.png);
background-repeat: no-repeat;
background-size: 50%;
background-position: 50%;
}


.fcntr2{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
}
.fcntr2 ul{
    display: none;
}
.fcntr3{
      position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    gap: 10%;
}
.links{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: auto;
    height: 100%;
    color: white;
    gap: 5%;
}
.links h3{
color: white;
font-family: 'handipro';
font-size: 150%;
padding: 10px;
}
.footerlinks{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    height: 50%;
    gap: 5%;
}
.footerlinks a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    height: 20%;
    font-family: 'musticapro';
    transition: all .1s ease-in-out;
font-size: 0.75rem;
padding: 10px;
text-wrap-mode: nowrap;
text-align: left;
}
.footerlinks a:hover{
background: rgba(53, 53, 53, 0.45);
border-radius: 5px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.9px);
-webkit-backdrop-filter: blur(4.9px);
}

.fbot{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30%;
    border-top: 1px solid #ffffff1a;
}  
.fcntr4{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
}
.fcntr4 h3{
    font-family: 'handipro';
    font-size: 120%;
    color: white;
    width: 50%;
}
.fcntr4 p{
    font-family: 'handipro';
    font-size: 100%;
    color: white;
    text-decoration: none;
    width: 50%;

}
.fcntr5{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 100%;
}
.fcntr5 p{
    font-family: 'musticapro';
    font-size: 100%;
    color: white;
}
.fcntr6{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    width: 30%;
    height: 100%;
}
.fcntr6background{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80%;
gap: 10%;
}

.fcntr6background .socialmediaicon{
    position: relative;
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
    user-select: none;
}  
.fcntr6background .socialmediaicon a{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
width: 50px;
height: 50px;
user-select: none;
background: rgba(50, 50, 50, 0.45);
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.9px);
-webkit-backdrop-filter: blur(4.9px);
transition: all .3s ease-in-out;
}
.fcntr6background .socialmediaicon a:hover{
background: #59595973;
backdrop-filter: blur(4.9px);
-webkit-backdrop-filter: blur(4.9px);
}
.fcntr6background .socialmediaicon a img{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 40%;
height: 40%;
user-select: none;
}

@media (max-width: 900px) {
    footer{
        height: 550px;
    }
.ftop{
    display: flex;
    flex-direction: column;
    height: 80%;
    width: 100%;
}
.fcntr1{
    display: flex;
    flex-direction: column;
    height: 50%;
    width: 100%;
}
.fcntr2{
    width: 100%;
    justify-content: space-around;
    height: auto;
    flex-direction: row;
    margin-bottom: 20px;
}
.fcntr2 ul{
    display: flex;
}
.fcntr3{
    display: none;
}
.links h3{
font-size: 1.2rem;
}
.footerlinks a{
    font-size: 0.7rem;
}
.fbot{
    display: flex;
    flex-direction: column;
    height: 20%;
    width: 100%;
}
.fcntr4{
    display: none;
}
.fcntr5{
    width: 100%;
}
.fcntr6{
    width: 100%;
}
    }

    @media (max-width:375px){
    header nav .buttons .pricing {
        display: none;
    }
}