/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* End of CSS Reset */

@media only screen and (min-width: 1024px) {



#menu-icon {
    display: none;
}

#navbarMobile {
    display: none;
}

#close-button {
    display: none;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color:  black;
}

/* Header styles */

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo img {
    max-width: 70px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.band-name {
    font-size: 24px;
    color: white;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    transition: font-size 0.3s ease-in-out;
}

.navbar {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    margin: 0 15px;
}

.nav-link {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
    transition: color 0.3s, text-shadow 0.3s; /* Add a transition for smooth effect */
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 4px #00FFFF, 0 0 8px #00FFFF;
}

header {
    width: 100%;
    box-sizing: border-box;
    padding: 20px; /* Adjust the padding to your preference */
}




/* Hero section styles */

.hero {
    position: relative;
    background-size: cover;
    text-align: center;
    color: white;
    background-color: black;
    padding: 100px;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-button {
    margin: 20px 0;
    display: inline-block;
    font-weight: bold;
    background-color: white;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: black;
    color: white;
}

.content {
    background-color: #EFEFEF; /* Updated background color */
    padding: 50px 20px;
    text-align: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container2 {
    max-width: 800px; /* Adjusted max-width */
    margin: 0 auto;
}

.content p {
    font-size: 18px; /* Adjusted font size */
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px; /* Added margin */
}

/* Footer styles */


.footer{
    background:black;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    }
    
    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    }
    
    .footer .row a:hover{
    color:#fff;
    }

    #Socials a {
        color: #FFF; /* Set your default text color */
        text-decoration: none; /* Remove underline from links */
        transition: color 0.3s, text-shadow 0.3s; /* Add a transition for smooth effect */
    }
    
    #Socials a:hover {
        color: #FFF; /* Keep the icon white */
        text-shadow: 0 0 5px #00FFFF, 0 0 10px #00FFFF; /* Neon blue glow effect for text */
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
    
    @media screen and (max-width:720px ){
    .footer{
    text-align:left;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }

/* Song list CSS */

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.song-set {
    margin-bottom: 40px;
}

.song-set h2 {
    font-family: 'Kanit', sans-serif;
    color: #003459;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Horizontal arrangement for the songs */
.song-set p {
    font-family: 'Kanit', sans-serif;
    display: flex;
    flex-wrap: wrap;
}

.song-set span {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: whitesmoke;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.song-set span:hover {
    background-color: #d00; /* Change to your preferred hover color */
}

/* About us CSS */

#main-content {
    background-color: #f8f8f8; /* Light gray background */
    padding: 30px 20px;
    text-align: center;
}

.band-member {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ececec; /* Light gray background for each member */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.band-member img {
    max-width: 100%;
    border-radius: 50%;
}

.band-member h2 {
    font-size: 18px;
    margin: 8px 0 4px;
    color: #333; /* Dark text color */
}

.band-member h3 {
    font-size: 14px;
    color: #777; /* Lighter text color */
}

.band-member p {
    font-size: 12px;
    line-height: 1.4;
    color: #555; /* Standard text color */
}

/* Adjusted container for the main content */
#container {
    max-width: 1000px; /* Adjust as needed */
    margin: 0 auto; /* Center the content */
}

/* Contact CSS */

#kes { /* Acc Header */
    font-family: 'Kanit', sans-serif;
    text-align: center;
    font-size: x-large;
    color: white;
    
}

#kls {
    text-align: center;
    font-size: 24px;
    color: black; /* Adjusted to white for better visibility */
    padding: 20px 10px;
    margin: 0;
    margin-left: 10px;
    font-family: 'Edu TAS Beginner', cursive;
    text-transform: uppercase;
}

.ContactForm {
    max-width: 400px; /* Adjusted to make the form more compact */
    margin: 20px auto;
    padding: 20px;
    background-color: #f0f4f8; /* Adjusted to a darker background color */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ContactForm h1 {
    color: white; /* Adjusted text color to white */
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: black; /* Adjusted text color to white */
}

input, textarea {
    padding: 10px;
    border: 1px solid #666; /* Adjusted border color */
    border-radius: 5px;
    font-size: 16px;
    color: #333; /* Adjusted text color */
    background-color: #fff; /* Adjusted background color */
}

input[type="submit"] {
    background-color: black;
    color: white; /* Adjusted text color to white */
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #99A6C3;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-top: 20px;
}

/* end of Contact CSS */

span {
    color: red;
}

header {
    background-color: black;
    color: white;
    border-radius: 0px 0px 5px 5px;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Subtle box shadow */
}


/* Portfolio CSS */


.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.media-container {
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    color: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.media-container img,
.media-container iframe {
    width: 433px;
    height: 345px;
    max-width: 300px; /* Adjust the max-width based on your preference */
}

.media-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.image-container {
    margin: 10px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 60%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover img {
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
}
}










































/* Mobile Code */

@media screen and (max-width: 411px) {

.container, .hero, .content, .footer {
    position: relative;
    z-index: 1; /* Set a lower z-index value for other elements */
}

#mobile-menu{
    display: block;
}

.nav-link{
    display: none;
}


body {
    font-family: 'Kanit', sans-serif;
    background-color: black;
}

/* Header styles for all screen sizes */

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo img {
    max-width: 70px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.band-name {
    font-size: 24px;
    color: white;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    transition: font-size 0.3s ease-in-out;
}

header {
    width: 100%;
    box-sizing: border-box;
    padding: 20px; /* Adjust the padding to your preference */
}

/* Mobile Sidebar styles */

.mobile-menu {
    display: block;
}

#menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: white;
    order: -1; /* Move the menu icon to the left */
}


#sidebar {
    z-index: 1000;
    background-color: #333;
    text-align: center;
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -250px;
    transition: left 0.3s, background-color 0.5s;
}

#sidebar ul {
    list-style-type: none;
    padding: 0;
}

