@charset "utf-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}

html,body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color:#1e1e1e;
	margin: 0;
}

.container {
    max-width: 100%; /* Set the maximum width of the container */
    margin: auto; /* Center the container */
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

h1 {
    position: absolute;
    top: -10%; /* Adjust the value to vertically center the h1 */
    left: 50%;
    transform: translate(-50%, 30%);
    font-family: 'GTEAPAC';
    font-display: auto;
    color: white;
    font-size: 185px;
	font-weight: normal;
	white-space: nowrap; 
    z-index: 2;
}

h4 {
    position: absolute;
    top: 75%; /* Adjust as needed */
    left: 55%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    font-display: auto;
    color: white;
    font-size: 24px;
    font-weight: lighter;
    white-space: nowrap; 
    z-index: 2;
}



.image {
    position: relative;
	max-width: 100%; /* Set the maximum width of the container */
	height: auto;
    margin: auto; /* Center the container */
}


.navi {
    position: absolute;
    top: 3%;
    left: 50%;
	list-style: none;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3% 0;
    gap: 7%;
    z-index: 2;
}

.navi li {
    white-space: nowrap; /* Prevent line breaks within list items */
}

.navi a:link,
.navi a:visited {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.125em;
}

.navi a:hover {
    color: cornflowerblue;
    text-decoration: none;
    font-size: 1.125em;
    transition: 0.2s ease;
    border-bottom: 2px solid cornflowerblue;
    padding-bottom: 1%;
}

/* About */

section {
    position: relative;
    min-height: 100vh;
    padding: 3%;
    min-width: 50%;
    margin: auto;
}

h2 {
    position: absolute;
    color: white;
    top: -35px;
    right: 0;
    transform: translateX(-25%);
    font-size: 70px;
    font-weight: bolder;
    white-space: nowrap; 
}

.image2 img {
    max-width: 50%;
    height: auto;
    margin-left: 10px;
}

#about p {
    position: absolute;
    color: white;
    top: 0;
    right: 4%;
    width: 43%;
    height: 20px;
    transform: translateX(3%);
    font-size: 20px;
    font-weight: normal;
    margin-top: 150px; /* Adjust the margin as needed */
}

/* Top Song */


#top-song {
	min-height: 100vh;
    padding: 3%;
    min-width: 50%;
    margin: auto;
}

#top-song h2 {
    position: absolute;
    color: white;
    top: -7%;
    left: 0; /* Change right to left */
    transform: translateX(4%);
    font-size: 70px;
    font-weight: bolder;
    white-space: nowrap; 
}

#top-song p {
	position: absolute;
    color: white;
	font-size: 32px;
	padding: 5%;
	margin-left: 30px;
}

.image3 img {
    max-width: 10%;
    height: auto;
	padding: 6%;
    margin-left: 70px;
}

h3 {
	color: white;
	font-size: 28px;
	margin-top: -130px; 
	transform: translateX(25%);
}

audio {
	position: absolute;
    margin-left: 700px;
	margin-top: -6%;
}

/* Latest Music */

#latest-music h2 {
    position: absolute;
    color: white;
    left: 0; /* Change right to left */
    transform: translateX(4%);
    font-size: 70px;
    font-weight: bolder;
    white-space: nowrap; 
}

#latest-music img {
    max-width: 30%; /* Set the maximum width to 100% of its container */
    height: auto; /* Maintain the aspect ratio */
    display: block; /* Remove extra spacing below the image */
	margin-top: 10%;
	margin-left: 100px;
}

#latest-music p {
    position: absolute;
    color: white;
	font-size: 35px;
	font-weight: bolder;
    left: 560px; /* Change right to left */
	margin-top: -20%;
}

.audio {
	margin-left: -180px;
	margin-top: -8%;
}

/* Upcoming Event */

#upcoming-events h2 {
    position: absolute;
    color: white;
    left: 0; /* Change right to left */
    transform: translateX(4%);
    font-size: 70px;
	margin-top: -5%;
    font-weight: bolder;
    white-space: nowrap; 
}


.schedule {
    display: flex;
    justify-content: space-around;
}

.date-column,
.event-column,
.location-column {
    text-align: center;
}

.date-column h3,
.event-column h3,
.location-column h3 {
   font-size: 30px;
}

.date-column h3 {
	margin-top: 10%;
	margin-right: 35%;
    padding: 10px;
	color: white;
}


.event-column h3 {
	margin-top: 10%;
	margin-right: 35%;
    padding: 10px;
	color: white;
}

.location-column h3 {
	margin-top: 10%;
	margin-right: 90%;
    padding: 10px;
	color: white;
}

.date-column p,
.event-column p,
.location-column p {
    padding: 8px;
	color: white;
}

/* Contact Us */

#contact-us h2 {
    position: absolute;
    color: white;
    left: 0; /* Change right to left */
    transform: translateX(4%);
    font-size: 70px;
	margin-top: -20%;
    font-weight: bolder;
}

#contact-us p{
	text-align: center;
	color: white;
	font-size: 18px;
	margin-top: -15%;
}

.contact-box {
	text-align: center;
    width: 1200px;
    margin: 10px;
}

input[type="text"] {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
	background-color: #4c4c4c;
    margin: 1px 0;
	color: white; 
}

