
/*_________________*/
/*____FONTS________*/
/*_________________*/

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}



.leckerli-one-regular {
  font-family: "Leckerli One", cursive;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.eb-garamond-light {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


/*_________________*/
/*__General page___*/
/*_________________*/

body {
  background: linear-gradient(145deg, 
            rgba(2, 0, 36, 1) 0%, 
            rgba(9, 9, 121, 1) 35%,
            rgba(0, 212, 255, 1) 100%);
  margin: 0;
  padding: 40px 20px;
  font-family: "EB Garamond",serif;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/*_________________*/
/*_headers styles__*/
/*_________________*/

h1 {
  color: #11a8df;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px,3vw,36px);
  margin-bottom: 10px;
}

h2 {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(60px,12vw,100px);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-top: 0;

}

h3 {
  color: #ffffff;
  font-size:clamp(32px,4vw,48px);
  font-style: italic;
  margin: 20px 0 10px;
  text-transform: lowercase;
  
}

h4 {
  color: 
  #ffffff;
  font-family: "Leckerli One", cursive;
  font-size: 36px;
  line-height: 80%;
}

h5 {
  color:  
  #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h6 {
  font-family: "eb-garamond", serif;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h7 {
  font-family: "eb-garamond-light", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}


p {
  color: #ffffff;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  max-width: 800;
  line-height: 1.0;
  text-align: left;
}

/*_________________*/
/*____format_______*/
/*_________________*/


ul {
  list-style: circle;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  font-weight:400;
  font-size:  24px;
  line-height: 100%;
  padding-left: 200px;
  font-style: italic;
  text-align: left;
}

/*__________________*/
/*________DIV__&____*/
/*____containers____*/
/*__________________*/

.container {
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  background: linear-gradient(145deg, 
            rgb(128, 107, 205) 0%, 
            rgb(160, 52, 160) 35%,
            rgb(255, 0, 0) 100%); 
border-radius: 25px;
padding: 40px;
width: 100%;
max-width: 500px;
margin-top: 30px;
box-shadow: 0 0 25px rgba(0,212,255,0.2);
text-align: center;
}

/*______________________*/
/*_shop location card___*/
/*______________________*/



.shop card {
   background: linear-gradient(135deg, #ff0000 0%, #ff0099 100%);
   border-radius: 16px;
   padding: 25px 20px;
   box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
   transition: all 0.3s ease;
  }

.shop card:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255,165,0,0.6);
  }


/*______________________*/
/*___Form_______________*/
/*______________________*/

form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

label{
  font-family: "Montserrat",sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="submit"] {
  width: 95%;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  font-family: "Montserrat",sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"] {
background-color: rgba(255, 255, 255, 0.644);
color: #ffffff;
transition: 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
box-shadow: 0 0 10px rgba(0,212,255,0.6);
}

input[type="submit"] {
background-color: #11a8df;
color: #ffffff;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 2px;
transition: all 0.3s ease;
}

input[type="submit"]:hover {
background-color: #00bfff;
box-shadow: 0 0 40px  rgba(0,212,255,0.5);
}

/*______________________*/
/*___paragraph style____*/
/*______________________*/

p{
  color: #ffffff;
  font-size: 36px;
  line-height: 0.8;
  max-width: 600px;
  text-align: center;
  margin-top: 10px;
}

/*______________________*/
/*___form style_________*/
/*______________________*/

.styled-form-multi,
.styled-form-single {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(9, 9, 121, 0.3);
  font-family: "Montserrat", sans-serif;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}


.styled-form-multi label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b8b8d4;
}

.styled-form-multi input[type=text],
.styled-form-multi input[type=email],
.styled-form-multi input[type=number],
.styled-form-multi input[type=password]{
  width: 100%;
  padding: 12px 16px;
  border:none;
  border-radius: 10px;
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  outline: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.styled-form-multi input:focus{

  box-shadow: 0 0 10px rgba(0,212,255,0,6);
  background-color: #11a8df;
  color: #ffffff;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Montserrat",sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.styled-form-multi input[type=submit]:hover {
  background-color: #00bfff;
 color: #ffffff;
 box-shadow: 0 0 20px rgba(0,212,255,0.5);
}

/* _____________________________*/
/* __checkbox + Radio styling___*/
/* _____________________________*/

input[type=checkbox],
input[type=radio]{
accent-color: #11a8df;
transform: scale(1.2);
margin-right: 8px;
}

/* ________________*/
/* __Link styles___*/
/* ________________*/

a{
  color: #11a8df;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover{
  color: #00d4ff;
}