/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header{
	background-color:#E5001C;
	color: white;
	padding: 10px 0;
	text-align: center;

}
footer{
	padding: 10px;
	background-color: blanchedalmond;
}
.contact-form{
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 350px;
}

.contact-form label, .contact-form input, .contact-form textarea {
	display: block;
	width: calc(100% -22px);
	margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.contact-form button{
	background-color: #007bff;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100px;
}

.contact-form button:hover{
	background-color: #0056b3;
}

.obfuscated-email{
	display: none;
}

#email-display{
	margin-bottom: 10px;
}
.site-nav {
	position: relative;
	float: right;
	z-index: 400;
	top: 0;
	left: 0;
	display: block !important;
	width: 80%;
	padding: .75em 1em 0 0;
	opacity: .95;
	background: none;
}

.site-nav ul {
	list-style-type: none;
	margin: 0;
	text-align: right;
}

.site-nav ul li {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 1.5em;
}

.site-nav ul li a {
	font-size: .85em;
	padding-bottom: .5em;
	text-decoration: none;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.site-nav ul li a:hover {
	outline: none;
	border-bottom: 1px solid white;
}

/* General body styling */
body {
  	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  	background-color:burlywood; /* Stone color background */
 	color: #333; /* Dark gray text color */ 
}

section {
	
  padding: 40px 20px;
  text-align: center;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

h1, h2 {
  color: #333; /* Dark gray text for headings */
}

#songs{
}

#songs h2{
	text-decoration:underline;
}
p {
  font-size: 1.1em;
  color: #555; /* Slightly lighter gray for the paragraph text */
  margin: 10px 0;
}

ul li {
	text-align:center;
}

#gigs{
 list-style: none;
}
/* Gallery section */
#gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-wrapper {
  display: flex;
  justify-content: center;
}

.gallery-images {
  display: flex;
  animation: roll 30s linear infinite;
}

.gallery-images img{
	margin: 0 10px;
	max-width: 150px;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.gallery-images img:hover{
	transform: scale(1.1);
}

@keyframes roll {
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(-100%);
	}
}

/* Responsive layout for fluid design */
@media (max-width : 750px ){
  nav a {
    padding: 10px 15px;
    font-size: 14px;
  }
}
#cookie-banner{
	background-color: crimson;
	color: #fff;
	padding: 15px;
	bottom: 0;
	text-align: center;
	z-index: 1000;
}

#cookie-banner a{
	color: #ffcc00;
	text-decoration: none;
}

#cookie-banner button {
	background-color: #ffcc00;
	color: #333;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
}

#cookie-banner button:hover{
	background-color: #e6b800;
}
