:root {
    /* Nová pastelová paleta: Sage + Blush + Cream */
    --primary: #8fa89b;          /* Mäkká šalviová zelená */
    --primary-light: #f0f4f1;    /* Svieža veľmi svetlá šalviová */
    --primary-dark: #3a4d43;     /* Tmavšia šalviová pre čitateľný text */
    --accent: #e8c4b8;           /* Púdrová ružová / Blush */
    --accent-warm: #d9a08f;      /* Teplý blush akcent */
    --bg-cream: #faf7f2;         /* Smetanovo-krémové pozadie */
    --text-dark: #2c3831;        /* Hlboká prírodná tmavá */
    --text-muted: #66786e;       /* Jemná tlmená pre texty */
    
    /* Soft Look - väčšie zaoblenia a vzdušné tiene */
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 12px 35px rgba(143, 168, 155, 0.08);
    --shadow-hover: 0 22px 45px rgba(143, 168, 155, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Skip Link pre prístupnosť */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-dark);
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.3s;
    text-decoration: none;
    border-radius: 0 0 12px 0;
}
.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Sekcia - Svetlá, pastelová a vzdušná */
header {
    position: relative;
    min-height: 85vh;
    /* Svetlý, jemný šalviovo-krémový závoj namiesto tmavej vrstvy */
    background: linear-gradient(135deg, rgba(250, 247, 242, 0.88), rgba(240, 244, 241, 0.78)), 
                url('images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    padding: 70px 20px 90px 20px;
}

.hero-content {
    max-width: 850px;
    animation: fadeInSoft 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content h1 {
    font-family: 'Alex Brush', cursive;
    font-size: clamp(4.8rem, 12vw, 9rem);
    color: var(--accent-warm);
    margin-bottom: -15px;
    line-height: 1.05;
    text-shadow: 2px 4px 20px rgba(217, 160, 143, 0.15);
}

.hero-content h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    max-width: 620px;
    margin: 0 auto 35px auto;
    font-weight: 300;
    color: var(--text-muted);
}

/* Hlavné tlačidlo - Pastelový soft štýl */
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--primary), #7a9487);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(143, 168, 155, 0.35);
    border: none;
    cursor: pointer;
}

.btn-hero-call:hover, .btn-hero-call:focus {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(143, 168, 155, 0.48);
    background: linear-gradient(135deg, #7a9487, var(--primary));
    outline: none;
}

.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    animation: bounceSoft 2.5s infinite;
    opacity: 0.7;
}

/* Vzdušné sekcie */
.section {
    padding: 110px 20px;
    max-width: 1150px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.about-text .highlight-bar {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 25px;
    border-radius: 10px;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.features-list i {
    color: var(--accent-warm);
    font-size: 1rem;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(232, 196, 184, 0.25);
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    transition: transform 0.5s ease;
    display: block;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: 18px;
    bottom: 18px;
    border: 2px solid var(--accent);
    border-radius: 34px;
    z-index: -1;
    opacity: 0.5;
}

/* Banner pre Darčekové poukazy - Púdrovo ružový soft vzhľad */
.voucher-banner {
    background: linear-gradient(135deg, #fffaf8 0%, #f7ebe6 100%);
    border: 1px solid rgba(232, 196, 184, 0.4);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-soft);
}

.voucher-icon {
    font-size: 2.5rem;
    color: var(--accent-warm);
    background: #ffffff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(217, 160, 143, 0.2);
    flex-shrink: 0;
}

.voucher-text h4 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.voucher-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #edf3ef 100%);
    padding: 110px 20px 70px 20px;
    position: relative;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 45px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 35px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: #ffffff;
}

.info-card .card-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 22px;
}

.info-card h4 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
}

.info-card p, .info-card address {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.info-card a {
    color: var(--text-muted);
    text-decoration: none;
}

.info-card strong a {
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.nav-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--primary-dark) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    background: var(--primary-light);
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.3s;
}

.nav-link-btn:hover, .nav-link-btn:focus {
    background: #dbe7e0;
}

