/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: #121212;
    overflow-x: hidden;
}

header {
    background: #1a1a1a;
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
}

nav .logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
    background: #e94560;
    color: #fff;
    border-radius: 20px;
}

@media screen and (max-width: 800px) {
    .header-quicklinks {
        display: none !important;
    }

    #home {
        background-position-x: -200px;
    }
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
    color: white;
}

.hero-content {
    z-index: 10;
    max-width: 600px;
    animation: fadeIn 2s ease-in;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    animation: text-flicker 3s infinite alternate;
    text-shadow: #121212 1px 0 10px;
}

.hero p {
    text-shadow: #121212 1px 0 5px;
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    background: #e94560;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.6);
}

.hero .btn:hover {
    background: #f77f91;
}

.floating-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 20%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 15%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 10%;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 5%;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

.music-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
}

.music-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.music-player audio {
    width: 70%;
    max-width: 500px;
    border: 2px solid #e94560;
    border-radius: 15px;
    padding: 10px;
    background: #1a1a1a;
    box-shadow: 0 4px 10px rgba(233, 69, 96, 0.3);
}

/* Discography */

.discography-list {
    max-width: 80%;
    display: contents;
}

.discography-item {
    list-style-position: inside;
    min-width: max-content;
}

/* Gallery */

.gallery-section {
    padding: 100px 0;
    background: #121212;
}

.gallery-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
    margin: auto;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-section form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section form input,
.contact-section form textarea {
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    background: #1a1a1a;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s;
}

.contact-section form input:focus,
.contact-section form textarea:focus {
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.6);
}

.contact-section form button {
    padding: 15px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.6);
}

.contact-section form button:hover {
    background: #f77f91;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Animations */
@keyframes text-flicker {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-transition-active {
    opacity: 1;
    pointer-events: auto;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Fade-in on Scroll */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Section */
.portfolio-section {
    padding: 50px 0;
    background: #121212;
    color: white;
    text-align: center;
}

.portfolio-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.portfolio-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.portfolio-item p {
    font-size: 16px;
    margin-bottom: 20px;
    word-break: break-word;
    
}

.portfolio-item .btn {
    background: #e94560;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s;
}

.portfolio-item .btn:hover {
    background: #f77f91;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

/* Socials Section */
.socials-section {
    padding: 50px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.socials-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    transition: transform 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: filter 0.3s, transform 0.3s, box-shadow 0.3s;
    /* Ensure the image fits exactly with no boxy space */
    border-radius: 50%; /* Adjust if icons are circular */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* Start with no shadow */
}

.social-icon:hover img {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}

/* Glowing effect applied directly to the image */
.social-icon:hover img[src*="linktree-icon"] {
    box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.7);
}

.social-icon:hover img[src*="instagram-icon"] {
    box-shadow: 0 0 15px 5px rgba(225, 48, 108, 0.7);
}

.social-icon:hover img[src*="tiktok-icon"] {
    box-shadow: 0 0 15px 5px rgba(0, 255, 255, 0.7);
}

.social-icon:hover img[src*="spotify-icon"] {
    box-shadow: 0 0 15px 5px rgba(30, 215, 96, 0.7);
}

.social-icon:hover img[src*="youtube-icon"] {
    box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.7);
}

/* General Button Style */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e94560; /* Primary background color */
    color: white; /* Text color */
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px; /* Rounded corners */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(233, 69, 96, 0.4); /* Initial shadow */
    cursor: pointer;
}

/* Hover State */
.btn:hover {
    background-color: #f77f91; /* Lighter background on hover */
    box-shadow: 0 6px 15px rgba(233, 69, 96, 0.6); /* Larger shadow */
    transform: translateY(-3px); /* Slight lift effect */
}

/* Active State */
.btn:active {
    background-color: #d1334a; /* Darker background on click */
    box-shadow: 0 3px 8px rgba(233, 69, 96, 0.5); /* Slightly smaller shadow */
    transform: translateY(0); /* Button returns to original position */
}

/* Disabled State */
.btn:disabled {
    background-color: #cccccc; /* Grey background for disabled button */
    color: #666666; /* Grey text color */
    cursor: not-allowed;
    box-shadow: none;
}

/* Circle Image Styling */
.circle-image {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    background-size: cover;
    background-position: auto;
    border-radius: 50%; /* Makes the shape circular */
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* Initial glow effect */
    transition: box-shadow 0.3s, transform 0.3s;
}

/* Reflective Glow Effect */
.circle-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 190%;
    height: 190%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    transition: opacity 0.3s;
    opacity: 0.7; /* Adjust the opacity for the glow */
    z-index: 1;
}

.circle-image:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8); /* Increased glow on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.circle-image:hover::before {
    opacity: 1; /* Intensify the glow on hover */
}

#home {
    background-image: url("/public/images/home-background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .gallery-item {
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
        padding: 10px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


