﻿:root {
    /* Vsevedi color scheme - removing blue, using footer dark color as primary */
    --vsevedi-primary: #333333; /* Dark color for header/footer */
    --vsevedi-secondary: #ffeb3b; /* Yellow accent color */
    --vsevedi-background: #f5f5f5; /* Background color */
    --vsevedi-text: #333333; /* Text color */
    --vsevedi-accent: #e53935; /* Accent color */
    --vsevedi-footer: #333333; /* Footer color */
    /* Adding glow variables for consistency */
    --vsevedi-glow: rgba(255, 235, 59, 0.6); /* Yellow glow with transparency */
}

/* General styles */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--vsevedi-text);
    background-color: var(--vsevedi-background);
}

.vsevedi-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #eaeaea;
}

/* Header & Navbar */
.vsevedi-header {
    background-color: var(--vsevedi-primary);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vsevedi-navbar {
    padding: 0.5rem 1rem;
}

/* Ensure all header text is white */
.vsevedi-header a,
.vsevedi-header .navbar-brand,
.vsevedi-header .nav-link {
    color: white !important;
    text-decoration: none;
}

/* Update the icon size in the navigation */
.nav-icon {
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1.75rem; /* Increased from 1.25rem */
    display: inline-block;
    vertical-align: middle;
    position: relative; /* Required for glow effect positioning */
}

/* Add more space between nav items for the larger icons */
.nav-link, .hx-nav-link {
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
}

/* Style for enhanced icon appearance */
.hx-icon.nav-icon {
    font-size: 1.75rem; /* Matching size for HxIcon components */
}

/* Adjust mobile responsiveness for larger icons */
@media (max-width: 767.98px) {
    .nav-icon {
        font-size: 1.5rem; /* Slightly smaller on mobile but still larger than before */
    }

    .nav-link, .hx-nav-link {
        padding: 0.5rem;
    }
}

/* Target both Havit components and standard Bootstrap classes */
.nav-link:hover,
.hx-nav-link:hover,
a.nav-item.nav-link:hover {
    color: var(--vsevedi-secondary) !important;
}

    /* Target the SVG icons that Havit components render */
    .nav-link:hover .nav-icon,
    .nav-link:hover i,
    .nav-link:hover svg,
    .hx-nav-link:hover .nav-icon,
    .hx-nav-link:hover i,
    .hx-nav-link:hover svg {
        transform: scale(1.2);
        color: var(--vsevedi-secondary) !important;
        /* Adding glow effect */
        text-shadow: 0 0 10px var(--vsevedi-glow), 0 0 20px var(--vsevedi-glow), 0 0 30px var(--vsevedi-glow);
        filter: drop-shadow(0 0 5px var(--vsevedi-secondary));
    }

/* Active nav link styling - target multiple possible classes */
.nav-link.active,
.hx-nav-link.active,
a.nav-item.nav-link.active {
    color: var(--vsevedi-secondary) !important;
}

    .nav-link.active .nav-icon,
    .nav-link.active i,
    .nav-link.active svg,
    .hx-nav-link.active .nav-icon,
    .hx-nav-link.active i,
    .hx-nav-link.active svg {
        color: var(--vsevedi-secondary) !important;
        /* Subtle glow for active state */
        text-shadow: 0 0 8px var(--vsevedi-glow);
    }

/* Add direct styles to the HxIcon component output */
.hx-icon {
    transition: all 0.3s ease;
}

.nav-link:hover .hx-icon {
    transform: scale(1.2);
    color: var(--vsevedi-secondary) !important;
    filter: drop-shadow(0 0 5px var(--vsevedi-secondary)) drop-shadow(0 0 10px var(--vsevedi-glow));
}

/* Brand logo styling */
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.4rem;
}

    .navbar-brand img {
        margin-right: 0.5rem;
        transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 0 5px var(--vsevedi-glow));
    }

/* Content area */
.vsevedi-content {
    padding-top: 2.5rem; /* Add padding above the content board */
    background-color: #eaeaea; /* Match the wrapper background */
}

