/* Reset some basic styles */
body {
    background: linear-gradient(to bottom, #3b1e94, #2d2f92, #080056); /* Same background */
    min-height: 100vh; /* Ensures the body is at least the height of the viewport */
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

/* Navbar styles */
/* nav { */
    /* display: flex; */
    /* justify-content: center; */
    /* padding: 15px 0; */
/* } */
.circular-image {
    width: 100px; /* Set desired width */
    height: 100px; /* Set desired height (same as width for a circle) */
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    /* border: 3px solid #ffffff; Optional: Add a border for styling */
}

.header {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    padding: 40px 0px;
    list-style: none;
    display: flex;
    gap: 30px; 
}

.nav-links li {
    font-size: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: #c9c9c9;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

/* Header styles */
.hero {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: max-content;
    /* background: linear-gradient(180deg, #191b36, #14152a); */
}


.hero h1 {
    font-size: 5rem;
    margin: 0;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    color: #c9c9c9;
}

.social-links {
    margin: 20px 0;
    display: flex;
    /* justify-content: center; */
    gap: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: #c9c9c9;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.details p {
    color: #c9c9c9;
    font-size: 1rem;
}

.details strong {
    color: white;
}

/* Card styles */
.cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.card {
    background-color: hsl(236, 35%, 18%);
    padding: 20px;
    transition: all 0.4s ease-in-out;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card img {
    border-radius: 5px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.card p {
    color: #c9c9c9;
    font-size: 1rem;
    margin: 8px 0;
}

.card strong {
    color: white;
}

.card.music img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}

.fade-in {
    width: 900px;
}
.fade-in > * {
    opacity: 0; /* Start invisible */
    transform: translateY(20px); /* Start slightly below */
    animation: fadeIn 0.6s forwards; /* Animation */
}

@keyframes fadeIn {
    to {
        opacity: 1; /* End fully visible */
        transform: translateY(0); /* End in original position */
    }
}

.empty {
    all: unset;
    cursor: pointer;
}
/* Apply staggered delays for each child element */
.fade-in > div {
    animation-delay: 0.2s;
}
.fade-in > h1 {
    animation-delay: 0.4s; /* Delay for h1 */
}

.fade-in > p {
    animation-delay: 0.6s; /* Delay for paragraph */
}

.fade-in > .social-links {
    animation-delay: 0.8s; /* Delay for social links */
}

.card:hover {
    background-color: hsl(236, 36%, 30%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Add a stronger shadow */
    /* transform: scale(1.05);  */
}
/* .fade-in > .social-links > a {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards; 
}

.fade-in > .social-links > a:nth-child(1) { animation-delay: 0.9s; } 
.fade-in > .social-links > a:nth-child(2) { animation-delay: 1.1s; } 
.fade-in > .social-links > a:nth-child(3) { animation-delay: 1.3s; } 
.fade-in > .social-links > a:nth-child(4) { animation-delay: 1.5s; } 
.fade-in > .social-links > a:nth-child(5) { animation-delay: 1.7s; } Delay for fifth link */
