/* ===== GENEL AYARLAR ===== */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	background-image: url('style/img/repeatBackGround.jpg');
	background-repeat: repeat;
	background-attachment: fixed;
	font-family: Oswald-VariableFont;
	font-size: 1.4vw;

}
/* ===== FONTLAR ===== */
@font-face{
	font-family: 'BebasNeueFont';
	src: url('style/font/BebasNeue-Regular.ttf') format('truetype');
	font-weight: normal; 
    font-style: normal;
	
}
@font-face{
	font-family: 'Oswald-VariableFont';
    src: url('style/font/Oswald-VariableFont_wght.ttf') format('truetype');
    font-weight: normal; 
    font-style: normal;
}
#_container {
	background-color: #000;
	width: 90%;
	height: 100%;
	padding: 10% 1em 1em 1em;
	margin: auto;
	color: #eee;
	
}
h1,h2,h3,h4{
	font-family: BebasNeueFont;
}

a {
	transition: color 0.5s, background-color 0.5s;
}

ol {
	padding-inline-start: 0px;
}

li a {
	background-color: #000;
	color: #eee;
	padding: 0.1em;
	border: 0.1em solid #000;
	border-radius: 0.2em;

}

h1 {
	margin-left: 0.5em;
	margin-bottom: 1em;
	margin-top: 0.5em;
	width: 100%;
	text-transform: uppercase;
}


/* ===== HEADER ===== */
.header {
	position: fixed;
	z-index: 10;
	background-color: #000;
	width: 100%;
	margin: auto;
	color: #eee;
	font-size: 1.7vw;
	align-items: center;
	display: flex;
	justify-content: space-between;
}

#_logo {
	width: 5em;
	height: auto;
	margin: 10px;
	padding-left: 2em;
}

.navigation {
	float: right;
	width: auto;
}

.navigation ol {
	list-style: none;
	width: auto;
	display: flex;
}

.navigation ol li {
	font-weight: bold;
	text-decoration: none;
	margin: 0.2em 0.55em;
}

.navigation ol li a {
	font-size: 1.8vw;
	font-family: BebasNeueFont;
	color: #ddd;
	text-decoration: none;
	text-transform: uppercase;
}

.navigation ol li a:hover {
	color: #000;
	background-color: #fff;
}


/* ===== SLIDER ===== */
.slider {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin: 0px auto 1% auto;
	padding: 0.5em 0px;
}

.mainBanner {
	width: 75%;
	position: relative;
}

.mainBanner img {
	width: 100%;
	border: 0.1em solid #fff;
	border-radius: 0.5em;
}

.mainBanner p {
	display: flex;
}

.mainBannerAbout {
	position: absolute;
	background-color: #fff;
	visibility: hidden;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -30%);
	width: auto;
	text-decoration: none;
	text-decoration-color: #fff;
	border: 0.2em solid #000;
	border-radius: 0.5em;
}

.mainBannerAbout p {
	color: #000;
	padding: 0.5em;
	font-weight: bold;
}

.mainBanner:hover .mainBannerAbout {
	text-align: center;
	visibility: visible;
	display: block;
}

.sideBannerParent {
	align-self: flex-start;
	width: 21%;
}

.sideBannerParent img {
	width: 100%;
	margin: 1% 0 0 0;
	border: 0.1em solid #fff;
	border-radius: 0.5em;
	float: right;
	display: block;
	margin-bottom: 10%;
}


/* ===== ABOUT US ===== */
.aboutUs {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.aboutUsHeader {
	width: 100%;
}

.aboutUsImage {
	width: 30%;
	margin: auto;
}

.aboutUsImage img {
	width: 100%;
}

.aboutUsText {
	width: 60%;
	margin: auto;
}

.aboutUs p {
	font-size: 1.4vw;
}


/* ===== BAND ===== */
.bandList ol {
	width: 100%;
	list-style: none;
	display: flex;
}

.bandList img {
	width: 100%;
}

.bandList li {
	margin: 0px auto;
	width: 20%;
}

.bandList p {
	text-transform: uppercase;
	font-weight: bold;
	margin: 0px 0px 0.3em 0px;
}

.bandList h5 {
	text-align: right;
	font-style: italic;
	margin: 0px 0px 0.1em 0px;
}


/* ===== TOURS ===== */
.toursDiv table {
	border: 0.1em solid #fff;
	border-radius: 0.1em;
	width: 80%;
	margin: auto;
}

.toursDiv td, tr {
	border: 0.1em solid #fff;
	border-radius: 0.1em;
	width: auto;
	margin: auto;
	color: #eee;
	font-family: Arial;
	text-align: center;
}

.toursDiv a {
	font-weight: bold;
	text-decoration: none;
	color: #eee;
}

.toursDiv td:hover {
	color: #000;
	background-color: #fff;
}

.toursDiv td:hover a {
	color: #000;
}


/* ===== ALBUMS ===== */
.albumDiv {
	width: 100%;
}

.albumList {
	list-style: none;
	display: flex;
	justify-content: center;
}

.albumList li {
	position: relative;
	margin: 1em;
	width: 20%;
	overflow: hidden;
}

.albumList img {
	width: 100%;
	transition: transform 0.7s;
}

.albumList h4 {
	margin: 0px;
	text-align: center;
}

.albumList a {
	font-weight: bold;
	text-decoration: none;
	color: #eee;
}

.albumHover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .8s ease;
	z-index: 5;
}

.albumList li:hover img {
	transform: scale(1.2);
}

.albumList li:hover .albumHover {
	opacity: 1;
}

.albumHover a {
	font-size: 2em;
	color: #fff;
	padding: 0.5em;
	border: 0.1em solid #fff;
	border-radius: 0.5em;
	text-decoration: none;
	font-weight: bold;
	margin: .5em;
}

.albumHover a:hover {
	color: #000;
	background-color: #fff;
}


/* ===== FOOTER ===== */
.footerDiv {
	width: 100%;
	background-color: #000;
	color: #fff;
}

footer {
	font-size: 1vw;
}

footer h1 {
	font-size: 3vw;
}

footer ol {
	margin-block-start: 0px;
	margin-block-end: 0px;
}

.footerDiv h1 {
	margin: 0px;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
}

.contactInfo {
	position: relative;
	display: flex;
	justify-content: center;
	list-style: none;
}

.contactInfo ol {
	position: relative;
	text-align: center;
	list-style: none;
}

.contactInfo li {
	justify-content: space-between;
	margin: 2em 1em;
	text-transform: uppercase;
	font-weight: bold;
}

.footer li a {
	text-decoration: none;
	color: #fff;
	font-size: 1em;
}

.contactPolicies {
	position: relative;
	display: flex;
	justify-content: center;
	list-style: none;
}

.contactPolicies li {
	margin: 1em 1em 1em 1em;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
}

.footer ol li a:hover {
	color: #000;
	background-color: #fff;
}

#contactIcons {
	font-size: 2em;
}


/* ===== SCROLL MARGIN ===== */
#_aboutUs,
#_band,
#_tours,
#_albums,
#_contact {
	scroll-margin-top: 6.5em;
}