@charset "UTF-8";
/* CSS Document */
/* Color Scheme */
:root {
dark-purple: #191627;
medium-purple: #5E558E;
light-purple: #9F86C0;
pink: #BF95C5;
light-pink: #D6BDDA;
white: #FFFFFF;
}

/* General Styling */

body h1,h2,h3{
	font-family: "Cinzel", "serif";
	margin: 0;
    padding: 0;
}

body {
    font-family: "Merriweather", serif;
  	font-weight: 400;
  	font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #000000 !important;
    color: var(--dark-purple);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #191627;
}

/* Navbar Section */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #9F86C0;
    color: #FFFFFF;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    flex-wrap: wrap; /* Added for responsiveness */
}

.navbar-left .logo {
    height: 100px;
}

.navbar-right {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; /* Added for responsiveness */
    justify-content: center; /* Added for responsiveness */
}

.navbar-right li {
    margin-left: 20px;
    transition: background-color 0.3s ease;
}

.navbar-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2em;
    font-family: "Cinzel", serif;
}

.navbar-right a:hover,
.navbar-right a:focus,
.navbar-right a:active {
    background-color: #5E558E;
    color: var(--white); /* Ensures the color stays white when active */
    text-decoration: none; /* Removes underline */
}

/* Header Section */
.header {
    position: relative;
    text-align: center;
    color: var(--white);
    background-image: url('Images/IU-Lilac.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px; /* Adjust padding to account for navbar */
}

.header h1, .header h2, .header p {
    margin: 0;
    font-family: "Cinzel", serif;
}

.header h1 {
    font-size: 3.5em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header h2 {
    font-size: 2em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header p {
    font-size: 1.5em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header button {
    background-color: #BF95C5;
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header button:hover {
    background-color: #D6BDDA;
}

/* Social Media Section */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-media a {
    color: var(--white);
    font-size: 1.2em;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-media img {
    height: 100px;
    margin-right: 10px;
}

.biography p{
	font-family: "Merriweather", serif;
	font-weight: 400;
  	font-style: normal;
    margin: 0;
    padding: 0;
}

/* Song Albums Section */
.song-albums {
    padding: 60px 20px;
    text-align: center;
}

.song-albums h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
	color: #BF95C5;
}

.album-item {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: var(--medium-purple);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.album-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

.album-info {
    flex: 1;
    padding-left: 20px;
}

.album-info p {
    margin: 0;
    padding: 10px 0;
	color: #FFFFFF;
}

/* Carousel Section */
.carousel-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--medium-purple);
    border-radius: 50%;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5em;
    }

    .header h2 {
        font-size: 1.5em;
    }

    .header p {
        font-size: 1em;
    }

    .album-item {
        flex-direction: column;
        align-items: center;
    }

    .album-info {
        padding-left: 0;
    }

    .navbar-right {
        flex-direction: column;
        text-align: center;
    }

    .navbar-right li {
        margin: 10px 0;
    }
}

/* General Styling */
body {
    font-family: "Cinzel", serif;
    margin: 0;
    padding: 0;
    background-color:#000000 !important;
    color: var(--dark-purple);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #191627;
}

/* Navbar Section */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #9F86C0;
    color: #FFFFFF;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-left .logo {
    height: 40px;
}

.navbar-right {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-right li {
    margin-left: 20px;
    transition: background-color 0.3s ease;
}

.navbar-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2em;
    font-family: "Cinzel", serif;
}

.navbar-right a:hover,
.navbar-right a:focus,
.navbar-right a:active {
    background-color: #5E558E;
    color: var(--white); /* Ensures the color stays white when active */
    text-decoration: none; /* Removes underline */
}


/* Header Section */
.header {
    position: relative;
    text-align: center;
    color: var(--white);
    background-image: url('Images/IU-Lilac.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px; /* Adjust padding to account for navbar */
}

.header h1, .header h2, .header p {
    margin: 0;
    font-family: "Cinzel", serif;
}

.header h1 {
    font-size: 3em;
    margin-top: 20px;
    color: #5E558E;
}

.header h2 {
    font-size: 2em;
    color: #BF95C5;
}

.header p {
    font-size: 1.5em;
    color: #FFFFFF;
}

.header .header-content {
    padding: 50px;
	text-align: left;
}

.header .header-image {
    display: none;
}

.header button {
    background-color: #9F86C0;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    font-family: "Cinzel", serif;
}

.header button:hover {
    background-color: #5E558E;
}

.header .social-media {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.header .social-media a {
    color: #D6BDDA;
    margin-right: 10px;
}

/* Profile Section */
.profile {
    text-align: center;
    padding: 50px;
    background-color: #191627;
}

.profile h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #BF95C5;
    font-family: "Cinzel", serif;
}

.profile-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    max-width: 400px;
    text-align: left;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    text-align: center;
	background-color: #BF95C5;
}

.profile-header img {
    border-radius: 50%;
    max-width: 150px;
}

.profile-header h3 {
    margin: 10px 0;
    font-size: 1.8em;
    color: #5E558E;
    font-family: "Cinzel", serif;
}

.profile-header p {
    font-size: 1.2em;
    color: #5E558E;
    font-family: "Cinzel", serif;
}

.profile-details {
    margin-top: 20px;
}

.profile-details .detail {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #5E558E;
    font-family: "Cinzel", serif;
}

/* Biography Section */
.biography {
    background-color: #191627;
    padding: 50px;
}

.biography h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #BF95C5;
    text-align: center;
    font-family: "Cinzel", serif;
}

.biography p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #FFFFFF;
    font-family: "Cinzel", serif;
}

/* Movies & Drama Series Section */
.movies-dramas {
    text-align: center;
    padding: 50px;
    background-color: var(--light-pink);
}

.movies-dramas h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #BF95C5;
    font-family: "Cinzel", serif;
}

.carousel-inner img {
    max-height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}


/* Comments Section */
.comments {
    background-color: #191627;
    padding: 50px;
    text-align: center;
}

.comments h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #BF95C5;
    font-family: "Cinzel", serif;
}

.comments form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.comments form label {
    display: block;
    margin: 10px 0 5px;
    color: #FFFFFF;
    font-family: "Cinzel", serif;
}

.comments form input, .comments form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--medium-purple);
    border-radius: 5px;
    font-family: "Cinzel", serif;
}

.comments form .form-actions {
    text-align: right;
}

.comments form .form-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Cinzel", serif;
}

.comments form .form-actions button[type="reset"] {
    background-color: #343145;
    color: var(--white);
}

.comments form .form-actions button[type="submit"] {
    background-color: #9F86C0;
    color: var(--white);
}

/* Footer Section */
.footer {
    background-color: #9F86C0;
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.footer .footer-links {
    margin-top: 10px;
}

.footer .footer-links a {
    color: var(--white);
    margin: 0 10px;
    text-decoration: none;
    font-size: 1em;
    font-family: "Cinzel", serif;
}

.footer .footer-links a:hover {
    text-decoration: underline;
}
