/* About page specific styles */

/* Introduction Section */
.about-intro {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.intro-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
    max-width: 400px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.intro-image img:hover {
    transform: scale(1.02);
}

.animate-fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Tabs Navigation */
.about-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.tab-btn {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: rgba(52, 152, 219, 0.3);
    border-color: var(--accent-blue);
}

.tab-btn.active {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* History Timeline */
.history-timeline {
    margin-bottom: 40px;
}

.history-timeline h2 {
    color: var(--accent-blue);
    margin-bottom: 30px;
    text-align: center;
}

.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-loading {
    text-align: center;
    padding: 40px;
    color: var(--medium-text);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content.left {
    float: left;
}

.timeline-content.right {
    float: right;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    top: 20px;
}

.timeline-content.left::before {
    right: -30px;
}

.timeline-content.right::before {
    left: -30px;
}

.timeline-period {
    display: inline-block;
    background-color: var(--accent-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: bold;
}

.timeline-title {
    margin-bottom: 10px;
    color: var(--light-text);
}

.timeline-description {
    line-height: 1.7;
}

/* Founder Profile */
.founder-profile {
    margin-bottom: 40px;
}

.founder-profile h2 {
    color: var(--accent-blue);
    margin-bottom: 30px;
    text-align: center;
}

.founder-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.founder-image {
    flex: 1;
    max-width: 350px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.founder-info {
    flex: 2;
}

.founder-info h3 {
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.founder-quote {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    line-height: 1.7;
}

.founder-quote i {
    color: var(--accent-blue);
    opacity: 0.5;
    position: absolute;
}

.founder-quote i.fa-quote-left {
    top: 10px;
    left: 10px;
}

.founder-quote i.fa-quote-right {
    bottom: 10px;
    right: 10px;
}

.founder-quote span {
    display: block;
    padding: 0 20px;
}

.founder-bio {
    line-height: 1.7;
}

.founder-playlists {
    margin-top: 30px;
}

.founder-playlists h3 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.playlist-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.playlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.playlist-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: white;
}

.playlist-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.playlist-description {
    font-size: 0.9rem;
    color: var(--medium-text);
    margin-bottom: 15px;
}

.playlist-link {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.playlist-link:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

/* Team Profiles */
.team-profiles {
    margin-bottom: 40px;
}

.team-profiles h2 {
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-align: center;
}

.team-profiles > p {
    text-align: center;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.team-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-avatar {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
}

.team-info {
    padding: 15px;
}

.team-info h3 {
    color: var(--light-text);
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent-blue);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
}

.join-team-banner {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.join-team-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.join-team-banner p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-apply {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: var(--accent-purple);
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Vision Statement */
.vision-statement {
    margin-bottom: 40px;
}

.vision-statement h2 {
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-align: center;
}

.vision-content {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
}

.vision-features {
    margin-bottom: 30px;
}

.vision-features h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

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

.feature-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.feature-card:nth-child(2) .feature-icon {
    background-color: var(--accent-purple);
}

.feature-card:nth-child(3) .feature-icon {
    background-color: var(--accent-green);
}

.feature-card:nth-child(4) .feature-icon {
    background-color: var(--accent-yellow);
}

.feature-card h4 {
    margin-bottom: 10px;
    color: var(--light-text);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--medium-text);
}

.relaunch-countdown {
    background: linear-gradient(135deg, var(--dark-blue), var(--secondary-bg));
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.relaunch-countdown h3 {
    margin-bottom: 20px;
    color: var(--light-text);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    min-width: 80px;
}

.count-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--accent-blue);
}

.count-label {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-text);
}

.countdown-info {
    color: var(--light-text);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: var(--accent-blue);
    margin-bottom: 30px;
    text-align: center;
}

.faq-container {
    margin-bottom: 30px;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 20px;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: var(--accent-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.contact-cta {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
}

.contact-cta h3 {
    margin-bottom: 15px;
    color: var(--light-text);
}

.contact-cta p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-blue);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.newsletter-signup h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.newsletter-signup p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.signup-form input {
    flex-grow: 1;
    padding: 12px;
    border-radius: 8px 0 0 8px;
    border: none;
}

.signup-form button {
    padding: 0 20px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #2980b9;
}

/* Right Sidebar Styles */
.about-quick-links {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.about-quick-links h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links-list {
    list-style: none;
    padding: 0;
}

.quick-links-list li {
    margin-bottom: 10px;
}

.quick-link {
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.social-connect {
    background-color: var(--secondary-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.social-connect h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discord-invite {
    text-align: center;
}

.discord-invite p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.discord-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #7289DA;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background-color: #5f73bc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-content {
        padding-top: 60px; /* Space for mobile header */
    }

    .about-intro {
        flex-direction: column;
    }

    .intro-image {
        max-width: 100%;
    }

    .founder-container {
        flex-direction: column;
    }

    .founder-image {
        max-width: 100%;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .about-tabs {
        justify-content: center;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        float: right;
    }

    .timeline-content.left::before,
    .timeline-content.right::before {
        left: -30px;
    }

    .team-grid,
    .feature-grid,
    .playlist-grid {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form input {
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .signup-form button {
        border-radius: 8px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .countdown-item {
        min-width: 50px;
        padding: 10px;
    }

    .count-number {
        font-size: 1.5rem;
    }

    .count-label {
        font-size: 0.8rem;
    }
}