/* assets/css/style.css */
/* Style z dokładnym układem jak index.html */

:root {
    /* Główne kolory - dokładnie jak w HTML */
    --primary-color: #1a237e;      
    --secondary-color: #00bcd4;    
    --accent-color-1: #7c4dff;     
    --accent-color-2: #ff9800;     
    --accent-color: #7c4dff;       
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    
    /* Tła */
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    
    /* Tekst */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #ffffff;
    
    /* Cienie i pozostałe */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius: 8px;
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.mb3 h4 h5{
	color:white;
}
a {
    text-decoration: none;
    color: #2298f3;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.anchor-offset {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--bg-white);
}

section[id] {
    padding-top: 90px;
    margin-top: -90px;
}


/* ===== NAVBAR - Bootstrap kompatybilny ===== */
.navbar {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    z-index: 1030;
    position: relative;
}

.navbar.fixed-top {
    position: fixed; /* przykleja navbar */
    top: 0;          /* od góry strony */
    left: 0;         /* od lewej krawędzi */
    width: 100%;     /* zajmuje całą szerokość */
    z-index: 1030;   /* nad innymi elementami */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

/* Fix dla hero buttons */
.hero-buttons a {
    color: white;
    text-decoration: none;
}

.hero-buttons a:hover {
    color: white;
    text-decoration: none;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color) !important;
}

/* ===== PRZYCISKI ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #151d69;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary, .btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover, .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mt-auto {
  display: flex;
  justify-content: center;
  margin:5px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(0, 188, 212, 0.8) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 80%;
    text-align: center;
}

.hero-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-medium);
    background-color: var(--bg-white);
    transition: transform var(--transition-medium);
    object-fit: cover;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-content {
    width: 60%;
    padding-left: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tagline, .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ===== SEKCJE ===== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.hobby-image img {
    border-radius: 88px;
    transition: transform 0.3s ease;
    cursor: pointer;
	width:200px;
	height:250px;
}

.hobby-image img:hover {
    transform: scale(1.02);
}


/* ===== KARTY ===== */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
    background-color: var(--bg-white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== O MNIE - dokładnie jak HTML ===== */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.about-skills {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skill-category, .skill-category-card {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
}

.skill-category:hover, .skill-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.skill-category h3, .skill-category-card h5 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.skill-category h3 i, .skill-category-card i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.skill-category p, .skill-category-card .card-text {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ===== UMIEJĘTNOŚCI ===== */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.skill-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.skill-card i, .skill-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.skill-card h3, .skill-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.skill-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem auto;
    display: block;
}

.skill-level, .progress {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 15px;
}

.skill-bar, .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color-1) 100%);
    border-radius: 5px;
}

/* ===== SKILL PROGRESS BARS ===== */
.skill-progress {
    margin-top: 15px;
    width: 100%;
}

.skill-progress .progress {
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 5px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skill-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4caf50 0%, #66bb6a 50%, #81c784 100%);
    border-radius: 6px;
    transition: width 0.8s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-progress .progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        transparent 75%);
    background-size: 20px 20px;
    animation: progress-shine 2s linear infinite;
    border-radius: 6px;
}

@keyframes progress-shine {
    0% {
        background-position: -20px 0;
    }
    100% {
        background-position: 20px 0;
    }
}

