* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #000;
    line-height: 1.6;
}

.header-strip {
    background-color: rgb(0, 120, 30);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header-strip .store-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-strip .tagline {
    font-size: 16px;
    font-weight: normal;
    background-color: rgb(0, 120, 30);
}

.logo {
    height: 50px;
    width: auto;
}

.navbar {
    background-color: #333333;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #555555;
}

.nav-link.active {
    background-color: #222222;
}

.phone_menu {
    display: none;
    cursor: pointer;
    padding: 15px;
}

.phone_menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s;
}

.fish-band1, .fish-band2, .fish-band3, .fish-band4, .fish-band5 {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #f5f5f5;
}

.fish-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.home-title, .about-title {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 800px;
    line-height: 1.4;
}

.home-title .line1, .home-title .line2 {
    display: block;
}

.home-title .line1 {
    margin-bottom: 10px;
}

.home-text, .about-text {
    background-color: white;
    padding: 30px;
    margin: 0 auto 30px;
    line-height: 1.6;
    max-width: 800px;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0 auto 30px;
    max-width: 800px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-icon:hover::before {
    transform: translateX(100%);
}

.social-icon.tiktok {background: linear-gradient(45deg, #000000 0%, #25F4EE 35%, #FE2C55 70%, #ff66b2 100%);}
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.youtube { background: linear-gradient(45deg, #FF0000 0%, #FF4D4D 25%, #CC0000 50%, #990000 75%, #800000 100%); }
.social-icon.facebook { background: linear-gradient(45deg, #5b7fd4 0%, #4a6fc2 25%, #3f5fae 50%, #355294 75%, #2e4880 100%); }

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon:hover img {
    transform: scale(1.1);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.carousel-slide.active {
    display: block;
}

.no-images-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 1.2em;
    text-align: center;
    border-radius: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

.tab-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 30px auto;
    line-height: 1.6;
    max-width: 800px;
    color: #000;
}

.tab-section h2 {
    margin-bottom: 20px;
    color: rgb(7, 150, 43);
}

.tab-section p, .tab-section li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.tab-section ul {
    padding-left: 20px;
}

.kontakt {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

.kontakt:hover {
    color: rgb(7, 150, 43);
}

.map-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 30px auto;
    max-width: 800px;
}

.map-section h2 {
    margin-bottom: 20px;
    color: rgb(7, 150, 43);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.gallery-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.gallery-header-row {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    margin-bottom: 30px;
}

.gallery-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin: 0; 
}

.btn-refresh {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    background: linear-gradient(135deg, rgb(7, 150, 43) 0%, rgb(5, 100, 35) 100%);
    
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(7, 150, 43, 0.3);
    transition: all 0.3s ease;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-refresh:hover {
    box-shadow: 0 6px 12px rgba(7, 150, 43, 0.5);
    background: linear-gradient(135deg, rgb(20, 170, 60) 0%, rgb(7, 150, 43) 100%);
}

.btn-refresh img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .gallery-grid {
        gap: 15px;
    }
    .gallery-col {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .phone_menu {
        display: block;
    } 

    .navbar {
        background-color: #333333;
        padding: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        width: 100%;
        position: fixed;
        z-index: 1000;
    }

    .header-strip {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        height: 80px;
        padding: 10px 0;
    }

    .fish-band1 {
        margin-top: 59px;
    }

    body {
        padding-top: 80px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 122px;
        flex-direction: column;
        background-color: #333333;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px;
    }

    .carousel-slide {
        height: 250px;
    }

    .home-title, .about-title {
        font-size: 24px;
        padding: 0 20px;
    }

    .home-text, .about-text, .tab-section, .map-section {
        padding: 20px;
        max-width: 100%;
    }

    .logo {
        height: 40px;
    }

    .header-strip {
        font-size: 20px;
    }

    .header-strip .tagline {
        font-size: 14px;
        background-color: rgb(0, 120, 30);
    }

    .fish-band1 {
        height: 150px;
    }

    .social-media {
        max-width: 100%;
        gap: 20px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon img {
        width: 25px;
        height: 25px;
    }
    
    .gallery-grid {
        flex-direction: column;
    }

    .gallery-header-row {
        flex-direction: column;
        gap: 15px;
        position: static;
        text-align: center;
    }
    
    .btn-refresh {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        flex-direction: column;
    }
}