/* Footer */
.vsevedi-footer {
    background-color: var(--vsevedi-primary); /* Using same variable as header */
    color: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

    .vsevedi-footer h5 {
        color: var(--vsevedi-secondary);
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .vsevedi-footer a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .vsevedi-footer a:hover {
            color: var(--vsevedi-secondary);
            text-shadow: 0 0 10px var(--vsevedi-glow);
        }

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .vsevedi-footer h5 {
        margin-top: 1.5rem;
    }

    .vsevedi-footer .col-12:first-child h5 {
        margin-top: 0;
    }

    /* Adjust icon size on mobile */
    .nav-icon {
        font-size: 1.1rem;
    }
}

/* Add to app.css */
.category-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
    }

.category-icon {
    font-size: 3rem;
    color: var(--vsevedi-primary); /* Changed from blue to dark color */
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: var(--vsevedi-secondary);
    transform: scale(1.1);
    /* Adding glow to category icons as well */
    filter: drop-shadow(0 0 8px var(--vsevedi-glow));
}

.category-icon-svg {
    width: 48px;
    height: 48px;
}

/* Adding button styles to match the dark/yellow theme */
.btn-vsevedi-primary {
    background-color: var(--vsevedi-primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

    .btn-vsevedi-primary:hover {
        background-color: #404040; /* Slightly lighter dark for hover */
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.btn-vsevedi-secondary {
    background-color: var(--vsevedi-secondary);
    color: #333;
    border: none;
    transition: all 0.3s ease;
}

    .btn-vsevedi-secondary:hover {
        background-color: #fdd835; /* Slightly darker yellow for hover */
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 15px var(--vsevedi-glow);
    }


/* Hamburger menu (navbar toggler) styling */
.navbar-toggler {
    border-color: var(--vsevedi-secondary) !important;
    background-color: transparent !important;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

/* Style the hamburger icon bars */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 235, 59, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Add hover effect for the toggler */
.navbar-toggler:hover {
    transform: scale(1.05);
}

/* Add hover glow effect */
.navbar-toggler:hover, .navbar-toggler:focus {
    box-shadow: 0 0 8px var(--vsevedi-glow), 0 0 15px var(--vsevedi-glow) !important;
    outline: none !important;
}

/* Style for the expanded menu background in mobile view */
.navbar-collapse {
    background-color: var(--vsevedi-primary);
}

/* Add animation to the navbar toggler */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 235, 59, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(255, 235, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 235, 59, 0);
    }
}

/* Add animation to the toggler when menu is expanded */
.navbar-toggler[aria-expanded="true"] {
    border-color: var(--vsevedi-secondary) !important;
    box-shadow: 0 0 8px var(--vsevedi-glow) !important;
    animation: pulse 1.5s infinite;
}

/* Enhanced brand/logo styling for "Vsevedi.cz" text */
.navbar-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 5px;
}

    /* Yellow highlight effect for the first part of the name */
    .navbar-brand span::before {
        content: "Vševědi";
        position: absolute;
        left: 5px;
        top: 0;
        width: 67%; /* Approximate width of "Vševědi" */
        color: var(--vsevedi-secondary);
        opacity: 0;
        transition: opacity 0.3s ease;
        font-weight: 700;
        z-index: 1;
    }

/* Hover effect for the brand text */
.navbar-brand:hover span {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

    /* Show the yellow highlight on hover */
    .navbar-brand:hover span::before {
        opacity: 1;
        text-shadow: 0 0 8px var(--vsevedi-glow);
        animation: pulseBrand 2s infinite;
    }

/* Subtle pulse animation for the brand */
@keyframes pulseBrand {
    0% {
        text-shadow: 0 0 8px var(--vsevedi-glow);
    }

    50% {
        text-shadow: 0 0 15px var(--vsevedi-glow), 0 0 20px var(--vsevedi-glow);
    }

    100% {
        text-shadow: 0 0 8px var(--vsevedi-glow);
    }
}

/* Card styling - Dark theme */
.vsevedi-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--vsevedi-primary); /* Dark background like header */
    color: white; /* White text for contrast */
}

    .vsevedi-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
        border: 1px solid var(--vsevedi-secondary);
        background-color: #404040; /* Slightly lighter dark on hover */
    }

    /* Card body styling */
    .vsevedi-card .card-body {
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

/* Card icon styling */
.card-icon-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--vsevedi-secondary); /* Yellow icon color */
    background-color: rgba(255, 255, 255, 0.1); /* Slightly light background */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--vsevedi-secondary);
}

