* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}


/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #000000; /* Black with 70% opacity */
    background: linear-gradient(180deg, #000000, #00000067, #00000000);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family:  'Times New Roman', Times, serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    margin-top: 20px;
    transform: translateY(-20px); /* Offset slightly above */
    animation: fadeInUp 1.5s ease-out forwards; /* Apply fade-in animation */
    font-family:  'Times New Roman', Times, serif;
    
    
}

.navbar .logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease-in;
    
    
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    
}

.navbar a:hover {
    color: #ffffff;
    transform: scale(1.2);
    transition: transform 0.3s ease-in;
}

/* Hero Section */
.hero {
    background-image: url('./IMG_9070.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh; /* Extend height to make it impactful */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-bottom: -5px; /* Overlap with #biography */
    position: relative;
    transform: translateY(-20px); /* Offset slightly above */
    animation: fadeInUp 1.5s ease-out forwards; /* Apply fade-in animation */
}

/* Add a subtle fade effect at the bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px; /* Adjust height for blending */
    background: linear-gradient(to bottom, #00000000 0%, #000000 100%);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0rem;
    font-family: 'Times New Roman', Times, serif;
    
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.hero-content .btn {
    background: #3d7fe2;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
 
}

.hero-content .btn:hover {
    background: #fff;
    color: #3d7fe2;
}

/* Sections */
section {
    padding: 5rem 1rem;
    text-align: center;
}

#biography {
    background: #ffffff;
    
}
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #000;
    line-height: 1.6;
}

/* Music Section Styles */
#music-section {
    background-color: #ffffff; /* White background */
    padding: 4rem 1rem;
    text-align: center;
}

#music-section h2 {
    font-size: 2rem;
    margin-bottom: -2rem;
    color: #000; /* Black text */
    font-family: 'Times New Roman', Times, serif;
}

.album-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; /* Adjust for proper scaling */
}

.album-main {
    position: relative;
    width: 250px;
    height: 250px;
    cursor: pointer;
    z-index: 10;
}

.album-main img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

/* Side Album Arts */
.album-side {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 02;
    transition: all 0.5s ease;
}

.album-side img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.493);
}

.album-left {
    bottom: -100px;
    left: -150px;
}

.album-right {
    bottom: -100px;
    right: -150px;
}

/* Hover Effect */
.album-main:hover img {
    transform: scale(1.1);
}

.album-main:hover .album-left {
    opacity: 1;
    bottom: -20px;
    left: -250px;
}

.album-main:hover .album-right {
    opacity: 1;
    bottom: -20px;
    right: -250px;
}

/* Footer Styles */
footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    text-align: center;
    padding: 0.4rem 1rem;
    margin-top: 0rem;
    font-family: 'Times New Roman', Times, serif;
}

.footer-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-family: 'Times New Roman', Times, serif;
}

.social-icons a {
    color: #fff;
    margin: 0 1rem 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #3d7fe2; /* Light blue on hover */
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 930px) {
    .album-container {
        height: 300px;
    }

    .album-main {
        width: 180px;
        height: 180px;
    }

    .album-side {
        width: 150px;
        height: 150px;
    }

    .album-left {
        left: -90px;
        top: 80px;
 
    }

    .album-right {
        right: -90px;
        top: 80px;
    }
}

@media (max-width: 550px) {
    .album-container {
        height: 250px;
    }

    .album-main {
        width: 130px;
        height: 130px;
    }

    .album-side {
        width: 110px;
        height: 110px;
    }

    .album-left {
        left: -80px;
        top: 60px;
  
    }

    .album-right {
        right: -80px;
        top: 60px;
  
    }

    footer .social-icons a {
        font-size: 1.2rem;
   
        
    }
}
@media (max-width: 415px) {
    .album-container {
        height: 250px;
    }

    .album-main {
        width: 120px;
        height: 120px;
    }

    .album-side {
        width: 100px;
        height: 100px;
    }

    .album-left {
        left: -80px;
    }

    .album-right {
        right: -80px;
    }

    footer .social-icons a {
        font-size: 1.2rem;
    }
}



/* Biography Section */
#biography {
    background: linear-gradient(180deg, #000000, #132a3c91, #00000091);
    padding: 5rem 1rem;
    margin-top: -5px; /* Seamless transition with .hero */
    position: relative;
}

.biography-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-bottom: 2rem;
}

.biography-image img {
    max-width: 400px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 80px #ffffff62;
    margin-left: 0px;
    margin-top: 50px;
}
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
    margin-bottom: 8vh;
    max-width: 1300px;
    transform: translateY(-20px); /* Offset slightly above */
    animation: fadeInUp 1.5s ease-out forwards; /* Apply fade-in animation */
    
}

.profile-img {
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    margin-bottom: 0px;
    margin-right: 15px;
    box-shadow: 0 4px 80px #ffffff4b;
}

.text-content h1 {
    font-weight: 550;
    font-size: 1.8em;
    margin-bottom: -10px;
    padding: 15px;
    transform: translateX(-5px);
    font-family:  'Times New Roman', Times, serif;
    color: #d1d8b0;
    
}

.text-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    line-height: 1.6;
    margin-bottom: 0px;
    padding: 10px;
    max-width: 100%;
    width: 100%;
}

/* Responsive Adjustments for Small Screens */
@media (max-width: 768px) {
    .biography-container {
        flex-direction: column;
    }
    .about {
        margin: 0 1rem;
        font-size: 0.7rem;
        margin-bottom: vh;

    }
}

@media (min-width: 941px) {
    .about {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        font-size: 0.9rem;
        
    }
}

.about02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
    margin-bottom: 8vh;
    max-width: 1300px;
    transform: translateY(-20px); /* Offset slightly above */
    animation: fadeInUp 1.5s ease-out forwards; /* Apply fade-in animation */
}

.profile-img02 {
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    margin-bottom: 0px;
    margin-right: 15px;
    box-shadow: 0 4px 80px #ffffff4b;
}

.text-content02 h1 {
    font-family:  'Times New Roman', Times, serif;
    font-weight: 550;
    font-size: 1.8em;
    margin-bottom: -10px;
    padding: 15px;
    transform: translateX(-5px);
}

.text-content02 p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 0px;
    padding: 10px;
    max-width: 100%;
    width: 100%;
}

/* Responsive Adjustments for Small Screens */
@media (max-width: 768px) {
    .biography-container {
        flex-direction: column;
    }
    .about02 {
        margin: 0 1rem;
        font-size: 0.7rem;
        padding: 3rem 1rem;
        
    }
}

@media (min-width: 941px) {
    .about02 {
        flex-direction: row-reverse; /* Flip the order of the text and image */
        text-align: left;
        justify-content: center;
        font-size: 0.9rem;
    }
    
}

/* Keyframes for Fade-In-Up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific Animations */
header.fade-in {
    animation-delay: 0.2s;
}

.hero.fade-in {
    animation-delay: 0.4s;
}

#biography.fade-in {
    animation-delay: 0.6s;
}

#music.fade-in {
    animation-delay: 0.8s;
}

/* Footer Styles (No Animation) */
footer {
    opacity: 1;
    transform: none;
}

/* Sections */
section {
    padding: 5rem 1rem;
    text-align: center;
}
/* Fade-In-Up Animation */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.5s; /* Adjust delay if needed */
}

/* Reuse existing keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

