/* ==========================================================================
   MONAMI CARE - Moderní CSS Design
   Barvy: Zlatá/Béžová paleta
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Hlavní barvy */
    --gold-primary: #C9A050;
    --gold-dark: #A67C3D;
    --gold-light: #E8D5A3;
    --gold-gradient: linear-gradient(135deg, #C9A050 0%, #E8D5A3 50%, #C9A050 100%);
    
    /* Neutrální barvy */
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-dark: #3D3D3D;
    --gray: #6B6B6B;
    --gray-light: #A0A0A0;
    
    /* Pozadí sekce */
    --bg-light: #FDFBF7;
    --bg-cream: #F9F5ED;
    --bg-gold-soft: rgba(201, 160, 80, 0.08);
    
    /* Typografie */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Rozměry */
    --container-max: 1280px;
    --container-narrow: 900px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Stíny */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 40px rgba(201, 160, 80, 0.2);
    
    /* Přechody */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--gold-primary);
}

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

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gold-primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn--outline:hover {
    background: var(--gold-primary);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--gold-primary);
}

.btn--white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-base);
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.1em;
}

.header__logo-text span {
    color: var(--gold-primary);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--gray-dark);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--gold-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.nav__item {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 12px 24px;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.nav__dropdown-link:hover {
    background: var(--bg-gold-soft);
    color: var(--gold-primary);
}

/* Header CTA */
.header__cta {
    margin-left: 16px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        padding: 40px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: var(--transition-slow);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav__link {
        padding: 16px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--cream-dark);
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav__dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 20px;
        display: none;
    }
    
    .nav__item.open .nav__dropdown {
        display: block;
    }
    
    .header__cta {
        margin: 24px 0 0;
    }
    
    .header__cta .btn {
        width: 100%;
    }
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(253, 248, 240, 0.95) 0%, 
        rgba(249, 245, 237, 0.85) 50%,
        rgba(232, 213, 163, 0.3) 100%);
    z-index: 1;
}

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

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.hero__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--gold-primary);
}

.hero__title {
    margin-bottom: 24px;
}

.hero__title span {
    display: block;
    color: var(--gold-primary);
}

.hero__text {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    z-index: 2;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.hero__image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Hero decorations */
.hero__decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero__decoration--1 {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    opacity: 0.5;
}

.hero__decoration--2 {
    bottom: 15%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__subtitle {
        padding-left: 0;
    }
    
    .hero__subtitle::before {
        display: none;
    }
    
    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.section-header__title {
    margin-bottom: 20px;
}

.section-header__text {
    font-size: 1.0625rem;
    color: var(--gray);
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services {
    background: var(--bg-cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover .service-card__overlay {
    opacity: 1;
}

.service-card__content {
    padding: 28px;
}

.service-card__title {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card__link svg {
    transition: var(--transition-base);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    background: var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about__image-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gold-gradient);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.about__content {
    max-width: 560px;
}

.about__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.about__title {
    margin-bottom: 12px;
}

.about__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.about__text {
    color: var(--gray);
    margin-bottom: 16px;
}

.about__list {
    margin: 24px 0;
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.about__list li svg {
    flex-shrink: 0;
    color: var(--gold-primary);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about__image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about__content {
        text-align: center;
        max-width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
    font-size: 3rem;
    color: var(--gold-primary);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   CTA Section / E-Shop Banner
   -------------------------------------------------------------------------- */
.cta-banner {
    position: relative;
    padding: 120px 0;
    background: var(--gold-gradient);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-banner__inner {
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-banner__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-banner__text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   Gift Voucher Section
   -------------------------------------------------------------------------- */
.vouchers {
    background: var(--white);
}

.vouchers__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vouchers__content {
    max-width: 480px;
}

.vouchers__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.vouchers__title {
    margin-bottom: 20px;
}

.vouchers__text {
    color: var(--gray);
    margin-bottom: 28px;
}

.vouchers__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.voucher-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.voucher-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.voucher-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .vouchers__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vouchers__content {
        max-width: 100%;
    }
    
    .vouchers__images {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
    background: var(--bg-cream);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info {
    max-width: 360px;
}

.contact__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.contact__title {
    margin-bottom: 24px;
}

.contact__text {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact__details {
    margin-bottom: 32px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact__item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--gold-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact__item-content {
    padding-top: 4px;
}

.contact__item-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.contact__item-value {
    font-size: 1rem;
    color: var(--black);
}

.contact__item-value a:hover {
    color: var(--gold-primary);
}

.contact__social {
    display: flex;
    gap: 12px;
}

.contact__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-base);
}

.contact__social-link:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact__form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--white);
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
}

.form__submit {
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .contact__inner {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        max-width: 100%;
        text-align: center;
    }
    
    .contact__item {
        justify-content: center;
        text-align: left;
    }
    
    .contact__social {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .contact__form {
        padding: 32px 24px;
    }
}

/* --------------------------------------------------------------------------
   Map Section
   -------------------------------------------------------------------------- */
.map {
    height: 400px;
    background: var(--cream-dark);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.1em;
}

.footer__logo-text span {
    color: var(--gold-primary);
}

.footer__desc {
    color: var(--gray-light);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background: var(--gold-primary);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--gray-light);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer__links a:hover {
    color: var(--gold-primary);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-light);
    font-size: 0.9375rem;
}

.footer__contact-item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copy {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer__copy a {
    color: var(--gold-primary);
}

.footer__copy a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__brand {
        grid-column: span 1;
    }
    
    .footer__bottom {
        justify-content: center;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.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;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Scroll reveal placeholders */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   ONLINE KURZY / MASON JAR PAGE STYLES
   Přidat do pages.css
   ===================================================== */

/* Benefits Grid (Mason Jar) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-box__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-box__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-box__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Course Card Price Variants */
.course-card__price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.course-card__price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.course-card__badge--sale {
    background: #e74c3c;
    color: #fff;
}

/* Steps Grid */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps__grid {
        grid-template-columns: 1fr;
    }
}

/* Steps Grid - 6 columns variant */
.steps__grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1200px) {
    .steps__grid--6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps__grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps__grid--6 {
        grid-template-columns: 1fr;
    }
}

/* Step Card */
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary, #C9A050) 0%, #d4af61 100%);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.step-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark, #1a1a1a);
}

.step-card__text {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    line-height: 1.6;
    margin: 0;
}

/* Step card in cream background sections */
.bg-cream .step-card {
    background: #fff;
}

/* For Whom Section */
.for-whom__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .for-whom__grid {
        grid-template-columns: 1fr;
    }
}

.for-whom__card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.for-whom__card:hover {
    transform: translateY(-5px);
}

.for-whom__icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.for-whom__card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.for-whom__card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* What You Get Section */
.what-you-get__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .what-you-get__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .what-you-get__grid {
        grid-template-columns: 1fr;
    }
}

.what-you-get__item {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.what-you-get__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.what-you-get__item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.what-you-get__item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