.vsevedi-card:hover .card-icon {
    color: var(--vsevedi-secondary);
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 20px var(--vsevedi-glow);
}

/* Card title styling */
.vsevedi-card .card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white; /* White text for dark background */
    font-size: 1.4rem;
    text-align: center;
}

/* Card subtitle styling */
.vsevedi-card .card-subtitle {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--vsevedi-secondary); /* Yellow subtitle */
    text-align: center;
}

/* Card text styling */
.vsevedi-card .card-text {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.85); /* Slightly muted white text */
}

/* Button positioning in card */
.vsevedi-card .mt-auto {
    text-align: center;
}

/* Button styling within cards */
.vsevedi-card .btn-vsevedi-secondary {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.vsevedi-card:hover .btn-vsevedi-secondary {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 0 0 20px var(--vsevedi-glow);
}

/* Card hover animation */
@keyframes cardGlow {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 0 rgba(255, 235, 59, 0.1);
    }

    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 235, 59, 0.3);
    }

    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 0 rgba(255, 235, 59, 0.1);
    }
}

.vsevedi-card:hover {
    animation: cardGlow 2s infinite;
}




/* Logo banner styling */
.logo-banner {
    background-color: var(--vsevedi-background);
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vsevedi-logo-large {
    max-height: 100px;
    transition: all 0.4s ease;
}

.logo-container:hover .vsevedi-logo-large {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--vsevedi-glow));
}

/* Make the logo responsive */
@media (max-width: 767.98px) {
    .logo-banner {
        padding: 1rem 0;
    }

    .vsevedi-logo-large {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .vsevedi-logo-large {
        max-height: 60px;
    }
}

/* Enhanced content board styling with better spacing */
.content-board-wrapper {
    padding: 20px;
    background-color: #eaeaea;
    min-height: 100%;
    margin-top: 20px;
}

.content-board {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 10px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
}

    .content-board::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 12px;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
        pointer-events: none;
        z-index: 1;
    }

/* True sidebar styling - integrated into content board */
.sidebar-container {
    padding: 0;
    flex: 0 0 300px; /* Fixed width sidebar */
    max-width: 300px;
    position: relative;
}

.true-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background-color: transparent; /* Transparent background to match content board */
    padding: 2.5rem 2rem;
    position: relative; /* Changed from sticky for integration with board */
    text-align: center;
    border-right: 1px solid #e0e0e0; /* Subtle divider */
}

.sidebar-logo {
    max-width: 90%;
    min-width: 210px;
    height: auto;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
}

.true-sidebar:hover .sidebar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--vsevedi-glow));
}

/* Content area within the board */
.content-area {
    flex: 1;
    padding: 2rem;
    min-height: 100%;
}

/* Card container adjustments */
.cards-container {
    padding-left: 1rem;
}
/* Responsive adjustments */
@media (max-width: 991.98px) {
    /* Zde zkombinujte všechny styly pro tento breakpoint */
    .vsevedi-card {
        margin-bottom: 1.5rem;
    }

    .vsevedi-content {
        padding-top: 2rem;
    }

    .content-board-wrapper {
        margin-top: 15px;
    }

    /* Přidejte také mobile stackování pro content-board */
    .content-board {
        flex-direction: column;
    }

    .sidebar-container {
        flex: 0 0 auto;
        max-width: 100%;
        border-bottom: 1px solid #e0e0e0;
        border-right: none;
    }

    .true-sidebar {
        border-right: none;
        padding: 2rem 1rem;
    }
}

/* Větší mezera mezi kartami */
.content-area .row {
    margin-left: -1rem;
    margin-right: -1rem;
}

    .content-area .row > [class*="col-"] {
        padding-right: 1rem;
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }


/* About page styling */
.about-board {
    padding: 2rem;
    flex-direction: column;
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .about-header h3 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--vsevedi-primary);
        margin: 1rem 0;
        position: relative;
        padding-bottom: 1rem;
    }

        .about-header h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--vsevedi-secondary);
        }

.about-icon {
    font-size: 3.5rem;
    color: var(--vsevedi-secondary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--vsevedi-glow));
}

.about-content {
    padding: 1rem 0;
}