/* Różne kolory dla różnych poziomów umiejętności */
.skill-progress .progress-bar[aria-valuenow="100"] {
    background: linear-gradient(90deg, #2e7d32 0%, #388e3c 50%, #43a047 100%);
}

.skill-progress .progress-bar[aria-valuenow^="9"] {
    background: linear-gradient(90deg, #4caf50 0%, #66bb6a 50%, #81c784 100%);
}

.skill-progress .progress-bar[aria-valuenow^="8"] {
    background: linear-gradient(90deg, #8bc34a 0%, #9ccc65 50%, #aed581 100%);
}

.skill-progress .progress-bar[aria-valuenow^="7"] {
    background: linear-gradient(90deg, #cddc39 0%, #d4e157 50%, #dce775 100%);
}

.skill-progress .progress-bar[aria-valuenow^="6"] {
    background: linear-gradient(90deg, #ffeb3b 0%, #ffee58 50%, #fff176 100%);
}

.skill-progress .progress-bar[aria-valuenow^="5"] {
    background: linear-gradient(90deg, #ffc107 0%, #ffca28 50%, #ffd54f 100%);
}

.skill-progress .progress-bar[aria-valuenow^="4"] {
    background: linear-gradient(90deg, #ff9800 0%, #ffa726 50%, #ffb74d 100%);
}

.skill-progress .progress-bar[aria-valuenow^="3"] {
    background: linear-gradient(90deg, #ff5722 0%, #ff7043 50%, #ff8a65 100%);
}

.skill-progress .progress-bar[aria-valuenow^="2"] {
    background: linear-gradient(90deg, #f44336 0%, #ef5350 50%, #e57373 100%);
}

.skill-progress .progress-bar[aria-valuenow^="1"] {
    background: linear-gradient(90deg, #e91e63 0%, #ec407a 50%, #f06292 100%);
}

/* Animacja przy ładowaniu strony */
.skill-card .skill-progress .progress-bar {
    width: 0% !important;
    animation: fillProgressBar 1.5s ease-out 0.5s forwards;
}

@keyframes fillProgressBar {
    from {
        width: 0% !important;
    }
    to {
        width: var(--target-width) !important;
    }
}
/* ===== GRAFIKA - dokładne rozmiary jak HTML ===== */
.graphics-content, .hobby-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.graphics-text, .hobby-text {
    flex: 1;
    min-width: 300px;
}

.graphics-text p, .hobby-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.graphics-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.graphics-text li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.graphics-gallery, .drawing-gallery {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition);
    cursor: pointer;
    text-align: center;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 10px;
    margin: 0;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* ===== PROJEKTY ===== */
.projects-container, .books-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card, .book-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover, .book-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.project-image, .book-cover {
    height: 200px;
    overflow: hidden;
}

.project-image img, .book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-image img:hover {
    transform: scale(1.1);
}

.placeholder-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    height: 100%;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.project-content, .book-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3, .book-info h3, .card-title {
    font-size: 1.3rem;
	margin:0 auto 10px;
}

.project-content p, .book-info p, .card-text {
    color: var(--text-medium);
    margin:5px 10px 15px 10px;
    flex-grow: 1;
	 text-align: center;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
}

.project-tech span {
    background-color: rgba(26, 35, 126, 0.1);
    color: #fff;
    padding: 5px 10px;
    border-radius: var(--border-radius-small);
    font-size: 0.8rem;
    font-weight: 600;
	text-align: center;
	margin-left:0px;
}




/* ===== AUDIO PLAYERS ===== */
.radio-players, .singing-gallery {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.radio-player, .audio-player {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition);
}

.radio-player:hover, .audio-player:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.radio-player h3, .audio-player h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.audio-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-controls, .radio-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.player-button, .play-btn, .pause-btn, .stop-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--primary-color);
}

.player-button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.player-button.play-btn:hover, .play-btn:hover {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.player-button.pause-btn:hover, .pause-btn:hover {
    background-color: #FFC107;
    border-color: #FFC107;
}

.player-button.stop-btn:hover, .stop-btn:hover {
    background-color: #F44336;
    border-color: #F44336;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}

.volume-control i {
    color: var(--primary-color);
}

.volume-slider {
    width: 80px;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.player-status {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.status-indicator, .status-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.status-text.playing {
    color: #4CAF50;
}

.status-text.error {
    color: #F44336;
}

.player-progress {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.progress-bar {
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color-1) 100%);
    width: 0%;
    border-radius: 5px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-medium);
}

/* ===== KONTAKT ===== */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i, .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item p, .contact-item div {
    color: var(--text-medium);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon, .social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    text-decoration: none;
    margin-right: 1rem;
}

.social-icon:hover, .social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    color: var(--text-light);
}

.social-link.facebook { background-color: #3b5998; }
.social-link.twitter { background-color: #1da1f2; }
.social-link.linkedin { background-color: #0077b5; }
.social-link.instagram { background-color: #e1306c; }
.social-link.discord { background-color: #7289da; }

/* ===== FORMULARZ ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label, .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group textarea, .form-control, .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-small);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}
.text-muted{
	color:white;
}
/* ===== STOPKA ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo, .footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo h3, .footer-brand h4 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-social {
  display: flex;
  gap: 8px;            /* odstęp między ikonami */
  justify-content: center; /* wycentruje w poziomie */
  align-items: center;     /* wyrówna w pionie */
}


.footer-nav, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer h4, .footer h5 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after, .footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a, .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-nav ul li a:hover, .footer-links a:hover {
    color: var(--secondary-color);
}

.footer-social .social-icons {
    display: flex;
    gap: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== TABS ===== */
.nav-pills .nav-link {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin: 0 5px;
    border-radius: var(--border-radius);
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.nav-pills .nav-link:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image, .hero-content {
        width: 100%;
        padding: 0;
    }
    
    .hero-image {
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content, .graphics-content, .hobby-content, .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-image img {
        width: 250px;
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tagline, .lead {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .skill-card i, .skill-icon {
        font-size: 3rem;
    }
    
    .graphics-gallery, .drawing-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 150px;
    }
	@media (max-width: 576px) {
    .skill-progress .progress {
        height: 10px;
    }
    
    .skill-progress .progress-bar {
        font-size: 0.7rem;
        padding-right: 6px;
    }
}

/* Hover effect dla progress bar */
.skill-card:hover .skill-progress .progress-bar {
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
    transform: scaleY(1.1);
    transition: all 0.3s ease;
}

/* Zapewnienie, że pozostałe progress bary nie są nadpisywane */
.custom-audio-player .progress-bar {
    background: linear-gradient(90deg, #ffeaa7, #fab1a0) !important;
    height: 4px !important;
    font-size: inherit !important;
    padding: 0 !important;
    color: inherit !important;
    text-shadow: none !important;
}

.custom-audio-player .progress-bar::before {
    display: none !important;
}
}

/* ===== ANIMACJE ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-card, .project-card, .book-card, .gallery-item {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.skill-card:nth-child(2), .project-card:nth-child(2), .book-card:nth-child(2), .gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.skill-card:nth-child(3), .project-card:nth-child(3), .book-card:nth-child(3), .gallery-item:nth-child(3) {
    animation-delay: 0.4s;
}

.skill-card:nth-child(4), .project-card:nth-child(4), .gallery-item:nth-child(4) {
    animation-delay: 0.6s;
}

.skill-card:nth-child(5), .project-card:nth-child(5), .gallery-item:nth-child(5) {
    animation-delay: 0.8s;
}

.skill-card:nth-child(n+6) {
    animation-delay: 1s;
}