/* Návod k príchodu a parkovaniu */
.location-guide-box {
    background: #ffffff;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin: 35px auto 0 auto;
    max-width: 1150px;
    border-left: 5px solid var(--accent-warm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.guide-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.guide-item i {
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    margin-top: 2px;
}

.guide-item h5 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.guide-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Priamy kontaktný box */
.direct-contact-box {
    max-width: 780px;
    margin: 0 auto 70px auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.direct-contact-box h3 {
    color: var(--primary-dark);
    font-size: 2.1rem;
    margin-bottom: 12px;
}

.direct-contact-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.action-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call {
    background: linear-gradient(135deg, var(--primary), #7a9487);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(143, 168, 155, 0.3);
    transition: all 0.3s ease;
}

.btn-call:hover, .btn-call:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(143, 168, 155, 0.45);
}

.btn-messenger {
    background: linear-gradient(135deg, #74a8d8, #538ec4);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(116, 168, 216, 0.3);
    transition: all 0.3s ease;
}

.btn-messenger:hover, .btn-messenger:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(116, 168, 216, 0.45);
}

.btn-facebook {
    background: linear-gradient(135deg, #627ca5, #4a638a);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(98, 124, 165, 0.3);
    transition: all 0.3s ease;
}

.btn-facebook:hover, .btn-facebook:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(98, 124, 165, 0.45);
}

/* Štýl pre Google Mapu */
.map-wrapper {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 420px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Štýl pre fotku budovy */
.building-photo-wrapper {
    max-width: 1150px;
    margin: 35px auto 0 auto;
    background: #ffffff;
    padding: 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.building-photo-wrapper img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.building-photo-wrapper p {
    margin-top: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.building-photo-wrapper p i {
    color: var(--accent-warm);
}

/* FAQ Sekcia */
.faq-section {
    max-width: 1150px;
    margin: 0 auto 60px auto;
}

.faq-title {
    text-align: center;
    color: var(--primary-dark);
    font-size: 1.9rem;
    margin-bottom: 35px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.faq-card {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.faq-card h5 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card h5 i {
    color: var(--accent-warm);
}

.faq-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Plávajúce tlačidlá - Soft a elegantné */
.floating-action-group {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-btn.call {
    background-color: var(--primary);
    box-shadow: 0 8px 25px rgba(143, 168, 155, 0.5);
    animation: pulse-soft 2.5s infinite;
}

.floating-btn.messenger {
    background-color: #74a8d8;
    box-shadow: 0 8px 25px rgba(116, 168, 216, 0.4);
}

.floating-btn.maps {
    background-color: var(--accent-warm);
    box-shadow: 0 8px 25px rgba(217, 160, 143, 0.4);
}

.floating-btn:hover, .floating-btn:focus {
    transform: scale(1.1);
    outline: none;
}

@keyframes pulse-soft {
    0% { box-shadow: 0 0 0 0 rgba(143, 168, 155, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(143, 168, 155, 0); }
    100% { box-shadow: 0 0 0 0 rgba(143, 168, 155, 0); }
}

/* Pätička */
footer {
    background-color: #243029;
    color: #c0d1c7;
    text-align: center;
    padding: 60px 20px;
    font-size: 0.92rem;
    border-top: 3px solid var(--accent);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: 20px;
    line-height: 1.9;
}

.footer-info a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-sub {
    font-size: 0.85rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    margin-top: 22px;
}

@keyframes fadeInSoft {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceSoft {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-8px) translateX(-50%); }
    60% { transform: translateY(-4px) translateX(-50%); }
}

@media (max-width: 768px) {
    header {
        min-height: 75vh;
        padding: 60px 15px;
    }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .section { padding: 70px 20px; }
    .about-img::before { display: none; }
    .location-guide-box { grid-template-columns: 1fr; gap: 20px; }
    .direct-contact-box { padding: 35px 20px; }
    .action-buttons { flex-direction: column; }
    .btn-call, .btn-messenger, .btn-facebook, .btn-hero-call { width: 100%; justify-content: center; }
    .map-wrapper { height: 320px; }
    .voucher-banner { flex-direction: column; text-align: center; }
}