/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #464646;
    color: #333;
}

/* Header Styles */
header {
    background-color: #282828;
    color: #fff;
    box-shadow: 0 12px 4px rgba(0, 0, 0, 0.5);
}

#header-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

#header-logo-left {
    display: flex;
    align-items: center;
}

.hamburger {
    cursor: pointer;
    padding: 2px;
    color: #fff;
}

#header-logo-img img {
    height: 40px;
    margin-right: 100px;
    border-radius: 50%;
}

#header-logo-right-title {
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 17px 0;
}

.nav-item {
    margin: 0 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-item:hover {
    transform: scale(1.2);
}

.icon {
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

.nav-link:hover {
    color: #FF4C9A;
	text-decoration: underline;
}

/* Cover Photo Styles */
.cover-photo {
    width: 100%;
    height: auto;
    position: relative;
}

.cover-photo img {
    width: 100%;
    height: auto;
    display: block;
	margin: 0;
	padding: 0;
}

.cover-photo .prev-slide,
.cover-photo .next-slide {
	display: none !important;
}

/* Main Section Styles */
main {
    padding: 40px 40px;
}

section {
    margin-bottom: 30px;
    background-color: #282828;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Paragraph Styles */
p {
    color: #FFFFFF;
	font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.introlink a {
	color: #FF4C9A;
}

.introlink a:hover {
	color: #FFFFFF;
	transform: scale(1.1);
	transition: transform 0.3s, color 0.3s;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.member-card {
    background-color: #D0D0D0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
	overflow: hidden;
}

.member-card a {
    display: block;
    text-decoration: none;
    color: inherit; 
}

.member-card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
	opacity: 0.6;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.member-card h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}

.member-card p {
    font-size: 16px;
    color: #000000;
}

.member-card img:hover {
	transform: scale(1.12);
	opacity: 1.0;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 497px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    border-radius: 0.1px;
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.discography .prev-slide, 
.discography .next-slide {
	display: block;
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: thick;
    padding: 17px;
    cursor: pointer;
    z-index: 10;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}


.video-container{
	padding: 20px;
}
.video-container h3 {
	color:#FFFFFF
}

.video-grid{
	display: flex;
	overflow-x: auto;
	gap:17px;
}

.video-item{
	flex: 0 0 auto;
	width: 200px;
	height: auto;
}


.video-item iframe {
	width: 100%;
	height: 100%;
	border: none;
}

#gallery h3 {
	color:white;
	text-align: center;
	margin-top: 0
}

.gallery {
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
	opacity: 0.85;
	aspect-ratio:4/3;
	object-fit: cover
}

.gallery-item:hover img {
    transform: scale(1.2);
	opacity: 1;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3)
}


.gallery-item:hover .overlay {
    opacity: 1;
}





#news {
    padding: 50px;
    background-color: #282828;
}

#news h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
	color: #FFFFFF
}

#news h3 {
    text-align: center;
    font-size: 1em;
    margin-bottom: 20px;
	color: #FFFFFF
}

#news h4 {
	text-align:center;
	font-size: 1.2em;
	margin-bottom: 20px;
	color: black
}

#news p {
	text-align: center;
    color: #5B5B5B;
    font-size: 1em;
    margin-bottom: 30px;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.news-item {
    background-color: #fff;
    border: 0px solid #B5B5B5;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    margin: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.news-item img {
    width: 100%;
    height: auto;
    display: block;
	object-fit: cover;
}

.news-content {
    padding: 17px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100
}

.news-content h3 {
    font-size: 1.5em;
    margin: 10px 0;
	text-align: center;
}

.news-content p {
    color: #444444;
}

.read-more { 
    display: inline-block;
	align-items: baseline;
	align-self: center;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #464646;
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #FF4C9A;
}

@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
        align-items: center;
    }

    .news-item {
        width: 90%;
    }
}

#subscribe {
    padding: 40px;
	background-color: #282828;
	border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	margin-top: 40px auto;
	max-width: 1535px;
	margin:0 auto;
	margin-bottom:60px
}

.subscribe-container {
	padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 70px;
}

.subscribe-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
	object-fit: cover;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
	width: 100%
}

.subscribe-form label {
    margin-bottom: 8px;
    font-weight: bold;
	font-size: 1rem;
	color: white;
	text-align: left;
}

.subscribe-form input {
    margin-bottom: 16px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 7px;
	font-size: 1rem;
}

.subscribe-form button {
    padding: 12px;
    background-color: #FF4C9A;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	transition: background-color 0.3s ease;
	font-size: 1rem
}

.subscribe-form button:hover {
    background-color: #8E003E;
}

@media (max-width: 768px) {
    .subscribe-container {
        flex-direction: column;
        gap: 20px;
    }
    .subscribe-image {
        width: 90%
    }
}


.footer .box-container{
	display: flex;
	flex-wrap: wrap;
	gap:1.0em;
}

.footer .box-container .box{
	flex: 1 1 25rem;
}

.footer .box-container .box h2,
.footer .box-container .box h3{
	color: #FFFFFF;
	font-size: 1.7rem;
	padding: 0.8rem 0;
}


.footer .box-container .box a {
	display: block;
	color: #FFFFFF;
	font-size: 1.0rem;
	padding: 0.3rem 0;
	text-decoration: none;
}

.footer .box-container .box a:hover{
	color:#FF4C9A;
	text-decoration: underline;
	transform:scale(1.3)
}

.footer .box-container .box p{
	color: #FFFFFF;
	font-size: 0.9rem;
	padding: 0.1rem 0;

}




/* Footer Styles */
footer {
    background-color: #282828;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
