/* ===== ZÁKLADNÍ STYLY ===== */
:root {
    --gold: #e3a21a;
    --turquoise: #146e82;
    --turquoise-rgb: 20, 110, 130;
    --red: #b43c3c;
    --text: #020202;
    --text-light: #666;
    --bg: #f8f6f2;
    --muted: #f3f1ec;
    --border: #0e0e0e;
    --shadow: 0 10px 25px rgba(0,0,0,.06);
    --radius: 12px;
    --container: 1180px;
}

html, body{margin:0; padding:0; background:var(--bg); color:var(--text); font-family: Cambria, "Times New Roman", serif;}
* { box-sizing: border-box; }

.container{max-width:var(--container); margin:0 auto; padding:0 20px;}

/* Horní navigace */
.topbar{position:sticky; top:0; z-index:50; backdrop-filter:saturate(140%) blur(6px); background: linear-gradient(to bottom, rgba(230,235,236,.9), rgba(230,235,236,.8)); border-bottom:1px solid rgba(20,110,130,.25);}
.nav{display:flex; align-items:center; justify-content:space-between; gap:24px; padding:12px 0;}
.brand{font-size:20px; font-weight:700; color:var(--turquoise); text-transform:uppercase; letter-spacing:.04em; padding-left:20px;}
.brand-subtitle{font-size:12px; font-weight:400; color:var(--turquoise); text-transform:uppercase; letter-spacing:.02em; margin-top:2px; opacity:0.8;}
.menu{display:flex; gap:20px; align-items:center; flex-wrap:wrap;}
.menu a{color:var(--turquoise); text-decoration:none; padding:8px 10px; border-radius:8px;}
.menu a:hover{background:rgba(20,110,130,.08);}
.menu a.active{color:var(--gold); font-weight:700;}

/* ===== TYPOGRAFIE ===== */
h1, .h1{font-size:26pt; font-weight:700; text-transform:uppercase; color:var(--gold); letter-spacing:.02em; margin:0 0 10px;}
h2, .h2{font-size:22pt; font-weight:700; text-transform:uppercase; color:var(--turquoise); letter-spacing:.03em; margin:24px 0 0 24px;}
h3, .h3{font-size:20pt; font-weight:700; text-transform:uppercase; color:var(--gold); margin:0 0 16px;}
h4, .h4{font-size:18pt; font-weight:700; text-transform:uppercase; color:var(--turquoise); margin:0 0 12px;}
.lead{font-size:14pt; line-height:1.55; max-width:820px; margin:0 auto; text-align:center;}
.bigger-text{font-size:14pt; color: var(--turquoise);}
.center{text-align:center;}
/*.text{font-size:14pt; line-height:1.6;}*/

p { margin: 1em 0; }
a { color: var(--turquoise); text-decoration: none; }

