/* H:/pyton/landing_page_02/multipage_musician/shared.css */

/* ==========================================================================
   SHARED STYLES (for all pages)
   ========================================================================== */

/* --- Navigation Bar --- */
.navbar {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    padding-right: 1rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-light);
}

/* Style for the currently active page link */
.nav-link.active {
    color: var(--primary-accent);
    font-weight: 600;
}

.nav-link.active::after,
.dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-accent);
}


/* --- Footer --- */
.site-footer {
    background-color: #0c0c0c;
    padding: 3rem 2rem;
    margin-top: 8rem;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--primary-accent);
    transform: scale(1.2);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === Inline Text Links === */
/* Style for links embedded within paragraphs */
.inline-link {
    color: #FFC300; /* A vibrant gold color for visibility */
    text-decoration: none; /* Removes the default underline */
    font-weight: 600; /* Makes the link slightly bolder */
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition for hover effects */
}

.inline-link:hover,
.inline-link:focus {
    color: #FFFFFF; /* Changes color on hover/focus */
    text-decoration: underline; /* Adds an underline on hover for clarity */
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* === Unordered List Styling === */
/* Adds some spacing to the list of aliases */
.alias-list {
    list-style-type: none; /* Removes the default bullet points */
    padding-left: 0;
    margin: 1.5rem 0;
}

.alias-list li {
    padding-bottom: 0.75rem; /* Space between each list item */
}

/* === Homepage Music Grid Layout === */
/* This style creates the 2x2 grid for the featured music section */
.home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* Adjust the gap between items if needed */
}

/* On smaller screens (e.g., mobile), stack the items into a single column */
@media (max-width: 768px) {
    .home-grid {
        grid-template-columns: 1fr;
    }
}

/* === NEW: Glowing Follow Icons === */
.follow-icons-glow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem; /* Increased gap for a cleaner look with the glow */
    margin-top: 1rem;
}

.follow-icons-glow a {
    font-size: 2.5rem; /* Larger icons */
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.4s ease, transform 0.4s ease, text-shadow 0.4s ease;
    /* A subtle initial glow */
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
}

.follow-icons-glow a:hover,
.follow-icons-glow a:focus {
    color: var(--primary-accent);
    transform: scale(1.2) translateY(-5px); /* Lift and scale effect */
    /* A more intense, vibrant glow on hover */
    text-shadow: 0 0 12px var(--primary-accent),
                 0 0 24px var(--primary-accent),
                 0 0 36px rgba(255, 140, 0, 0.6);
}

/* ==========================================================================
   Dropdown Menu Styles
   ========================================================================== */

.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer; /* Indicates it's clickable */
}

/* The little down arrow icon */
.dropdown-toggle .fa-chevron-down {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 26, 26, 0.9); /* Dark, slightly transparent background */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--card-border);
    border-radius: 5px;
    padding: 0.5rem 0;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: var(--primary-accent);
    color: #0c0c0c; /* Dark text on hover */
}

/* Style for the active item within the dropdown */
.dropdown-item.active {
    background-color: var(--primary-accent);
    color: #0c0c0c;
    font-weight: 600;
}

/* Show dropdown on hover (for desktop) */
@media (hover: hover) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item.dropdown:hover .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* Class to open dropdown with JS (for mobile/click) */
.nav-item.dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.dropdown.open .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Redundant rules from the end of the file have been removed as they are already handled in style.css */

