/*   
Theme Name: MindTheGab
Theme URI: https://github.com/paulkazusek/worpress-themes
Author: Paul Kazusek
Author URI: https://github.com/paulkazusek
Description: MindTheGab is a simple theme for www.mindthegab.us
Tags: blog
Version: 0.20
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 6.0
License: All Rights Reserved
License URI: https://github.com/paulkazusek/worpress-themes
Text Domain: mindthegab
*/

/*
Requires Plugins: Font Awesome
*/

/* ========================================
   GLOBAL STYLES
   ======================================== */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    background-color: #22313f;
}

/* ========================================
   HEADER
   ======================================== */

.header-image {
    width: 100%;
    height: auto;
    display: block;
}
  
.picture-container {
    max-width: 100%;
    overflow: hidden;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar-custom {
    background-color: rgba(0, 0, 0, 1.0);
    position: relative;
}

.navbar-left {
    display: flex;
    gap: 15px;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav .nav-link {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: red;
}

.navbar-nav .nav-link i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: white;
}

.navbar-nav .nav-link i:hover {
    color: red;
}

/* ========================================
   SECTIONS
   ======================================== */

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: #ffffff;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #22313f;
}

.about-section .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
}

/* Person Cards */
.person-card {
    position: relative;
    width: 80%;
    padding: 15px;
    background-color: #22313f;
    border: 1px solid #34495e;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.person-card:hover {
    background-color: #2a3f4f;
}

.person-header {
    display: flex;
    align-items: center;
}

.person-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.person-info {
    padding: 10px;
    text-align: left;
}

.person-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.person-instrument {
    font-size: 1.1rem;
    color: #fafafa;
    margin: 0;
}

/* Info Icon */
.person-info-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    z-index: 10;
}

.person-info-icon:hover {
    color: #ff0000;
    transform: scale(1.2);
}

.person-info-icon i {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

/* Icon rotiert wenn Collapse offen ist */
.person-info-icon[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Collapse Content */
.person-details-collapse {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #34495e;
}

.person-details-content {
    padding: 10px 0;
}

.person-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.person-details-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background-color: #1a252f;
    border-radius: 5px;
    border-left: 4px solid #ff0000;
    transition: all 0.3s ease;
}

.person-details-list li:hover {
    background-color: #2c3e50;
    transform: translateX(5px);
}

.person-details-list li:last-child {
    margin-bottom: 0;
}

.person-details-list strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.person-details-list strong i {
    margin-right: 8px;
    color: #ff0000;
}

.person-details-list span {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   OUR MUSIC SECTION
   ======================================== */

.ourmusic-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    background-color: #22313f;
}

.ourmusic-section .row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: stretch !important;
    gap: 30px;
    width: 100%;
    max-width: none;
    padding: 0 15px;
}

.ourmusic-section .col-md-6 {
    flex: 1 !important;
    max-width: none !important;
}

.music-info-card {
    width: 100%;
    padding: 40px 30px;
    background-color: #22313f;
    border: 1px solid #34495e;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.music-info-card:hover {
    background-color: #2a3f4f;
}

.music-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Handgemachte Musik Icon */
.music-info-icon {
    font-size: 120px;
    color: #ff0000;
    transition: transform 0.3s ease;
}

.music-info-card:hover .music-info-icon {
    transform: scale(1.1);
}

.music-info-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.music-info-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

/* Spotify Bereich */
.spotify-link {
    position: relative;
    display: inline-block;
}

.spotify-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: red;
    transform: translateY(-50%) rotate(-10deg);
}

.spotify-icon {
    font-size: 120px;
    color: #1DB954;
    transition: transform 0.3s ease;
}

.music-info-card:hover .spotify-icon {
    transform: scale(1.1);
}

.spotify-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   MEDIA SECTION (Videos)
   ======================================== */

.media-section {
    padding: 100px 0;
    background-color: #22313f;
}

.media-section .row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: stretch !important;
    gap: 30px;
    width: 100%;
    max-width: none;
    padding: 0 15px;
}

.media-section .col-md-6 {
    flex: 1 !important;
    max-width: none !important;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #34495e;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
        font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    }

.footer-links li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    }

.footer-links li i {
    margin-right: 10px;
    color: #ffffff;
    width: 20px;
    display: inline-block;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    }

.footer-links a:hover {
    color: #bdc3c7;
    }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    }

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    }

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .about-section .row {
        gap: 10px;
    }

    .person-card {
        width: 95%;
    }
    
    .person-header {
        flex-direction: column;
        text-align: center;
    }

    .person-image {
        margin-bottom: 15px;
}

    .person-info {
        text-align: center;
    }

    .person-info-icon {
        top: 10px;
        right: 10px;
        font-size: 1.3rem;
    }

    .person-details-list li {
        padding: 10px 12px;
    }

    .person-details-list strong {
        font-size: 0.9rem;
    }

    .person-details-list span {
        font-size: 0.85rem;
    }

    /* Our Music Section Mobile */
    .ourmusic-section .row {
        flex-direction: column !important;
        gap: 20px;
    }

    .music-info-card {
        max-width: 90%;
        padding: 30px 20px;
    }

    .music-info-icon,
    .spotify-icon {
        font-size: 100px;
    }

    .music-info-title {
        font-size: 1.5rem;
    }

    .music-info-description,
    .spotify-description {
        font-size: 0.9rem;
    }

    /* Media Section Mobile */
    .media-section .row {
        flex-direction: column !important;
        gap: 20px;
    }

    .media-section .col-md-6 {
        max-width: 100% !important;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-links li {
        font-size: 0.95rem;
    }
}
