@charset "UTF-8";
/* CSS Document */

body{
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	margin: 0;
	line-height: 1.6;
	
}

p{
	padding: 20px;
	font-size: 25px;
}

header{
	background-image: url(guitarheader.jpg);
	padding: 10px;
	display: flex;
	color: white;
	height: 300px;
	justify-content: space-between;
	background-position: center;
	text-align: center;
	align-items: center;
}

footer{
	background-color: sienna;
	color: antiquewhite;
	padding: 10px;
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	
	
}

img{
	align-content: center;
	transition: transform 0.3s, filter 0.3s;
}

img:hover {
	transform: scale(1.05) rotate(1deg);
	filter: brightness(1.2);
}

h1{
	text-align: center;
	width: 100%;
	font-size: 5rem;
}

h2{
		text-align: center;
		font-size: 4rem;
}

background{
	background-color: antiquewhite;
}

nav{
	background: #222;
	color: white;
	justify-content: space-around;
	padding: 5px;
	display: flex;
	
}

.navbar{
	padding: 10px 0;
	display: flex;
	justify-content:center;
	background-color: #333
	
}


nav a {
	color: white;
	padding: 8px;
	margin-left: 15px;
}

nav-links{
	list-style-type: none;
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: center;
	gap: 15px;
}

.nav-links li{
	margin: 0;
}

.nav-links li a{
	color: white;
	text-decoration:none;
	padding: 14px 20px;
	display: block;
}

.nav-links a{
	color: white;
	text-decoration: none;
	font-weight: bold;
	display: block;
	font-size: 18px;
	border-radius: 5px;
}

.nav0links a:hover{
	background: darkorange;
}

.nav-links li a:hover {
	background-color:darkorange;
	border-radius: 4px;
}

nav ul{
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: center;
	list-style-type: none;
	font-size: 20px;
}

nav ul li{
	margin: 0 15px;
	font-size: 20px;
}

nav a:hover {
	background: orange;
	border-radius: 5px;
}

input, textarea {
	width:100%;
	margin:10px 0;
	padding: 10px;
}




.container {
	display: flex;
	grid-template-columns: 1 1;
	gap: 20px;
	padding: 20px
	
}

.form-container {
	position: relative;
	padding: 20px;
}


button{ 
	background: orange;
	padding: 10px;
	cursor: pointer;
	border: none;
}

button:hover {
	background: darkorange;
}

.btn-primary {
	background-color: sienna;
}

.btn-primary:hover{
	background-color: darkorange;
}

.featured {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: space-around;
   align-items: center;
   padding: 20px;
}

.album {
   width: 120px;
   height: 120px;
   background: lightgray;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.3s;
}


.album:hover {
   transform: translateY(20px) scale(1.2);
}


.album img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 5px;
}

.album:hover::after {
   opacity: 1;
}

.album::after {
   display: block;
   font-size: 10px;
   opacity: 0;
}

table {
   width: 80%;
   border-collapse: collapse;
	font-size: 18px;
	margin-right: auto;
	margin-left: auto;
	
}



table, th, td {
   border: 5px solid #68351D;
   padding: 8px;
   text-align: left;
	font-size: 18px;
}

th {
   background: sienna;
	color: antiquewhite;
}

.float-img {
   float: left;
   width: 150px;
   margin-right: 15px;
}


@media (max-width: 900px){
	.container {
		grid-template-colums: 1;
		}
	}
@media (max-width: 600px) {
	nav{
		flex-direction: column;
		align-items: center;
	}
}




.carousel-item{
	min-width: 100%;
	scroll-snap-align: center;
	position: relative;
}

.carousel-item img{
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
}


.carousel {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
	
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


.hero{
	background-image: url("guitar.jpg");
	height: 300px;
	background-size: cover;
	background-position:center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero h1{
	color: white;
	font-size: 3rem;
	background: rgba(0,0,0,0.5);
	padding:10px 20px;
	border-radius: 10px;
}

li::marker {
	color: darkorange;
}

li{
	font-size: 1.3rem;
	padding-left: 50px;
	padding-right: 50px;
}

ul{
	padding-left: 50px;
	padding-right: 50px;
}
