/* Modern Feminine Design - Neboj se řídit - Updated V2 */

:root {
    /* Color Palette - User Defined Base (Strict) */
    --primary: #3E366A;
    /* Soumrak Indigo */
    --secondary: #964586;
    /* Hroznová soda */
    --mint: #68B58C;
    /* List máty */
    --text-main: #333333;
    /* Grafit */
    --bg-body: #EADED8;
    /* Práškový okvětní lístek */
    --footer-bg: #36584E;
    /* Tmavě břidlicová šedá */

    /* Mappings for semantic usage */
    --nature: var(--footer-bg);
    --nature-light: var(--mint);
    --accent: var(--mint);
    /* Used for highlights */
    --accent-hover: #5aa17b;
    /* Slightly darker mint */
    --secondary-glow: rgba(150, 69, 134, 0.4);

    /* Typography */
    --font-main: 'LINE Seed JP', sans-serif;

    /* Neutral & Backgrounds */
    --text-light: var(--footer-bg);
    /* Use Slate for lighter text */
    --bg-card: #FFFFFF;
    --bg-glass: #FFFFFF;

    /* Gradients (Using only palette colors) */
    --grad-primary: linear-gradient(135deg, var(--footer-bg) 0%, var(--primary) 100%);
    --grad-accent: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    --grad-surface: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);

    /* Shadows - Deep, soft, and modern */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-hover: none;

    /* Border Radii */
    --radius-full: 100px;
    --radius-xl: 48px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;

    /* Spacing */
    --space-xs: 0.75rem;
    --space-sm: 1.5rem;
    --space-md: 3rem;
    --space-lg: 6rem;
    --space-xl: 6rem;

    /* Transition */
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 82.5%;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.8;
    padding-top: 115px;
    /* Header spacing */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Progress Bar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-percent, 0%);
    height: 4px;
    background: var(--accent);
    z-index: 2000;
    transition: width 0.1s ease-out;
}

::selection {
    background-color: var(--primary);
    color: white;
}

h1,
h2,
h3 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.91rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.4;
}

p {
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

i.bi {
    color: var(--secondary);
}

/* --- Utilities --- */
.container {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(1.55rem, 2.2vw, 2.09rem);
    margin-bottom: 4.5rem;
    /* Increased from 3rem */
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 0.2em;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.punct-fix {
    font-family: sans-serif;
    font-weight: 700;
}



.section-title.left {
    text-align: left;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-menu .btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: #68B58C;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 0;
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(150, 69, 134, 0.3);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.subpage-hero {
    background: var(--bg-card);
}

/* --- Header & Navigation --- */
.header {
    padding: 2.2rem 0;
    background: var(--primary);
    /* Always solid as requested */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: none;
}

.header.scrolled {
    padding: 1.2rem 0;
    background: var(--primary);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    letter-spacing: 0.02em;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: none;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-5deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 1.09rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 115px;
    position: relative;
    overflow: hidden;
}



.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(1.91rem, 4vw, 3.64rem);
    margin-bottom: 3.5rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--secondary);
    text-transform: uppercase;
}

.hero-title {
    display: block;
    white-space: nowrap;
}

.hero-location {
    display: block;
    font-weight: 800;
    font-size: 0.5em;
    white-space: nowrap;
    letter-spacing: 0.1em;
    margin-top: 1.2rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 4rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-subtitle strong {
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: 85% 20%;
    border-radius: var(--radius-xl);
    box-shadow: none;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    33% {
        transform: translateY(-15px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* --- Services Section --- */
.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.services-container.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.services-container.two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    /* Increased from 0.5rem */
    color: var(--text-main);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: none;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-item:hover .service-icon {
    transform: rotate(10deg);
}

.service-item:hover .service-icon::after {
    opacity: 1;
}

.service-icon img {
    width: 44px;
    height: 44px;
    transition: var(--transition);
}

.service-item:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-item p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.4;
}

/* --- Feature Cards --- */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}



.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}



.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-main);
    word-break: break-word;
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--secondary);
    transition: var(--transition);
    font-weight: 600;
}

.feature-card:hover i {
    transform: scale(1.2);
    color: var(--secondary);
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
}

