﻿body {
    padding-top: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', Georgia, serif;
    font-weight: 600;
    color: #212121;
}

html {
    overflow-x: hidden;
    height: 100%;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    animation: fadeInUp 1.2s ease;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fb8c00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 140, 0, 0.4);
    animation: fadeInUp 1.4s ease;
    margin: 5px;
}

.hero-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 140, 0, 0.6);
    color: white;
    text-decoration: none;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    background: white;
    color: #212121;
    border-color: white;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp{

    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.modern-banner {
    background: white;
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.brand-title {
    font-size: 2rem;
    margin: 10px 0 5px 0;
    color: #212121;
    font-weight: 700;
}

.brand-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.align-items-center {
    display: flex;
    align-items: center;
}

.mikulik-banner {
    background: linear-gradient(135deg, #424242 0%, #616161 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mikulik-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: white;
    font-weight: 600;
}

.mikulik-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mikulik-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mikulik-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.link-icon {
    font-size: 1.2rem;
}

.mikulik-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mikulik-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mikulik-logo {
    max-width: 100%;
    padding: 10px;
    transition: transform 0.3s ease;
}

.mikulik-logo:hover {
    transform: scale(1.05);
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

input,
select,
textarea {
    max-width: 280px;
}

.image-right {
    float: right;
    margin: 15px;
    margin-right: 0;
    width: 75%;
    background-color: #ffffff;
    padding: 5px;
}

.header-down {
    margin-top: 40%;
}

.url-dark {
    color: #fb8c00;
}

.url-dark :hover {
    color: #333333 !important;
}

html, body {
    height: 100%;
}

.catalog {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(251, 140, 0, 0.3);
}

.catalog > a {
    display: block;
    position: relative;
    overflow: hidden;
}

.catalog > a > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog > a:hover > img {
    transform: scale(1.05);
}

.catalog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.catalog:hover .catalog-overlay {
    transform: translateY(0);
}

.shop-item {
    padding: 15px;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
}

#lightbox .modal-content {
    display: inline-block;
    text-align: center;
}

#lightbox .close {
    opacity: 1;
    color: rgb(255, 255, 255);
    background-color: rgb(25, 25, 25);
    padding: 5px 8px;
    border-radius: 30px;
    border: 2px solid rgb(255, 255, 255);
    position: absolute;
    top: -15px;
    right: -55px;
    z-index: 1032;
}

.typeButton {
    display: none;
    border-radius: 0;
    margin: 2px;
}

.gallery-box {
    padding: 15px;
}

.gallery-box  img {
    padding-bottom: 5px;
}

.notify {
    margin-bottom: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #616161 0%, #757575 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notify h4 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.category-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #fb8c00 #f5f6f7;
    flex-wrap: nowrap;
}

.category-filters::-webkit-scrollbar {
    height: 6px;
}

.category-filters::-webkit-scrollbar-track {
    background: #f5f6f7;
    border-radius: 10px;
}

.category-filters::-webkit-scrollbar-thumb {
    background: #fb8c00;
    border-radius: 10px;
}

.category-filters::-webkit-scrollbar-thumb:hover {
    background: #e67e00;
}

.category-pill {
    background: white;
    border: 2px solid #fb8c00;
    color: #fb8c00;
    padding: 8px 20px;
    border-radius: 25px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    flex-shrink: 0;
    user-select: none;
}

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

.catalog-grid-instagram {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.catalog-small {
    margin-bottom: 15px;
}

.catalog-small > a > img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.catalog-small .catalog-overlay {
    font-size: 13px;
    padding: 12px;
}

.category-section {
    margin-bottom: 40px;
}

.category-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #fb8c00;
    display: inline-block;
}

.navbar-modern {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    min-height: 70px;
    transition: all 0.3s ease;
}

.navbar-modern .container {
    display: flex;
    align-items: center;
}

.navbar-modern .navbar-brand {
    color: #333;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-right: auto;
    flex: 0 0 auto;
}

.navbar-modern .navbar-brand:hover,
.navbar-modern .navbar-brand:focus {
    color: #fb8c00;
    text-decoration: none;
}

.navbar-modern .navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-modern .navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(251, 140, 0, 0.3);
}

.navbar-modern .brand-text {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
}

.navbar-main {
    margin-left: 0;
    display: flex;
    align-items: center;
}

.navbar-main > li {
    position: relative;
}

.navbar-main > li > a {
    color: #555;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 25px 18px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-main > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fb8c00;
    transition: width 0.3s ease;
}

.navbar-main > li > a:hover,
.navbar-main > li > a:focus {
    color: #fb8c00;
    background: transparent;
}

.navbar-main > li > a:hover::after,
.navbar-main > li.active > a::after {
    width: 80%;
}

.navbar-main > li.active > a {
    color: #fb8c00;
    background: transparent;
}

.navbar-cta {
    margin-left: auto;
    padding-left: 20px;
}

.btn-navbar-appointment {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fb8c00;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(251, 140, 0, 0.4);
    margin-top: 0;
    align-self: center;
}

.btn-navbar-appointment:hover,
.btn-navbar-appointment:focus {
    background: #e67e00 !important;
    color: white !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(251, 140, 0, 0.6);
}

.btn-navbar-appointment::after {
    display: none !important;
}

.btn-navbar-appointment .btn-icon {
    font-size: 1.2rem;
}

.btn-navbar-appointment .btn-text {
    font-size: 1.3rem;
}

.navbar-modern .navbar-toggle {
    border: 2px solid #fb8c00;
    background: transparent;
    margin-top: 18px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    padding: 8px 10px;
    display: block;
    float: none;
    margin-left: auto;
    margin-right: 15px;
    flex: 0 0 auto;
}

.navbar-modern .navbar-toggle:hover,
.navbar-modern .navbar-toggle:focus {
    background: rgba(251, 140, 0, 0.1);
    border-color: #fb8c00;
}

.navbar-modern .navbar-toggle .icon-bar {
    background-color: #fb8c00;
    height: 3px;
    border-radius: 2px;
    width: 24px;
}

.navbar-modern.scrolled {
    min-height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-modern.scrolled .navbar-brand {
    padding: 12px 15px;
}

.navbar-modern.scrolled .navbar-logo {
    height: 38px;
}

.navbar-modern.scrolled .navbar-main > li > a {
    padding: 20px 18px;
}

.navbar-modern.scrolled .btn-navbar-appointment {
    margin-top: 12px;
    padding: 10px 25px !important;
}

.navbar-modern .navbar-collapse {
    flex: 1;
    align-items: center;
}

.navbar-modern .navbar-collapse.in {
    display: flex;
    flex-direction: column;
}

.navbar-modern .dropdown-menu {
    background: #2d2d2d;
    border: 1px solid rgba(251, 140, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown{

    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.navbar-modern .dropdown-menu > li > a {
    color: #e0e0e0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.navbar-modern .dropdown-menu > li > a:hover {
    background: rgba(251, 140, 0, 0.15);
    color: #fb8c00;
    padding-left: 25px;
}

/* Mobile navbar styles */
@media (max-width: 767px) {
    .navbar-modern .navbar-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
    
    .navbar-modern .navbar-brand {
        margin-right: auto;
        flex: 0 0 auto;
    }
    
    .navbar-modern .navbar-toggle {
        display: block;
        float: none;
        margin-left: auto;
        margin-right: 15px;
        flex: 0 0 auto;
    }
    
    .navbar-modern .navbar-collapse {
        border-top: 1px solid #e7e7e7;
        margin-top: 10px;
        padding-top: 10px;
        width: 100%;
        clear: both;
    }
    
    .navbar-modern .navbar-collapse.in {
        display: flex;
        flex-direction: column;
    }
    
    .navbar-main {
        flex-direction: column;
        margin: 0;
        width: 100%;
    }
    
    .navbar-main > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-main > li > a {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }
    
    .navbar-main > li > a::after {
        display: none;
    }
    
    .navbar-main > li > a:hover {
        background: rgba(251, 140, 0, 0.1);
    }
    
    .navbar-cta {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
    }
    
    .navbar-cta li {
        width: 100%;
        border-bottom: none;
    }
    
    .btn-navbar-appointment {
        width: calc(100% - 40px);
        margin: 15px 20px 10px 20px !important;
        display: flex !important;
        text-align: center;
        justify-content: center;
    }
    
    .navbar-modern .container {
        display: block;
    }
}

@media (min-width: 768px) {
    .navbar-modern .navbar-collapse {
        display: flex;
    }
    .navbar-toggle{
        display: none !important;
    }
}

/* ===================================
   ABOUT PAGE - MODERNIZED STYLES
   =================================== */

/* Hero sekce O nás stránky */
.about-page-hero {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    padding: 80px 0;
    margin-top: 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.image-wrapper-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-wrapper-hero img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper-hero:hover img {
    transform: scale(1.05);
}

/* Sekce služeb */
.services-section {
    background: white;
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header .section-badge {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(251, 140, 0, 0.15);
    border-color: #fb8c00;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Velký zvýrazněný box */
.highlight-box-large {
    background: linear-gradient(135deg, #fb8c00 0%, #f57c00 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 16px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(251, 140, 0, 0.3);
}

.highlight-box-large strong {
    font-size: 1.5rem;
    display: block;
}

.highlight-box-large p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.highlight-box-large .highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

/* Sekce dalších služeb */
.additional-services-section {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    padding: 80px 0;
}

.feature-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 140, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Video sekce */
.video-section {
    background: white;
    padding: 80px 0;
}

.video-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 20px;
    text-align: center;
}

.video-card .embed-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responzivní styly pro About stránku */
@media (max-width: 991px) {
    .about-page-hero {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .services-section,
    .additional-services-section,
    .video-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 1.8rem;
        margin-top: 20px;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .image-wrapper-hero {
        margin-top: 30px;
    }
    
    .service-card,
    .feature-item {
        margin-bottom: 20px;
    }
    
    .highlight-box-large {
        padding: 30px 20px;
    }
    
    .highlight-box-large strong {
        font-size: 1.2rem;
    }
    
    .highlight-box-large p {
        font-size: 1rem;
    }
    
    .video-card {
        margin-bottom: 20px;
    }
}

/* ===================================
   CONTACT PAGE - MODERNIZED STYLES
   =================================== */

/* Hero sekce kontaktní stránky */
.contact-page-hero {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    padding: 80px 0;
    margin-top: 20px;
}

.contact-page-hero .text-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Kontaktní informační sekce */
.contact-info-section {
    background: white;
    padding: 80px 0;
}

.contact-info-section .row {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-section .col-lg-6 {
    display: flex;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212121;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fb8c00;
}

.contact-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-content strong {
    display: block;
    font-weight: 600;
    color: #212121;
    margin-bottom: 5px;
    font-size: 1rem;
}

.detail-content p,
.detail-content address {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-style: normal;
}

.detail-content a {
    color: #fb8c00;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.detail-content a:hover {
    color: #e67e00;
    text-decoration: underline;
}

/* Otevírací doba */
.opening-hours {
    margin: 25px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
    color: #212121;
}

.hours-row .time {
    color: #fb8c00;
    font-weight: 600;
}

.hours-row.closed .time {
    color: #999;
}

/* Identifikační údaje */
.business-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.business-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-row .label {
    font-weight: 600;
    color: #555;
}

.info-row .value {
    color: #212121;
    font-weight: 500;
}

.business-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.business-note small {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Sekce týmu */
.team-section {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    padding: 80px 0;
}

.team-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(251, 140, 0, 0.15);
    border-color: #fb8c00;
}

.team-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 8px;
}

.team-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #fb8c00;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 140, 0, 0.3);
}

.team-phone:hover {
    background: #e67e00;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 140, 0, 0.4);
}

.phone-icon {
    font-size: 1.2rem;
}

/* CTA sekce */
.contact-cta-section {
    background: white;
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #fb8c00 0%, #f57c00 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(251, 140, 0, 0.3);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    color: #fb8c00;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    background: #212121;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-large .btn-icon {
    font-size: 1.5rem;
}

/* ===================================
   GALLERY PAGE - MODERNIZED STYLES
   =================================== */

/* Hero sekce galerie */
.gallery-page-hero {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    padding: 80px 0;
    margin-top: 20px;
}

.gallery-page-hero .text-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery sekce */
.gallery-section {
    background: white;
    padding: 80px 0;
}

/* Masonry grid layout */
.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #f5f6f7;
}

.gallery-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 140, 0, 0.25);
}

.gallery-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.1);
}

/* Overlay efekt */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 140, 0, 0.9) 0%, rgba(245, 124, 0, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-image-wrapper:hover .gallery-overlay-content {
    transform: translateY(0);
}

.zoom-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.gallery-overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Popis obrázku */
.gallery-item-caption {
    padding: 15px 5px 5px;
}

.gallery-item-caption p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: center;
}

/* Prázdný stav */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 1.1rem;
    color: #999;
}

/* CTA sekce galerie */
.gallery-cta-section {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Lightbox vylepšení (pokud používáte lightbox2) */
.lightbox {
    z-index: 10000 !important;
}

.lb-data .lb-caption {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.lb-data .lb-number {
    color: rgba(255, 255, 255, 0.8);
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

/* Responzivní styly pro Gallery */
@media (max-width: 1200px) {
    .gallery-grid-masonry {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .gallery-page-hero {
        padding: 60px 0;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .gallery-page-hero {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-grid-masonry {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 20px;
    }
    
    .gallery-item-caption p {
        font-size: 0.9rem;
    }
    
    .zoom-icon {
        font-size: 2.5rem;
    }
    
    .gallery-overlay-text {
        font-size: 1rem;
    }
    
    .no-results {
        padding: 40px 20px;
    }
    
    .no-results-icon {
        font-size: 3.5rem;
    }
    
    .no-results h3 {
        font-size: 1.4rem;
    }
    
    .gallery-cta-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .gallery-grid-masonry {
        gap: 15px;
    }
    
    .gallery-image-wrapper {
        border-radius: 12px;
    }
}

footer {
    padding: 20px 0;
}

footer a {
    color: #fb8c00;
}

footer a:hover {
    color: white;
}

.appointment-header {
    text-align: center;
    margin-bottom: 40px;
}

.appointment-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #212121;
}

.appointment-header .lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.appointment-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 1.3rem;
    color: #fb8c00;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fb8c00;
}

.appointment-form-container .form-group {
    margin-bottom: 20px;
}

.appointment-form-container label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.appointment-form-container .form-control {
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
    max-width: 100%;
}

.appointment-form-container .form-control:focus {
    border-color: #fb8c00;
    box-shadow: 0 0 0 0.2rem rgba(251, 140, 0, 0.15);
}

.appointment-form-container textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.help-text {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.help-text .glyphicon {
    color: #fb8c00;
    margin-right: 5px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.form-actions .btn {
    margin: 0 10px;
    min-width: 200px;
}

.btn-primary {
    background: #fb8c00;
    border-color: #fb8c00;
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e67e00;
    border-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 140, 0, 0.3);
}

.appointment-success {
    padding: 20px;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info-box {
    background: linear-gradient(135deg, #424242 0%, #616161 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 20px;
}

.contact-info-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fb8c00;
    text-decoration: none;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    font-size: 1rem;
}

.btn-appointment-small {
    display: inline-block;
    padding: 10px 20px;
    background: #fb8c00;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(251, 140, 0, 0.3);
}

.btn-appointment-small:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 140, 0, 0.4);
    color: white;
    text-decoration: none;
}

.about-section {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(251, 140, 0, 0.1);
    color: #fb8c00;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.section-text p {
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #fb8c00 0%, #f57c00 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(251, 140, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    font-size: 1.5rem;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #212121;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-learn-more:hover {
    background: #fb8c00;
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

.btn-learn-more .arrow {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover .arrow {
    transform: translateX(5px);
}

.about-content {
    padding-right: 40px;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 140, 0, 0.1) 0%, transparent 100%);
}

.map-section {
    background: #f5f6f7;
    padding: 80px 0;
}

.map-section .row {
    display: flex;
    align-items: stretch;
}

.map-container {
    display: flex;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-info {
    display: flex;
}

.contact-info-section {
    background: white;
    padding: 80px 0;
}

.contact-info-section .row {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-section .col-lg-6 {
    display: flex;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item-content strong {
    display: block;
    font-weight: 600;
    color: #212121;
    margin-bottom: 5px;
}

.contact-item-content p,
.contact-item-content address {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-style: normal;
}

.contact-item-content a {
    color: #fb8c00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: #e67e00;
}

.btn-contact-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 30px;
    background: #fb8c00;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-contact-full:hover {
    background: #e67e00;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 140, 0, 0.3);
}

.btn-contact-full .arrow {
    transition: transform 0.3s ease;
}

.btn-contact-full:hover .arrow {
    transform: translateX(5px);
}

.site-footer {
    background: linear-gradient(135deg, #212121 0%, #424242 100%);
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-content {
    padding-bottom: 30px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #fb8c00;
    display: inline-block;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(251, 140, 0, 0.1);
    border: 2px solid rgba(251, 140, 0, 0.3);
    border-radius: 50%;
    color: #fb8c00;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fb8c00;
    border-color: #fb8c00;
    color: white;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fb8c00;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-contact .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #fb8c00;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fb8c00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 20px;
    text-align: center;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.separator {
    margin: 0 10px;
    color: #555;
}

.admin-link {
    margin-top: 10px;
}

.admin-link a {
    color: #fb8c00;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.admin-link a:hover {
    color: #e67e00;
}

.navbar-modern .navbar-logo {
    height: 45px;
    width: auto;
    display: inline-block;
    transition: transform 0.3s ease;
    border-radius: 8px;
    background: transparent;
    padding: 5px;
}

/* ===================================
   RESPONSIVE STYLES FOR MAP SECTION
   =================================== */

@media (max-width: 991px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-wrapper iframe {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .map-section {
        padding: 40px 0;
    }
    
    .map-section .row {
        flex-direction: column-reverse;
    }
    
    .map-container {
        margin-top: 30px;
    }
    
    .map-wrapper iframe {
        min-height: 350px;
    }
    
    .contact-info {
        margin-bottom: 20px;
    }
    
    .contact-info-section .col-lg-6,
    .contact-info-section .col-12 {
        display: block;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
        width: 100%;
    }
    
    .contact-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .btn-contact-full {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .contact-card{
        width: 100%;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 0;
    }
    
    .map-wrapper iframe {
        min-height: 300px;
    }
    
    .contact-info-section .col-lg-6,
    .contact-info-section .col-12 {
        display: block;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .contact-info-card {
        padding: 20px 15px;
        width: 100%;
    }
    
    .contact-title {
        font-size: 1.2rem;
    }
    
    .contact-item-icon {
        font-size: 1.2rem;
    }
    
    .contact-item-content strong {
        font-size: 0.95rem;
    }
    
    .contact-item-content p,
    .contact-item-content address {
        font-size: 0.9rem;
    }
}

/* ===================================
   LOGIN PAGE - MODERNIZED STYLES
   =================================== */

.login-page-wrapper {
    background: linear-gradient(135deg, #f5f6f7 0%, #ffffff 100%);
    min-height: calc(100vh - 100px);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.login-header {
    text-align: center;
    margin-bottom: 50px;
}

.login-header .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(251, 140, 0, 0.1);
    color: #fb8c00;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 15px;
}

.login-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.login-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.login-card .form-label {
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-card .label-icon {
    font-size: 1.2rem;
}

.login-card .modern-input {
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.login-card .modern-input:focus {
    border-color: #fb8c00;
    box-shadow: 0 0 0 0.2rem rgba(251, 140, 0, 0.15);
    outline: none;
}

.login-card .form-check {
    padding-left: 0;
}

.login-card .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
}

.login-card .form-check-input:checked {
    background-color: #fb8c00;
    border-color: #fb8c00;
}

.login-card .form-check-label {
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.btn-login {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #fb8c00 0%, #f57c00 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 140, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-login:hover {
    background: linear-gradient(135deg, #e67e00 0%, #ef6c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 140, 0, 0.5);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(251, 140, 0, 0.3);
}

.btn-login .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-login:hover .arrow {
    transform: translateX(5px);
}

.login-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fb8c00;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: #e67e00;
    text-decoration: none;
    transform: translateX(3px);
}

.login-link span {
    font-size: 1.1rem;
}

.login-card .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    font-weight: 500;
}

.login-card .text-danger {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

/* Responzivní styly pro Login */
@media (max-width: 991px) {
    .login-page-wrapper {
        padding: 60px 0;
    }
    
    .login-header h1 {
        font-size: 2rem;
    }
    
    .login-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .login-page-wrapper {
        padding: 40px 0;
        min-height: calc(100vh - 80px);
    }
    
    .login-header {
        margin-bottom: 30px;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .login-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .btn-login {
        padding: 13px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-page-wrapper {
        padding: 30px 0;
    }
    
    .login-header .section-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-card {
        padding: 25px 15px;
    }
    
    .login-card .modern-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-login {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* ===================================
   LOGOUT BUTTON - FOOTER
   =================================== */

.logout-button {
    background: none;
    border: none;
    color: #fb8c00;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.logout-button:hover {
    color: #e67e00;
    text-decoration: none;
}

.logout-icon {
    font-size: 1rem;
}

.admin-link form {
    display: inline;
    margin: 0;
    padding: 0;
}

/* ===================================
   SOCIAL MEDIA SECTION - CONTACT PAGE
   =================================== */

.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.social-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.social-card.facebook {
    border-color: rgba(24, 119, 242, 0.2);
}

.social-card.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.2);
}

.social-card.instagram {
    border-color: rgba(225, 48, 108, 0.2);
}

.social-card.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.2);
}

.social-card.whatsapp {
    border-color: rgba(37, 211, 102, 0.2);
}

.social-card.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}

.social-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.social-card:hover .social-card-icon {
    animation: none;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.social-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 15px;
}

.social-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #fb8c00 0%, #f57c00 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 140, 0, 0.3);
}

.btn-social:hover {
    background: linear-gradient(135deg, #e67e00 0%, #ef6c00 100%);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(251, 140, 0, 0.4);
    color: white;
    text-decoration: none;
}

.btn-social-text {
    font-size: 1rem;
}

.btn-social-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-social:hover .btn-social-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .social-media-section {
        padding: 60px 0;
    }
    
    .social-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .social-media-section {
        padding: 40px 0;
    }
    
    .social-card {
        padding: 30px 20px;
    }
    
    .social-card-icon {
        font-size: 3rem;
    }
    
    .social-card-title {
        font-size: 1.5rem;
    }
    
    .social-card-description {
        font-size: 0.95rem;
        min-height: auto;
    }
}