/* Hero */
.hero{padding:84px 0 48px; background:linear-gradient(180deg, #fff, var(--bg));}
.hero .cta{margin-top:24px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* ===== TLAČÍTKA ===== */
button, .btn{display:inline-block; text-decoration:none; padding:12px 22px; border-radius:10px; font-weight:700; box-shadow:var(--shadow);}
.btn-primary{background: var(--gold);color: white !important;text-transform:uppercase;}
.btn-primary:hover{background: #c8921a;}
.btn-outline{border: 2px solid var(--turquoise);color: var(--turquoise);background: transparent;text-transform:uppercase;}
.btn-outline:hover{background: rgba(20,110,130,.08);}
.btn-yellow-border{border: 2px solid var(--gold);background: transparent;}

.benefits{padding:20px 0;}
.benefit-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.benefit{background:#fff; border:1px solid rgba(20,110,130,.15); border-radius:var(--radius); padding:18px; text-align:center; box-shadow:var(--shadow);}
.benefit .title{font-weight:700; color:var(--turquoise); margin-bottom:6px;}
.benefit p{margin:0; /*font-size:14pt;*/}

.process{padding:48px 0 8px;}
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:10px;}
.step{background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:var(--radius); padding:20px; box-shadow:var(--shadow);}
.step .num{font-weight:700; color:var(--gold); font-size:14pt; margin-bottom:6px;}
.step .name{font-weight:700; color:var(--turquoise); margin-bottom:8px;}
.step p{margin:0; /*font-size:14pt;*/}

.offers{padding:11px 0;}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.card{background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:var(--radius); padding:20px; box-shadow:var(--shadow); display:flex; flex-direction:column; gap:12px;}
.price{font-weight:700; color:var(--red); font-size:14pt;}
.card .actions{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap;}
.card h3{margin:0; text-align:left; font-size:18pt; color:var(--turquoise); text-transform:uppercase;}
.card p{margin:0; /*font-size:14pt;*/}

.footer{padding:28px 0 40px; border-top:1px; margin-top:40px; backdrop-filter:saturate(140%) blur(6px); background: linear-gradient(to bottom, rgba(230,235,236,.9), rgba(230,235,236,.8)); border-bottom:1px solid rgba(20,110,130,.25);}
.footgrid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:18px;}
.footgrid a{color:#333; font-weight: bold;}
.footgrid a:hover{color:var(--turquoise);}
.legal{margin-top:24px; font-size:12pt; color:#8e8e8e;}

/* Horizontal rule - separator */
hr {
    border: none;
    height: 1px;
    background-color: var(--gold);
    margin: 30px 0;
    width: 100%;
}



.service-card.selected .select-service-btn,
.service-card.selected .select-service-btn span {
    color: white;
}


/* ===== LAYOUT ===== */
.content { 
    max-width: var(--container); 
    margin: 0 auto; 
    padding: 2rem 1rem; 
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

/* ===== HEADER ===== */
.header {
    background: var(--bg);
    padding: 1rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.header h1 { margin: 0; font-size: 2.5em; }

/* ===== FORMULÁŘE ===== */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--turquoise);
}

/* Zaškrtávací políčka - jednotný styl */
.checkbox-container {
    display: flex !important;
    align-items: center !important;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    gap: 0.8rem !important;
}

.checkbox-container input[type="checkbox"] {
    width: auto !important;
    margin: 0 !important;
    cursor: pointer;
    flex-shrink: 0;
    align-self: center;
}

.checkbox-container label {
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.checkmark {
    display: none; /* Skryjeme custom checkmark, použijeme nativní */
}

/* Styling pro dynamické zájmy */
.interest-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.interest-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.interest-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: normal;
}





/* ===== OBRÁZKY ===== */
img {
    max-width: 100%;
    height: auto;
}

.intro-image, .service-image {
    max-width: 300px;
    border-radius: 5px;
}

.intro-with-portrait {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.portrait-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.intro-with-portrait p {
    flex: 1;
    margin: 0;
}

/* ===== UTILITY TŘÍDY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }

/* ===== ALERT ZPRÁVY ===== */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== BLOG STYLY ===== */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1rem 1.2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    color: var(--turquoise);
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Blog post detail overlay */
.full-post-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.full-post {
    background: var(--bg);
    border-radius: 8px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--turquoise);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-post-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.full-post-content {
    padding: 2rem;
}

.full-post-excerpt {
    margin: 1.5rem 0 2rem 0;
}

.full-post-excerpt p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--turquoise, #4ecdc4);
    font-weight: bold;
}

/* Blog content formatting */
.full-post-text h1 {
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.full-post-text h2, .full-post-text h3, 
.full-post-text h4, .full-post-text h5, .full-post-text h6 {
    color: var(--turquoise, #4ecdc4);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.full-post-text h1 { font-size: 2rem; }
.full-post-text h2 { font-size: 1.6rem; }
.full-post-text h3 { font-size: 1.3rem; }



.full-post-text blockquote {
    border-left: 3px solid var(--turquoise, #4ecdc4);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    background: var(--bg-light, #f8f9fa);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.full-post-text a {
    color: var(--turquoise, #4ecdc4);
    text-decoration: underline;
}

.full-post-text a:hover {
    text-decoration: none;
}

.full-post-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.full-post-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.full-post-text th, .full-post-text td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    text-align: left;
}

.full-post-text th {
    background: var(--turquoise, #4ecdc4);
    color: white;
    font-weight: bold;
}

/* ===== COOKIES NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.cookie-text {
    flex: 1;
    color: var(--text);
}

.cookie-text a {
    color: var(--turquoise);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--turquoise);
    color: white;
}

.cookie-decline {
    background: var(--gold);
    color: white;
}

/* ===== OCHRANA ÚDAJŮ STYLY ===== */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.privacy-table th,
.privacy-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border);
}

.privacy-table thead tr {
    background: var(--bg);
    border-bottom: 2px solid var(--border);
}

.privacy-table tbody tr:nth-child(even) {
    background: var(--bg);
}

.contact-box {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* ===== NABÍDKA STYLY ===== */
.payment-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.category-section {
    margin-bottom: 2rem;
}

.category-title {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.service-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--turquoise);
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: var(--turquoise);
    background: rgba(46, 125, 50, 0.1);
}

.service-card .bundle-contents {
    background: rgba(46, 125, 50, 0.05);
    border-radius: 4px;
    padding: 0.5rem;
    margin: 0.5rem 0 0 0;
    border-left: 3px solid var(--turquoise);
}

.service-card .bundle-contents small {
    margin: 0;
    display: block;
    line-height: 1;
}

.bundle-list {
    margin: 0.1rem 0 0 0;
    padding-left: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.2;
}

.bundle-list li {
    margin: 0;
    padding: 0;
}

.btn-added {
    color: var(--turquoise);
    font-weight: bold;
}

.cart-summary {
    background: var(--bg);
    border: 2px solid var(--turquoise);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: sticky;
    top: 2rem;
}

.cart-summary h4 {
    margin: 0 0 1rem 0;
    color: var(--turquoise);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    flex: 1;
}

.cart-item-price {
    font-weight: bold;
    color: var(--turquoise);
}

.cart-item-remove {
    background: var(--red);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    margin-left: 1rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.cart-total {
    text-align: right;
    font-size: 1.2rem;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 2px solid var(--turquoise);
}

.checkout-btn {
    background: var(--turquoise);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
}

.service-card h4 {
    margin: 0;
    color: var(--turquoise);
    flex: 1;
    font-size: 1.2rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--turquoise);
    margin: 0 1.5rem;
    min-width: 100px;
    text-align: right;
}

.service-card p {
    margin: 0.2rem 0 0 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.service-card-content {
    flex: 1;
    margin-right: 1rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.service-card-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-card-content p {
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.4;
    flex-grow: 1;
}

.service-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 140px;
    flex-shrink: 0;
}

.custom-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: bold;
    color: var(--turquoise);
    margin-right: 1rem;
}

.custom-price input {
    width: 120px;
    border: 2px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem;
    text-align: center;
    font-size: 1rem;
}

.custom-price input::placeholder {
    font-size: 0.8rem;
}

.select-service-btn {
    background: var(--turquoise);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
}

.select-service-btn:disabled {
    background: var(--border);
    cursor: not-allowed;
}

.service-card.selected .select-service-btn {
    background: var(--gold);
    color: white;
}

/* Free produkty styly */
.free-price {
    color: var(--turquoise);
    font-weight: bold;
}

.free-btn {
    background: var(--gold);
    color: white;
}

.payment-summary {
    background: var(--bg);
    border: 2px solid var(--turquoise);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.payment-methods {
    margin: 2rem 0;
}

.payment-method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.payment-method {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.payment-method h5 {
    margin: 0 0 0.5rem 0;
    color: var(--turquoise);
}

.payment-btn {
    background: var(--turquoise);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
    width: 100%;
}

.security-info {
    background: var(--bg);
    border-left: 4px solid var(--turquoise);
    padding: 1.5rem;
    margin: 2rem 0;
}

.security-info h5 {
    margin: 0 0 1rem 0;
    color: var(--turquoise);
}

.security-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* ===== RESPONSIVNÍ DESIGN ===== */
@media (max-width:1024px){
    .benefit-grid, .steps, .cards, .ref-grid, .posts{grid-template-columns:1fr 1fr;}
}

@media (max-width: 680px) {
    .header { padding: 1rem; }
    .header h1 { font-size: 2em; }
    .content { padding: 1rem; }
    .menu { flex-direction: column; align-items: center; }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    
    .intro-with-portrait {
        flex-direction: column;
        text-align: center;
    }
    
    .portrait-image {
        width: 150px;
        height: 190px;
        margin: 0 auto;
    }

    .menu{display:none;} /* jednoduché: lze později nahradit hamburgerem */
    .benefit-grid, .steps, .cards, .ref-grid, .posts{grid-template-columns:1fr;}
    .footgrid{grid-template-columns:1fr; text-align:center;}
    .h1{font-size:24pt;}
    .h2{font-size:20pt;}
    .lead, .text{font-size:13.5pt;}
    .card h3, .post h4{font-size:16pt;}

    .payment-page {
        padding: 1rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .payment-method-cards {
        grid-template-columns: 1fr;
    }

    .full-post-overlay {
        padding: 1rem;
    }
    
    .full-post-content {
        padding: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }

    .contact-header {
        text-align: center;
    }

    .contact-title {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* ===== CHECKOUT STRÁNKA ===== */
.delivery-options, .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.delivery-option, .payment-method {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.delivery-option.disabled {
    opacity: 0.4;
    background: var(--muted);
    cursor: not-allowed;
    border-color: #dee2e6;
}

.delivery-option.disabled input {
    pointer-events: none;
}

.delivery-option:not(.disabled):hover, 
.payment-method:hover {
    border-color: var(--turquoise);
    transform: translateY(-2px);
}

.delivery-option.selected, 
.payment-method.selected {
    border-color: var(--turquoise);
    background: rgba(20, 110, 130, 0.05);
}

.delivery-title, .payment-title {
    font-weight: bold;
    color: var(--turquoise);
    margin-bottom: 0.25rem;
}

.delivery-description, .payment-description {
    color: var(--text-light);
    font-size: 0.9em;
    margin: 0;
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 680px) {
    .checkout-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checkout-actions .btn {
        width: 100%;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
}

.hamburger-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #eee;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.mobile-nav a:hover {
    background-color: #f8f9fa;
}

/* Mobile Navigation Visible State */
.mobile-nav.show {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .menu {
        display: none;
    }
    
    .nav {
        position: relative;
    }
}

/* ===== SOCIÁLNÍ IKONY ===== */
.contact-header {
    margin-bottom: 1rem;
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-title .h4 {
    margin: 0;
}

.contact-info {
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-links a:hover img {
    opacity: 1;
}