/* --- Full Width/Parallax Section --- */
.full-width-section {
    height: 60vh;
    background: linear-gradient(to right, transparent 30%, rgba(0, 0, 0, 0.7)), url('Obrazky/hlavni stranka/na veku nezalezi.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    padding-top: 10vh;
    position: relative;
    margin: var(--space-xl) 0;
}

.content-overlay {
    background: transparent;
    padding: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: 10%;
    box-shadow: none;
    border: none;
    position: relative;
    text-align: right;
}

.content-overlay::before {
    display: none;
}

.content-overlay h2 {
    font-size: clamp(1.91rem, 2.6vw, 2.55rem);
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: none;
}

.content-overlay h3 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    text-shadow: none;
}

/* --- Profile Section --- */
.profile-section {
    padding: var(--space-xl) 0;
    background: transparent;
}

.profile-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-lg);
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    padding: 20px;
}

.profile-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.profile-image-wrapper::after {
    display: none;
}

.profile-content h2 {
    font-size: 3.18rem;
    margin-bottom: 1rem;
    color: var(--nature);
}

.profile-content h3 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.profile-content h3 i {
    color: var(--secondary);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.profile-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.check-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.check-list .check-icon {
    width: 2rem;
    height: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.check-list i {
    color: var(--secondary);
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    /* Remove blur/shadow and ensure crisp edges */
    filter: none;
    line-height: 1;
    display: block;
}

/* --- Footer --- */
/* --- Footer --- */
.footer {
    background-color: #36584E;
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1.5fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-block-1 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
    flex-shrink: 0;
    margin-top: 0;
}

.footer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-block-2 {
    color: #fff;
}

.footer-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.2rem;
    color: #fff;
    line-height: 1.3;
}

.footer-title {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-description {
    margin-top: 2.5rem;
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-features {
    font-size: 1rem;
    opacity: 0.85;
}

.footer-block-3 h4 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.4;
}

.footer-block-3 p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.6;
}

.footer-block-3 i {
    color: #68B58C;
    font-size: 1.1rem;
}

.footer-block-3 a {
    color: #fff;
    transition: var(--transition);
}

.footer-block-3 a:hover {
    color: #EADED8;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-block-3 p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        text-align: center;
        justify-items: center;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-avatar {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .footer-block-3 p {
        justify-content: center;
    }

    .footer-bottom p {
        gap: 0.5rem;
        flex-direction: column;
    }

    .footer-bottom .separator {
        display: none;
    }
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {

    .services-container,
    .services-container.three-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrapper {
        max-width: 800px;
        margin: 4rem auto 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-lg: 3rem;
        --space-md: 2rem;
    }

    html {
        font-size: 75%;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 6rem 2rem 2rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav-menu .btn {
        width: 100%;
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #fff;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #fff;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .services-container,
    .services-container.three-cols,
    .services-container.two-cols,
    .features-container {
        grid-template-columns: 1fr;
    }

    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .check-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        text-align: left;
    }

    .check-list li {
        text-align: left;
        justify-content: flex-start;
    }



    .full-width-section {
        height: 50vh;
        align-items: flex-end;
        padding-top: 0;
        padding-bottom: 3rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 70%), url('Obrazky/hlavni stranka/na veku nezalezi.jpg');
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
        margin: var(--space-md) 0;
    }

    .content-overlay {
        margin-right: 0;
        width: 100%;
        text-align: center;
        padding: 0 1.5rem;
    }

    .content-overlay h2 {
        font-size: 1.64rem;
        margin-bottom: 0.5rem;
    }

    .content-overlay h3 {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* removed font-size override for hero-location */

    .container {
        width: 92%;
    }

    .hero {
        padding-top: 40px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .logo-img {
        height: 55px;
    }

    .logo span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 90%;
    }

    .logo span {
        font-size: 1rem;
        gap: 0.8rem;
    }

    .logo-img {
        height: 45px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    @media (max-width: 360px) {
        .hero-text h1 {
            font-size: 1.8rem;
        }
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-item {
        padding: 2.5rem 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-name {
        font-size: 1.4rem;
    }

    .footer-avatar {
        width: 120px;
        height: 120px;
    }
}

/* --- Subpages Specific Styles --- */
/* --- Subpages Specific Styles --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 450px));
    gap: 4rem;
    margin-top: 4rem;
    justify-content: center;
    justify-items: center;
}

.price-card {
    background: var(--bg-card);
    padding: 4.5rem 3.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    /* Soft, diffused shadow for "jemný" feel */
    box-shadow: 0 15px 40px -10px rgba(62, 54, 106, 0.06);
    overflow: hidden;
}

.price-card:hover {
    box-shadow: 0 25px 60px -12px rgba(62, 54, 106, 0.12);
}

.price-card-header {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: var(--text-main);
    display: block;
    margin-bottom: 0.5rem;
    width: 100%;
}

.price-card-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin: 0;
    text-transform: none;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.price-card-body {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
    width: 100%;
}

.price-value {
    position: static;
    transform: none;
    background: transparent;
    color: var(--secondary);
    padding: 1rem 0 2.5rem;
    margin: 0;
    border-radius: 0;
    font-size: 3.8rem;
    font-weight: 600;
    box-shadow: none;
    line-height: 1;
    font-family: var(--font-main);
    transition: var(--transition);
}

.price-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-main);
    opacity: 0.85;
    margin: 0;
    max-width: 90%;
}

.price-card:hover .price-value {
    transform: scale(1.15);
    color: var(--secondary);
}

@media (max-width: 768px) {
    .pricing-grid {
        gap: 2rem;
        margin-top: 2rem;
    }

    .price-card {
        padding: 2.5rem 1.5rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .price-card-header h3 {
        font-size: 1.6rem;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-item-content {
        padding: 1.5rem;
    }
}

.blog-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-item-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-item-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.blog-item-excerpt {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.7;
    opacity: 0.9;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    transition: var(--transition);
    width: fit-content;
}

.read-more:hover {
    gap: 1.2rem;
    color: var(--primary);
}

.read-more i {
    font-size: 1.3rem;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.article-meta i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.content-text p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Contact Page Specifics - Enhanced */
.contact-info-large p {
    font-size: 1.4rem;
    /* Increased size */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    line-height: 1.6;
}

.contact-info-large i {
    color: var(--secondary);
    font-size: 2rem;
    /* Larger icons matching text */
    flex-shrink: 0;
}

.contact-info-large .action-link {
    font-size: 1.4rem;
    /* Ensure links inherit or match specific large size */
}

/* Interesting element for "Těším se..." */
.contact-message-box {
    position: relative;
    margin-top: 5rem;
    margin-bottom: 2rem;
    padding: 0;
    max-width: 100%;
}

.contact-message-box p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.3;
    display: inline-block;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .profile-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* --- Blog Post Detail Specifics --- */
article.section {
    background-color: #ffffff;
    padding-top: 6rem !important;
}

@media (max-width: 768px) {
    article.section {
        padding-top: 6rem !important;
        margin-top: 0;
    }
}

.content-img-full {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-top: 5rem;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-sm);
}

.content-text {
    margin-top: 2rem;
}

.content-text p {
    margin-bottom: 2.2rem;
    line-height: 1.9;
}

/* --- Additional Components --- */
.subpage-hero {
    padding-top: 6rem;
    background: var(--bg-card);
}

.info-car-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
    margin-bottom: 3rem;
    gap: 4rem;
}

.info-car-image {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    align-self: center;
    margin-top: -3rem;
}

.info-car-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: contain;
    transform: scale(1.1);
    transition: var(--transition);
}

.info-car-container:hover .info-car-image img {
    transform: scale(1.15);
}

.quote-box {
    display: inline-block;
    background: var(--bg-card);
    padding: 2.5rem 5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.quote-box h2 {
    color: var(--nature);
    font-size: clamp(1rem, 2vw, 1.8rem);
    margin-bottom: 0;
    letter-spacing: -0.01em;
    text-transform: none;
}

@media (max-width: 900px) {
    .info-car-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-car-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .info-car-container .profile-content p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding-top: 5rem;
    }

    .quote-box {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
        width: 100%;
    }
}