@font-face {
    font-family: 'RoyalWedding';
    src: url('../assets/font/RoyalWedding-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chocolate';
    src: url('../assets/font/Chocolate.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html {
    scroll-behavior: smooth;
}

/* Kompenzace sticky navbaru při skoku na sekce */
[id^="section-"] {
    scroll-margin-top: 80px;
}

/* Na mobilu má navbar 2 řádky - potřebuje víc prostoru */
@media (max-width: 768px) {
    [id^="section-"] {
        scroll-margin-top: 130px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

p {
    margin-top: 20px;
}

.alert {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);          /* rozmazané pozadí pod navbarem */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* jemný stín pod navbarem */
    position: sticky;                      /* navbar zůstane nahoře při scrollu */
    top: 0;
    z-index: 1000;                         /* navbar nad ostatním obsahem */
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3e2723;
    letter-spacing: 1px;                   /* trochu rozestupů mezi písmeny */
    font-family: 'Georgia', serif;         /* elegantnější font pro logo */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #3e2723;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;             /* VELKÁ PÍSMENA */
    letter-spacing: 1px;
    position: relative;                    /* potřeba pro podtržení níže */
    padding: 5px 0;
    transition: color 0.3s;
}

/* Animované podtržení při najetí myší */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d7a86e;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #d7a86e;
}

.nav-links a:hover::after {
    width: 100%;                           /* podtržení se "vyjede" zleva doprava */
}

.section-1 {    
    background-color: #d7a86e;
    padding: 60px 40px;
}

.section-content {
    display: flex;
    align-items: center;        /* svisle vycentruje text vůči obrázku */
    justify-content: space-between;
    gap: 40px;                  /* mezera mezi textem a obrázkem */
    max-width: 1200px;
    margin: 0 auto;             /* vycentruje celou sekci na stránce */
}

.section-text {
    flex: 1;                    /* zabere polovinu prostoru */
}

.section-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #3e2723;
    text-align: center;
}

.section-text .top-text {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color:  #3e2723;    
    font-family: 'chocolate', serif;
    
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.p-top {
    padding-top: 40px;
}

.section-image {
    flex: 1;                    /* zabere druhou polovinu */
}

.section-image img {
    width: 100%;                /* obrázek se přizpůsobí kontejneru */
    height: auto;
    border-radius: 10px;        /* zaoblené rohy, vypadá pěkněji */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section-2{
    padding: 40px 40px;
    position: relative;              /* důležité pro pozicování ::before */
    padding: 80px 40px;
    overflow: hidden;                /* aby obrázek nepřetekl */
    
}

.section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/house/roubenka02.jpg');
    background-size: cover;          /* obrázek vyplní celou sekci */
    background-position: center;     /* vycentrovaný */
    background-repeat: no-repeat;
    opacity: 0.1;                    /* zde řídíš zesvětlení (0.1 - 0.3) */
    z-index: -1;                     /* obrázek pod text */
}

.section-2 > * {
    position: relative;              /* obsah nad obrázkem */
    z-index: 1;
}

.section-2-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-2 p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3e2723;
}

.section-3 {
    padding: 0px 0;
    background-color: #f5f0e8;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3e2723;
}

.section-5 {
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.section-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/house/roubenka03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.section-5 > * {
    position: relative;
    z-index: 1;
}

.section-5-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s;
    z-index: 1;
}

.grid-item:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.grid-item:hover::after {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 2001;
}

.lightbox-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-5px);     /* posune se vlevo */
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(5px);      /* posune se vpravo */
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Responzivní - menší šipky na mobilu */
@media (max-width: 600px) {
    .lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}
.gallery-slider {
    width: 100%;
    overflow: hidden;            /* schová obrázky, které jsou mimo */
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;          /* track bude široký jako součet všech obrázků */
    animation: scroll 60s linear infinite;
}

.gallery-item {
    flex-shrink: 0;              /* obrázky se nezmenší */
    width: 400px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* obrázek vyplní rámeček bez deformace */
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);      /* jemné zvětšení při najetí myší */
}

/* Animace posunu zprava doleva */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);  /* posune o polovinu (= jednu sadu) */
    }
}

/* Pauznutí při najetí myší */
.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

.section-4{
    padding: 40px 40px;
    position: relative;              /* důležité pro pozicování ::before */
    padding: 80px 40px;
    overflow: hidden;
    text-align: center;                /* aby obrázek nepřetekl */
    
}

