/* 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;
}
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #121212;
    line-height: 1.6;
}


header {
    background-color: #1a1a1a;
    padding: 1em 2em;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar h1 {
    font-family: 'Playfair Display', serif;
    color: #ffcc00;
}

.navbar-header {
    text-align: center;
    background-color: #222; 
    padding: 10px 0;
    color: white;
    border-bottom: 2px solid #444; 
}

.navbar-title {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    font-family: 'Arial', sans-serif; 
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px; 
    background-color: #333; 
    color: white;
}

.navbar-links {
    display: flex;
    gap: 20px; 
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #FFD700; 
}


.navbar-logo {
    margin-left: auto; 
}

.navbar-logo img {
    height: 90px; 
    border-radius: 8px;
    margin:10px;
}


.hero {
    height: 150vh;
    background: url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 2em;
    border-radius: 10px;
}
.hero h2 {
    font-size: 3em;
    font-family: 'Playfair Display', serif;
}
.hero .btn {
    background-color: #ffcc00;
    color: #000;
    padding: 0.8em 1.5em;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1em;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}
.hero .btn:hover {
    background-color: #ff4500;
    color: #fff;
}


section {
    padding: 4em 2em;
}
section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
}


.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
}
.photo {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}
.photo:hover {
    transform: scale(1.05);
}


footer {
    background: #1a1a1a;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
    color: #ccc;
}

.contact {
    background: linear-gradient(135deg, #1e1e1e, #3a3a3a);
    padding: 4em 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #ffcc00;
    margin-bottom: 1em;
    font-size: 2.5em;
}
.contact-card {
    background: #2a2a2a;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    text-align: center;
}
.contact-card p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 2em;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.contact-form label {
    font-weight: bold;
    color: #ffcc00;
    text-align: left;
}
.contact-form input,
.contact-form textarea {
    padding: 0.8em;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    background: #1e1e1e;
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out;
}
.contact-form input:focus,
.contact-form textarea:focus {
    background-color: #333;
}
.contact-form textarea {
    resize: none;
    height: 100px;
}
.contact-form .btn {
    background-color: #ffcc00;
    color: #000;
    padding: 0.8em 1.5em;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 1.1em;
    font-weight: bold;
}
.contact-form .btn:hover {
    background-color: #ff4500;
    color: #fff;
    transform: scale(1.05);
}


.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}
.modal-content {
    background: #2a2a2a;
    color: #fff;
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.modal-content h2 {
    font-size: 2em;
    color: #ffcc00;
}
.modal-content p {
    font-size: 1.2em;
    margin-top: 1em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.home-intro {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #f9f9f9; 
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-intro .title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; 
    margin-bottom: 1rem;
}

.home-intro .description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.home-intro .event-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.home-intro .event-list li {
    background: #ffcc00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    color: #333;
}

.home-intro .main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background-color: #f4f4f4; 
}

.member-card {
    background: #ffffff;
    color: #333; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-info {
    margin-top: 1rem;
}

.member-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    font-style: italic;
    color: #555; 
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.4;
}

.portfolio {
    text-align: center;
    padding: 20px;
}

.portfolio-header {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffffff;
}

.portfolio-main-image img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px;
}

.portfolio-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin: 20px auto; 
    max-width: 1200px; 
}

.portfolio-grid img {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 5px; 
    display: block; 
}



.portfolio-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.portfolio-images img {
    width: 100%;
    border-radius: 8px;
}

.portfolio-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.portfolio-videos video {
    width: 300px;
    border-radius: 8px;
    background: #000;
}

.song-list {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.song-list h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.song-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.song-column, .song-column-center {
    width: 45%; 
}

.song-column-center {
    text-align: center;
}

.song-column p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.logo-section {
    margin-top: 40px;
}

.logo-main {
    width: 300px; 
    margin-bottom: 20px;
}

.image-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.side-image {
    width: 45%; 
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


#lightbox.visible {
    visibility: visible;
    opacity: 1;
}


#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}


#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.container h1{
    font-size: 3em;
    font-family: 'Playfair Display', serif;
}

.portfolio-header h2{
    font-size: 3em;
    font-family: 'Playfair Display', serif;
}

.song-list h2{
    font-size: 3em;
    font-family: 'Playfair Display', serif;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .event-item {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .event-item:hover {
    transform: translateY(-5px);  
    color: #ff4500;  
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .portfolio-grid: img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .lightbox-trigger:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
  }

.member-card {

    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  

  .member-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
  }
    