.about-card {
    background-color: var(--vsevedi-primary);
    border-radius: 8px;
    padding: 0;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: white;
    overflow: hidden;
}

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--vsevedi-secondary);
    }

.about-card-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card-icon {
    font-size: 1.8rem;
    color: var(--vsevedi-secondary);
    margin-right: 0.8rem;
}

.about-card-header h4 {
    font-size: 1.4rem;
    margin: 0;
    color: white;
    font-weight: 500;
}

.about-card-body {
    padding: 1.5rem;
}

    .about-card-body h5 {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 1.25rem;
        color: var(--vsevedi-secondary);
    }

.service-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .service-list li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
    }

.list-icon {
    color: var(--vsevedi-secondary);
    margin-right: 0.5rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.certification {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .certification h5 {
        display: inline-block;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }

.certification-code {
    display: inline-block;
    background-color: rgba(255, 235, 59, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    color: var(--vsevedi-secondary);
    border: 1px solid rgba(255, 235, 59, 0.3);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .about-board {
        padding: 1.5rem;
    }

    .about-card {
        margin-bottom: 1.5rem;
    }

    .about-header h3 {
        font-size: 1.75rem;
    }

    .about-icon {
        font-size: 3rem;
    }

    .about-card-header {
        padding: 1rem 1.25rem;
    }

        .about-card-header h4 {
            font-size: 1.25rem;
        }

    .about-card-body {
        padding: 1.25rem;
    }
}

/* Vizitka styling */
.business-card-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    perspective: 1000px; /* Pro 3D efekt */
}

.business-card {
    max-width: 550px;
    width: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

    .business-card:hover {
        transform: rotateY(5deg) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 0 15px var(--vsevedi-glow);
    }

.business-card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Responsive adjustments for the business card */
@media (max-width: 767.98px) {
    .business-card {
        max-width: 100%;
    }

    .business-card-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .business-card:hover {
        transform: none; /* Disable hover effect on very small screens */
    }
}


/* Interaktivní vizitka s e-mailovým odkazem */
.business-card {
    max-width: 550px;
    width: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.business-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.85);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-card:hover .business-card-overlay {
    height: 60px;
}

.email-link {
    color: var(--vsevedi-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 235, 59, 0.3);
}

    .email-link:hover {
        background-color: rgba(255, 235, 59, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px var(--vsevedi-glow);
        color: white;
    }

.email-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Pro mobilní zařízení ukazujeme overlay stále */
@media (max-width: 767.98px) {
    .business-card-overlay {
        height: 50px;
    }

    .email-link {
        font-size: 1rem;
    }
}

* Vylepšení interaktivní vizitky s kontaktními údaji */
.business-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.85);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.business-card:hover .business-card-overlay {
    height: auto;
    padding: 1rem 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
}

.contact-link {
    color: var(--vsevedi-secondary);
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 235, 59, 0.3);
    width: 100%;
    position: relative;
}

    .contact-link:hover {
        background-color: rgba(255, 235, 59, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px var(--vsevedi-glow);
        color: white;
    }

.contact-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.copy-icon {
    position: absolute;
    right: 1rem;
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.phone-link:hover .copy-icon {
    opacity: 1;
    transform: scale(1.2);
    color: var(--vsevedi-secondary);
}

/* Mobilní kontaktní informace */
.mobile-contact-info {
    display: none;
    margin: 1.5rem 0;
}

.contact-card {
    background-color: var(--vsevedi-primary);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 2.5rem;
}

    .contact-item:last-child {
        margin-bottom: 0;
    }

.contact-label {
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--vsevedi-secondary);
}

.contact-value {
    color: white;
}

a.contact-value {
    color: var(--vsevedi-secondary);
    text-decoration: none;
}

    a.contact-value:hover {
        text-decoration: underline;
    }

.copy-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--vsevedi-secondary);
    cursor: pointer;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .copy-button:hover {
        background-color: rgba(255, 235, 59, 0.2);
        transform: translateY(-50%) scale(1.1);
    }

.copy-button-icon {
    font-size: 1rem;
}

/* Toast pro notifikaci o zkopírování */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--vsevedi-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--vsevedi-secondary);
}

.show-toast {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responzivní úpravy */
@media (max-width: 767.98px) {
    .business-card-overlay {
        display: none;
    }

    .mobile-contact-info {
        display: block;
    }
}