.section-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/house/roubenka06.jpg');
    background-size: cover;          /* obrázek vyplní celou sekci */
    background-position: center;     /* vycentrovaný */
    background-repeat: no-repeat;
    opacity: 0.1;                    /* zde řídíš zesvětlení (0.1 - 0.3) */
    z-index: -1;                     /* obrázek pod text */
}

.section-4 > * {
    position: relative;              /* obsah nad obrázkem */
    z-index: 1;
}

.section-4-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-4 p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3e2723;
}

.section-6{
    padding: 40px 40px;
    position: relative;              /* důležité pro pozicování ::before */
    padding: 80px 40px;
    overflow: hidden;
    text-align: left;                /* aby obrázek nepřetekl */
    
}

.section-6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/house/roubenka06.jpg');
    background-size: cover;          /* obrázek vyplní celou sekci */
    background-position: center;     /* vycentrovaný */
    background-repeat: no-repeat;
    opacity: 0.1;                    /* zde řídíš zesvětlení (0.1 - 0.3) */
    z-index: -1;                     /* obrázek pod text */
}

.section-6 > * {
    position: relative;              /* obsah nad obrázkem */
    z-index: 1;
}

.section-6-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-6 p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3e2723;
}

.section-7{
    padding: 40px 40px;
    position: relative;              /* důležité pro pozicování ::before */
    padding: 80px 40px;
    overflow: hidden;
    text-align: left;                /* aby obrázek nepřetekl */
    
}

.section-7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/house/roubenka06.jpg');
    background-size: cover;          /* obrázek vyplní celou sekci */
    background-position: center;     /* vycentrovaný */
    background-repeat: no-repeat;
    opacity: 0.1;                    /* zde řídíš zesvětlení (0.1 - 0.3) */
    z-index: -1;                     /* obrázek pod text */
}

.section-7 > * {
    position: relative;              /* obsah nad obrázkem */
    z-index: 1;
}

.section-7-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-7 p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3e2723;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3e2723;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #5d4037;
}

.bold-content6 {
    font-weight: bold;
    color: #3e2723;
    font-size: 1.2rem;
    
}


@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
    }
}

.contact-wrapper {
    display: flex;
    align-items: stretch;        /* oba sloupce stejně vysoké */
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    flex: 1;                     /* zabere polovinu */
    padding: 20px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #3e2723;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3e2723;
    margin-bottom: 20px;
}

.contact-info p b {
    color: #5d4037;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.phone-link {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #3e2723;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid #d7a86e;
    transition: color 0.3s, border-color 0.3s;
}

.phone-link:hover {
    color: #d7a86e;
    border-color: #3e2723;
}

.contact-map {
    flex: 1;                     /* zabere druhou polovinu */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;           /* aby mapa nebyla moc nízká */
    border: 0;
    display: block;
}

/* ============================================ */
/* AKČNÍ KARTIČKY - REZERVACE                   */
/* ============================================ */

.contact-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    
}

.action-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid #d7a86e;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}


.action-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.action-card h4 {
    font-size: 1.3rem;
    color: #3e2723;
    margin-bottom: 12px;    
}

.action-card p {
    font-size: 0.95rem;
    color: #5d4037;
    line-height: 1.5;
    margin-bottom: 20px;
}

.action-btn {
    display: inline-block;
    background-color: #3e2723;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
    letter-spacing: 0.5px;
}

.action-btn:hover {
    background-color: #5d4037;
    transform: scale(1.05);
    color: white;
}

.action-btn-outline {
    background-color: transparent;
    color: #3e2723;
    border: 2px solid #3e2723;
}

.action-btn-outline:hover {
    background-color: #3e2723;
    color: white;
}

@media (max-width: 600px) {
    .contact-actions {
        flex-direction: column;
    }
    
    .action-card {
        min-width: 100%;
    }
}

/* Na mobilech pod sebou */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
}

.footer {
    background-color: #3e2723;
    color: #f5f0e8;
    padding: 60px 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;     /* první sloupec širší */
    gap: 50px;
    padding-bottom: 40px;
}

.footer-column h3.footer-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #d7a86e;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

/* Dekorativní podtržení pod nadpisem */
.footer-column h3.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #d7a86e;
}

