/* Reset styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Global styles */
body {
	font-family: Monaco, monospace;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
}


main {
  padding-top: 80px; /* adjust the padding value as needed */
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

/* Header styles */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	z-index: 100;
}

nav {
	display: flex;
	justify-content: space-evenly;
	background: linear-gradient(0deg, rgba(240,128,128,1) 0%, rgba(0,206,209,1) 50%, rgba(255,165,0,1) 100%);
	align-items: center;
	height: 100%;
	padding: 20px 20px;
}

nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

nav ul li a:hover {
	background: linear-gradient(0deg, rgba(240,128,128,1) 0%, rgba(0,206,209,1) 50%, rgba(255,165,0,1) 100%);
	border-radius: 50px;
	border: 4px inset white;
}

nav ul li a {
	padding: 0 10px;
	height: 100%;
	display: flex;
	align-items: center;
	font-weight: bold;
}

/* Hero section styles */
.section-hero {
	height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #ffa07a;
	color: #fff;
	text-align: center;
}

.section-hero h1 {
	font-size: 4rem;
	margin-bottom: 20px;
}

.section-hero p {
	font-size: 1.5rem;
	margin-bottom: 40px;
}

.cta-button {
	padding: 15px 25px;
	background-color: #fff;
	color: #333;
	font-weight: bold;
	border-radius: 50px;
}

.cta-button:hover {
	background-color: #333;
	color: #fff;
	cursor: pointer;
}

/*about section */
.section-about {
	padding: 100px;
	background-color: #00ced1;
}

.section-about h2 {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
	color: #fff;
}

.about-gallery {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
}

.about-image {
	position: relative;
	width: calc(33.33% - 20px);
	margin-bottom: 40px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #00ced1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.about-image-overlay p {
	color: #fff;
	font-size: 1.5rem;
	text-align: center;
}

.about-image:hover .about-image-overlay {
	opacity: 1;
}

@media only screen and (max-width: 768px) {
.about-gallery {
flex-direction: column;
}
.about-image {
width: 100%;
margin-bottom: 20px;
}
.about-image-overlay p {
font-size: 1rem;
  }
}


/* listen section */
.section-listen {
  background-color: #f08080;
  padding: 50px 0;
  text-align: center;
  padding-top: 100px;
}

.section-listen h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.section-listen p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}

.spotify-player {
  height: auto; /* set height for desktop screens */
  width: 800px; /* set width for desktop screens */
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .spotify-player {
    height: auto; /* set height to auto for mobile screens */
    width: 100%; /* set width to 100% for mobile screens */
  }
}


/* contact section */
.section-book {
  background-color: #ffa500;
  padding: 100px 0;
}

.section-book  h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.section-book  form {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}

.section-book  form label {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-book  form input[type="text"],
.section-book  form input[type="email"],
.section-book  form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1.1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.section-book  form textarea {
  height: 150px;
}

.section-book  form input[type="submit"] {
  display: block
}
  
footer {
  background-color: #ffa500;
  color: #fff;
  text-align: center;
  padding: 20px;
  clear: both;
}