input[type="email"] {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
	background-color: #4c4c4c;
    margin: 1px 0;
	color: white; 
}

input[type="tel"] {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
	background-color: #4c4c4c;
    margin: 1px 0;
	color: white; 
}

textarea {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
	background-color: #4c4c4c;
    margin: 1px 0;
	color: white; 
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
}

.send-button {
    width: 15%;
    padding: 15px;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    margin: 15px 0;
    background-color: #333;
    color: white;
    cursor: pointer;
	margin-left: 45%;
}

.send-button:hover {
    background-color: #555;
}


/* Footer */

footer {
    padding: 10px 80px;
    text-align: right;
	margin-top: -10%;
	position: relative;
}

.bar {
    display: flex;
    justify-content: flex-end;
	border-bottom: 0.5px solid white; /* Add a white horizontal line */
}

nav ul {
    list-style: none;
    margin-left: 5%;
}

nav li {
    display: inline;
    margin-left: 20px; /* Adjust the spacing between navigation items */
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 12px;
}

nav a:hover {
    color: cornflowerblue;
    transition: 0.2s ease;
    border-bottom: 1px solid cornflowerblue;
    padding-bottom: 1%;
}

 footer p {
    color: white;
	text-align: center;
    font-size: 16px;
    margin-top: 10px;
}


@media only screen and (max-width: 767px) {

	.image img {
    width: 100%;
    height: auto;
}

    .navi {
    position: absolute;
    top: 3%;
    left: 50%;
    list-style: none;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3% 0;
    gap: 3%;
    z-index: 2;
}

   h1 {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%, 135%);
    font-family: 'GTEAPAC';
    color: white;
    font-size: 120px;
    font-weight: normal;
    white-space: nowrap;
    z-index: 2;
}
	
	h4 {
    position: fixed;
    top: 66%;
    left: 55%;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
    font-weight: lighter;
    white-space: nowrap;
    z-index: 2;
}
	
	.image2 img {
    max-width: 50%;
    height: auto;
    margin-left: 10px;
    margin-top: 4%;
}

    #about h2 {
    position: absolute;
    color: white;
    top: 12px;
    right: 37px;
    transform: translateX(-25%);
    font-size: 50px;
    font-weight: bolder;
    white-space: nowrap;
}
	
 	#about p {
    position: absolute;
    color: white;
    top: 0;
    right: 4%;
    width: 43%;
    height: 20px;
    transform: translateX(3%);
    font-size: 16px;
    font-weight: normal;
    margin-top: 150px;
}
	
	#top-song h2 {
	position: absolute;
    color: white;
    top: -7%;
    left: 0;
    transform: translateX(4%);
    font-size: 50px;
    font-weight: bolder;
    white-space: nowrap;
}

	#top-song p {
    position: absolute;
    color: white;
    font-size: 20px;
    padding: 5%;
    margin-left: 15px;
}
	
	.image3 img ,
	.image4 img ,
	.image5 img ,
	.image6 img{
    ax-width: 10%;
    height: auto;
    padding: 6%;
    margin-left: 70px;
}
	
	#top-song h3 {
    color: white;
    font-size: 16px;
    margin-top: -104px;
    transform: translateX(27%);
}
	
	audio {
    position: absolute;
    margin-left: 530px;
    margin-top: -5%;
}
	
	#latest-music h2 {
    position: absolute;
    color: white;
    left: 0;
    transform: translateX(4%);
    font-size: 50px;
    font-weight: bolder;
    white-space: nowrap;
    margin-top: -3%;
}
	
	#latest-music img {
    max-width: 30%;
    height: auto;
    display: block;
    margin-top: 10%;
    margin-left: 55px;
}
	
	#latest-music p {
    position: absolute;
    color: white;
    font-size: 35px;
    font-weight: bolder;
    left: 424px;
    margin-top: -20%;
}
	
	#latest-music audio {
    position: absolute;
    margin-left: 574px;
    margin-top: -5%;
}
	
	#upcoming-events h2 {
    position: absolute;
    color: white;
    left: 0;
    transform: translateX(4%);
    font-size: 50px;
    margin-top: -26%;
    font-weight: bolder;
    white-space: nowrap;
}
	
	.date-column h3 {
    margin-top: -50%;
    margin-right: 35%;
    padding: 10px;
    color: white;
}
	
	.event-column h3 {
    margin-top: -57%;
    margin-right: 35%;
    padding: 10px;
    color: white;
}
	
	.location-column h3 {
    margin-top: -75%;
    margin-right: 90%;
    padding: 10px;
    color: white;
}
	
	#contact-us h2 {
    position: absolute;
    color: white;
    left: 0;
    transform: translateX(4%);
    font-size: 50px;
    margin-top: -48%;
    font-weight: bolder;
}
	
	#contact-us p {
    text-align: center;
    color: white;
    font-size: 16px;
    margin-top: -38%;
}
	
	.contact-box {
    text-align: center;
    width: 925px;
    margin: 10px;
}
	
	.send-button {
    width: 15%;
    padding: 15px;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    margin: 15px 0;
    background-color: #333;
    color: white;
    cursor: pointer;
    margin-left: 44%;
}
	
	.bar {
    display: flex;
    justify-content: flex-end;
    border-bottom: 0.5px solid white;
    margin-top: -40%;
}
	
	footer p {
    color: white;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}
	
	
}