.footer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #d7c5b0;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #d7c5b0;
    line-height: 1.6;
}

.footer-list a {
    color: #d7c5b0;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-list a:hover {
    color: #d7a86e;
    padding-left: 5px;       /* odkaz se mírně posune doprava */
}

.footer-bottom {
    border-top: 1px solid rgba(215, 168, 110, 0.2);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #a89888;
    letter-spacing: 0.5px;
}

/* Responzivní - na tabletu 2 sloupce, na mobilu pod sebou */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 30px 0;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3.footer-title::after {
        left: 50%;
        transform: translateX(-50%);     /* na mobilu vycentrované */
    }
}

/* ============================================ */
/* MOBILNÍ OPTIMALIZACE                         */
/* ============================================ */

/* === TABLET a větší mobil (do 900px) === */
@media (max-width: 900px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .section-1,
    .section-2,
    .section-4,
    .section-5,
    .section-6,
    .section-7 {
        padding: 50px 25px;
    }
    
    .section-text h1,
    .section-text .top-text {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Pohyblivý pás - menší obrázky */
    .gallery-item {
        width: 300px;
        height: 210px;
    }
}

/* === MOBIL (do 768px) === */
@media (max-width: 768px) {
    /* NAVBAR - logo nahoře, odkazy dole */
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    /* SECTION-1 - text a obrázek pod sebou */
    .section-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-text h1,
    .section-text .top-text {
        font-size: 2.4rem;
        text-align: center;
    }
    
    .section-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Všechny sekce - menší padding */
    .section-1,
    .section-2,
    .section-4,
    .section-5,
    .section-6,
    .section-7 {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .section-2-content,
    .section-4-content,
    .section-6-content,
    .section-7-content {
        padding: 10px;
    }
    
    .section-2 p,
    .section-4 p,
    .section-6 p {
        font-size: 1rem;
    }
    
    /* Pohyblivý pás - ještě menší obrázky */
    .gallery-item {
        width: 250px;
        height: 175px;
    }
    
    /* SECTION-7 - kontakt a mapa pod sebou */
    .contact-info {
        padding: 10px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .contact-info p {
        text-align: center;
    }
    
    .phone-link {
        font-size: 1.3rem;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
    
    /* FOOTER */
    .footer {
        padding: 40px 20px 0;
    }
    
    /* Zajímavosti - tučné nadpisy menší */
    .bold-content6 {
        font-size: 1.1rem;
    }
    
    /* Alert hláška - menší padding na mobilu */
    .alert {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* === MALÝ MOBIL (do 500px) === */
@media (max-width: 500px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .nav-links {
        gap: 8px 15px;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
    
    .section-1,
    .section-2,
    .section-4,
    .section-5,
    .section-6,
    .section-7 {
        padding: 30px 15px;
    }
    
    .section-text h1,
    .section-text .top-text {
        font-size: 1.9rem;
    }
    
    .section-text p,
    .section-2 p,
    .section-4 p,
    .section-6 p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    /* Pohyblivý pás - nejmenší velikost */
    .gallery-item {
        width: 200px;
        height: 140px;
    }
    
    .contact-map iframe {
        min-height: 250px;
    }
    
    /* Lightbox křížek o trochu níž, aby nezasahoval do statusbaru */
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }

    .contact-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.action-card {
    flex: 1;
    min-width: 250px;                    /* aby se na úzké obrazovce nezmáčkly */
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #d7a86e;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.action-card h4 {
    font-size: 1.3rem;
    color: #3e2723;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.action-card p {
    font-size: 0.95rem;
    color: #5d4037;
    line-height: 1.5;
    margin-bottom: 20px;
}

.action-btn {
    display: inline-block;
    background-color: #3e2723;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
    letter-spacing: 0.5px;
}

.action-btn:hover {
    background-color: #5d4037;
    transform: scale(1.05);
}

/* Druhé tlačítko - prázdné s rámečkem (tzv. "outline") */
.action-btn-outline {
    background-color: transparent;
    color: #3e2723;
    border: 2px solid #3e2723;
}

.action-btn-outline:hover {
    background-color: #3e2723;
    color: white;
}

/* Na mobilu pod sebou */
@media (max-width: 600px) {
    .contact-actions {
        flex-direction: column;
    }
    
    .action-card {
        min-width: 100%;
    }
}
}