﻿:root {
    --primary: #6c63ff;
    --secondary: #ff6584;
    --dark: #2d2d2d;
    --light: #f8f9fa;
    --accent: #4ecdc4;
    --gradient-start: #6c63ff;
    --gradient-end: #ff6584;
}

/* Base Structure for Footer Positioning */
html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Add margin bottom to accommodate footer height */
    margin-bottom: 400px; /* Adjust this value based on your footer height */
}

main {
    flex: 1 0 auto; /* This makes the main content area expand to push footer down */
}

/* Footer Styles - Fixed at bottom */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top:200px;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28108, 99, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
        background-color: rgba(108, 99, 255, 0.1);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 120px 0 80px;
    margin-top: -76px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

    .section-title h2 {
        display: inline-block;
        position: relative;
        z-index: 1;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            border-radius: 2px;
        }

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-text {
    color: #666;
    margin-bottom: 20px;
}

/* Button Styles */
.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

    .btn-primary:hover {
        background-color: #5a52e0;
        border-color: #5a52e0;
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        background-color: var(--primary);
        color: white;
    }

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

    .btn-secondary:hover {
        background-color: #ff517a;
        border-color: #ff517a;
    }

/* Music Player */
.music-player {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin-bottom: 30px;
}

.music-player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

    .music-player-controls i {
        font-size: 24px;
        margin: 0 15px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .music-player-controls i:hover {
            color: var(--accent);
            transform: scale(1.1);
        }

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    transition: all 0.3s ease;
}

    .play-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(108, 99, 255, 0.6);
    }

    .play-btn i {
        font-size: 24px;
        margin-left: 17px;
    }

/* Footer Styles */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

.social-links {
    display: flex;
    margin-top: 20px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        color: white;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero {
        padding: 100px 0 60px;
    }

        .hero h1 {
            font-size: 2.8rem;
        }

    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .nav-link {
        margin: 5px 0;
    }

    /* Adjust body margin for smaller screens */
    body {
        margin-bottom: 600px; /* Increase for smaller screens as footer gets taller */
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 80px 0 50px;
        text-align: center;
    }

        .hero h1 {
            font-size: 2.2rem;
        }

    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    /* Adjust body margin for even smaller screens */
    body {
        margin-bottom: 700px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Adjust body margin for mobile screens */
    body {
        margin-bottom: 800px;
    }
}
/* Additional CSS for the new pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 120px 0 60px;
    margin-top: 140px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Biography Styles */
.biography-image {
    position: relative;
    margin-bottom: 30px;
}

.biography-year {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.biography-content {
    padding: 20px;
}

.biography-quote {
    border-left: 4px solid var(--primary);
    padding: 15px 0 15px 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

    .biography-quote p {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .biography-quote cite {
        font-size: 0.9rem;
        color: #777;
    }

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

    .timeline::after {
        content: "";
        position: absolute;
        width: 4px;
        background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        border-radius: 2px;
    }

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .timeline-content h3 {
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--primary);
    }

    .timeline-content.right {
        text-align: right;
    }

/* Influence Cards */
.influence-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .influence-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.influence-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Blog Styles */
.featured-post {
    margin-bottom: 60px;
}

.post-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-category {
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 10px;
}

.post-date {
    color: #777;
}

.featured-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-post-image {
    margin: 20px 0 30px;
}

.post-content {
    line-height: 1.8;
}

.post-quote {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.post-cta {
    margin-top: 30px;
}

.blog-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .blog-card .card-title {
        font-size: 1.3rem;
    }

.blog-pagination {
    margin-top: 50px;
}

.page-link {
    color: var(--primary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Music & Lyrics Styles */
.album-cover {
    position: relative;
    margin-bottom: 30px;
}

.album-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.album-meta {
    margin-bottom: 15px;
}

.album-type {
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.album-year {
    color: #777;
    font-size: 0.9rem;
}

.album-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.album-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.album-actions {
    margin-bottom: 30px;
}

.streaming-platforms {
    margin-top: 30px;
}

    .streaming-platforms span {
        display: block;
        margin-bottom: 15px;
        color: #777;
    }

.platform-icons {
    display: flex;
    gap: 15px;
}

    .platform-icons a {
        font-size: 1.5rem;
        color: #555;
        transition: all 0.3s ease;
    }

        .platform-icons a:hover {
            color: var(--primary);
            transform: translateY(-5px);
        }

.tracks-container {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.track-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .track-item:hover {
        background-color: #f8f9fa;
    }

.track-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #999;
    width: 40px;
}

.track-info {
    flex: 1;
    padding: 0 20px;
}

.track-title {
    margin: 0;
    font-size: 1.1rem;
}

.track-duration {
    font-size: 0.9rem;
    color: #777;
}

.track-actions {
    display: flex;
    gap: 10px;
}

.btn-play,
.btn-lyrics {
    background: none;
    border: none;
    color: #777;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .btn-play:hover,
    .btn-lyrics:hover {
        color: var(--primary);
    }

.lyrics-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.lyrics-text {
    white-space: pre-line;
    line-height: 1.8;
}

    .lyrics-text h4 {
        margin-bottom: 20px;
        color: var(--primary);
    }

.album-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

    .album-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.featured-video {
    margin-bottom: 40px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    transition: all 0.3s ease;
}

    .video-play-button:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(108, 99, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .video-play-icon:hover {
        background: var(--primary);
        transform: translate(-50%, -50%) scale(1.1);
    }

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.lyrics-archive {
    margin-top: 30px;
}

.lyrics-search {
    margin-bottom: 30px;
}

.lyrics-categories {
    margin-bottom: 30px;
}

.streaming-platforms-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .platform-link i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .platform-link:hover {
        transform: translateY(-10px);
        color: var(--gradient-start);
    }

/* Contact Styles */
.contact-info {
    padding: 20px;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    color: #777;
    margin: 0;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links-large a {
        width: 50px;
        height: 50px;
        background-color: #f1f1f1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #555;
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }

        .social-links-large a:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            transform: translateY(-5px);
        }

.contact-form-container {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 400px;
    overflow: hidden;
}

/* Background Gradient */
.bg-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-item:nth-child(even) {
            left: 0;
        }

    .timeline-dot {
        left: 21px;
        right: auto;
    }

    .timeline-content.right {
        text-align: left;
    }

    .album-badge {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-title {
        font-size: 2rem;
    }

    .biography-year {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
        font-size: 1rem;
    }

    .featured-post-title {
        font-size: 1.8rem;
    }

    .album-title {
        font-size: 1.8rem;
    }

    .streaming-platforms-large {
        gap: 20px;
    }

    .platform-link i {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding: 70px 0 40px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline::after {
        left: 21px;
    }

    .timeline-dot {
        left: 11px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}