* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/*nav bar (inside header by position:abs)*/

nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: center;
    z-index: 1;
}

.logo {
    padding:  35px 20px 20px 100px;
    width: 72%;
}

nav ul {
    display: flex;
    justify-content: space-between;
    width: 720px;
    padding: 54px;
}


nav ul a {
    color: white;
}

nav ul li .nav-btn {
    display: inline-block;
    border: 2px white solid;
    border-radius: 10px;
    padding: 10px 50px 10px 50px;
    border: 2px solid white;
    border-radius: 288px;
    margin-top: -10px;

}

/*headr*/

header {
    width: 100%;
    height: 720px;
    background-image: url(/img/bg.png);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    column-gap: 200px;
}

header h1 {
    color: white;
    font-size: 100px;
}

header .describe-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 500px;
    padding-right: 35px;
}
header .describe-page,
.nav-links2 a {
    color: white;
}

header .describe-page h1 {
    font-size: 49px;
}

header .describe-page h3 {
    opacity: .5;
    word-spacing: 13px;
}

header .nav-links2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

header .nav-links2 a {
    padding: 15px;
    display: inline-block;
    border-radius: 27px;
    width: 180px;
    text-align: center;
}

header .nav-links2-two {
    border: 2px solid white;
} 

header .nav-links2-one {
    background-color: #F5167E;
}



/*Search Box*/

.search-box {
    position: absolute;
    top: 650px;
    height: 140px;
    width: 80%;
    background-color: #242565;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 10%;  
}

.search-box div {
    padding: 30px;
}

.search-box div label {
    display: block;
    color: white;
    opacity: .7;
    margin-left: 13px;
    margin-bottom: 16px;
}

.search-box input,
.search-box select {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 26px;
    border-bottom: 1px #7778B0 solid;
}

.search-box select option {
    color:  #4C4D8B;
    background-color: transparent;
}

.search-box input:focus,
.search-box select:focus {
    outline: none;
}


/*event page head*/

main {
    width: 80%;
    margin: 10% auto;
}

.event-head {
    font-size: 35px;
    color: #242565;
    margin: 5% auto;
    width: 80%;
    text-align: center;
}

/*event page content*/

main .grid-cards {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(3,1fr);
    gap: 5%;
}

main .grid-cards img {
    width: 100%;
}

main .grid-cards .row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
}

main .grid-cards .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
}

main .grid-cards .row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    margin-bottom: 5%;
}


.grid-cards .concert-info {
    padding: 15px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
}

.grid-cards .concert-info .date-event p {
    color: #120daf;
    font-size: 10px;
    font-weight: bold;
    padding-left: 12px;
}

.grid-cards .concert-info .date-event h3 {
    font-size: 37px;
}

.grid-cards .concert-info .concert-place {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.grid-cards .concert-info .concert-place h4 {
    font-size: 16px;
    word-spacing: 5px;
}

.grid-cards .concert-info .concert-place p {
    opacity: .5;
    word-spacing: 5px;
}

.grid-cards .card-1,
.grid-cards .card-2, 
.grid-cards .card-3,
.grid-cards .card-4,
.grid-cards .card-5, 
.grid-cards .card-6 {
    box-shadow: 5px 5px 150px rgb(34 25 224/ 25%) ;
}

.grid-cards .row-1 .card-1,
.grid-cards .row-1 .card-2,
.grid-cards .row-2 .card-3,
.grid-cards .row-2 .card-4,
.grid-cards .row-3 .card-5, 
.grid-cards .row-3 .card-6 {
    height: 435px;
    border-radius: 25px;
}

/*footer*/

footer {
    width: 100%;
    height: 430px;
    position: relative;
    bottom: 0;
    background-color: #0A075F;
    padding: 40px;
    display: grid;
    grid-template-rows: 1fr auto;
}

footer .copyright {
    text-align: center;
    color: #fff;
    border-top: 1px #4C4D8B solid;
    padding-top: 23px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    color: white;
    column-gap: 40px;
}

.footer-content p {
    opacity: .7;
}

.footer-content-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

.footer-content-2 {
     display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

.footer-content-2 h2 {
    margin-bottom: 34px;
}

.footer-content-3 {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}


.footer-content-3 h2 {
    margin-top: 9px;
}

.footer-content-4 {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: start;
    position: relative;
}

.footer-content-4 .field-email input,
.footer-content-4 .field-email button{
    background-color: transparent;
    border: none;
}

.footer-content-4 .field-email  input {
    background-color: white;
    color: black;
    padding: 14px;
    padding-right: 182px;
    border-radius: 20px;
}
.footer-content-4 .field-email button {
    color: white;
    position: absolute;
    background-color: #F5167E;
    padding: 10px;
    border-radius: 20px;
    top: 218px;
    right: 63px;
}

.footer-content-4 .field-email input:focus {
    outline: none;
}