#sidebar li {
    margin: 10px 0;
}

#sidebar a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#menu-icon:hover + #sidebar {
    left: 0;
}

#close-button {
    font-size: 24px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: color 0.3s;
}

#close-button:hover {
    color: #ddd; /* Change to your preferred hover color */
}

/* Hero section styles for all screen sizes */

.hero {
    background-size: cover;
    text-align: center;
    color: white;
    background-color: black;
    padding: 100px;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-button {
    margin: 20px 0;
    display: inline-block;
    font-weight: bold;
    background-color: white;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: black;
    color: white;
}

/* Content styles for all screen sizes */

.content {
    background-color: #EFEFEF; /* Updated background color */
    padding: 50px 20px;
    text-align: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container2 {
    max-width: 800px; /* Adjusted max-width */
    margin: 0 auto;
}

.content p {
    font-size: 18px; /* Adjusted font size */
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px; /* Added margin */
}

/* Footer styles for all screen sizes */

.footer {
    background: black;
    padding: 30px 0px;
    font-family: 'Play', sans-serif;
    text-align: center;
}

.footer .row {
    width: 100%;
    margin: 1% 0%;
    padding: 0.6% 0%;
    color: gray;
    font-size: 0.8em;
}

.footer .row a {
    text-decoration: none;
    color: gray;
    transition: 0.5s;
}

.footer .row a:hover {
    color: #fff;
}

#Socials a {
    color: #FFF; /* Set your default text color */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s, text-shadow 0.3s; /* Add a transition for smooth effect */
}

#Socials a:hover {
    color: #FFF; /* Keep the icon white */
    text-shadow: 0 0 5px #00FFFF, 0 0 10px #00FFFF; /* Neon blue glow effect for text */
}

.footer .row ul {
    width: 100%;
}

.footer .row ul li {
    display: inline-block;
    margin: 0px 30px;
}

.footer .row a i {
    font-size: 2em;
    margin: 0% 1%;
}

/* About CSS */

#main-content {
    background-color: #f8f8f8; /* Light gray background */
    padding: 30px 20px;
    text-align: center;
}

.band-member {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ececec; /* Light gray background for each member */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.band-member img {
    max-width: 100%;
    border-radius: 50%;
}

.band-member h2 {
    font-size: 18px;
    margin: 8px 0 4px;
    color: #333; /* Dark text color */
}

.band-member h3 {
    font-size: 14px;
    color: #777; /* Lighter text color */
}

.band-member p {
    font-size: 12px;
    line-height: 1.4;
    color: #555; /* Standard text color */
}

/* Contact CSS */

#kes { /* Acc Header */
    font-family: 'Kanit', sans-serif;
    text-align: center;
    font-size: x-large;
    color: white;
}

#kls {
    text-align: center;
    font-size: 24px;
    color: black; /* Adjusted to white for better visibility */
    padding: 20px 10px;
    margin: 0;
    margin-left: 10px;
    font-family: 'Edu TAS Beginner', cursive;
    text-transform: uppercase;
}

.ContactForm {
    max-width: 400px; /* Adjusted to make the form more compact */
    margin: 20px auto;
    padding: 20px;
    background-color: #f0f4f8; /* Adjusted to a darker background color */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ContactForm h1 {
    color: white; /* Adjusted text color to white */
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: black; /* Adjusted text color to white */
}

input, textarea {
    padding: 10px;
    border: 1px solid #666; /* Adjusted border color */
    border-radius: 5px;
    font-size: 16px;
    color: #333; /* Adjusted text color */
    background-color: #fff; /* Adjusted background color */
}

input[type="submit"] {
    background-color: black;
    color: white; /* Adjusted text color to white */
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #99A6C3;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Portfolio CSS */


.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.media-container {
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    color: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.media-container img,
.media-container iframe {
    width: 433px;
    height: 345px;
    max-width: 300px; /* Adjust the max-width based on your preference */
}

.media-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.image-container {
    margin: 10px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 60%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover img {
    transform: scale(1.1);
}

/* Song list CSS */

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.song-set {
    margin-bottom: 40px;
}

.song-set h2 {
    font-family: 'Kanit', sans-serif;
    color: #003459;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Horizontal arrangement for the songs */
.song-set p {
    font-family: 'Kanit', sans-serif;
    display: flex;
    flex-wrap: wrap;
}

.song-set span {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: whitesmoke;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.song-set span:hover {
    background-color: #d00; /* Change to your preferred hover color */
}

}
