/* === ZÁKLADNÉ NASTAVENIA, FONT A FARBY === */
#html_custom_template {
--orange: #ff6600;
--light-bg: #f9fafb;
--white: #ffffff;
--text-dark: #1f2937;
--text-secondary: #6b7280;
--border-color: #e5e7eb;
--dark-bg: #111827;
}

#html_custom_template body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: transparent;
color: var(--text-dark);
overflow-x: hidden;
}

#html_custom_template .showroom-section *, #html_custom_template .showroom-section *:before, #html_custom_template .showroom-section *:after {
box-sizing: border-box;
}

/* === TECHNICKÉ POŽIADAVKY === */
#html_custom_template .showroom-section {
font-family: 'Inter', sans-serif;
background-color: transparent;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 40px 0;
overflow-x: hidden;
}

#html_custom_template .page-wrapper {
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 20px;
overflow: hidden;
}

#html_custom_template .section-spacer { margin-top: 80px; }

/* === ŠTÝLY PRE SEKCIE === */
#html_custom_template .section-header {
text-align: center;
margin-bottom: 50px;
}
#html_custom_template .section-header h1, #html_custom_template .section-header h2 {
font-size: clamp(2.2rem, 5vw, 3rem);
font-weight: 800;
color: var(--text-dark);
line-height: 1.3;
}
#html_custom_template .section-header h1 span, #html_custom_template .section-header h2 span {
color: var(--orange);
}

#html_custom_template .reasons-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
}
#html_custom_template .reason-card {
display: flex;
align-items: flex-start;
gap: 1.5rem;
}
#html_custom_template .reason-card__icon {
flex-shrink: 0;
width: 48px;
height: 48px;
background-color: #fff5eb;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--orange);
}
#html_custom_template .reason-card__icon svg { width: 28px; height: 28px; }
#html_custom_template .reason-card__content h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.5rem 0; line-height: 1.4; }
#html_custom_template .reason-card__content p { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); margin: 0; }

#html_custom_template .feature-split {
display: flex; flex-wrap: wrap; align-items: center; gap: 3rem;
background-color: var(--light-bg); border-radius: 24px; padding: 3rem; border: 1px solid var(--border-color);
}
#html_custom_template .feature-split__text { flex: 1; min-width: 300px; }
#html_custom_template .feature-split__text h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.4; }
#html_custom_template .feature-split__text ul { list-style-type: none; padding: 0; }
#html_custom_template .feature-split__text li { position: relative; padding-left: 2rem; margin-bottom: 1rem; font-size: 1.1rem; line-height: 1.6; }
#html_custom_template .feature-split__text li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

#html_custom_template .expectations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
#html_custom_template .expectation-card {
background-color: var(--white); border: 1px solid var(--border-color); border-radius: 16px;
padding: 2rem; transition: transform 0.2s, box-shadow 0.2s;
}
#html_custom_template .expectation-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.07); }
#html_custom_template .expectation-card__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
#html_custom_template .expectation-card__icon { color: var(--orange); }
#html_custom_template .expectation-card h3 { font-size: 1.25rem; font-weight: 700; margin: 0; line-height: 1.4; }
#html_custom_template .expectation-card p { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); margin: 0; }

#html_custom_template .ratings-banner {
background-color: var(--orange); color: var(--white); text-align: center;
padding: 3rem 1.5rem; border-radius: 24px;
}
#html_custom_template .ratings-banner h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 2.5rem; line-height: 1.4; }
#html_custom_template .ratings-grid { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 2rem; }
#html_custom_template .rating-item { text-align: center; }
#html_custom_template .rating-item__value { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; display: block; margin-bottom: 0.5rem; }
#html_custom_template .rating-item__label { font-size: 1rem; font-weight: 500; line-height: 1.4; }

#html_custom_template .cta-banner {
text-align: center; background-color: var(--light-bg); padding: 3rem 2rem;
border-radius: 24px; border: 1px solid var(--border-color);
}
#html_custom_template .cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); font-weight: 800; margin: 0 0 1rem 0; color: var(--text-dark); line-height: 1.4; }
#html_custom_template .cta-banner p { font-size: 1.1rem; color: var(--text-secondary); margin: 0 0 2rem 0; }
#html_custom_template .cta-button {
display: inline-block; background-color: var(--orange); color: var(--white);
padding: 1rem 2.5rem; border-radius: 12px; font-size: 1.1rem;
font-weight: 700; text-decoration: none; transition: transform 0.2s, background-color 0.2s;
}
#html_custom_template .cta-button:hover { background-color: #d95b00; transform: translateY(-3px); }

#html_custom_template .contact-banner {
background-color: var(--light-bg);
border: 1px solid var(--border-color);
border-radius: 24px;
padding: 3rem;
}
#html_custom_template .contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
text-align: center;
}
#html_custom_template .contact-item {
color: var(--text-dark);
}
#html_custom_template .contact-item h3 {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
font-size: 1.2rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 0.5rem;
line-height: 1.4;
}
#html_custom_template .contact-item p {
font-size: 1rem;
color: var(--text-secondary);
margin: 0;
}
#html_custom_template .contact-item-icon {
color: var(--orange);
}

/* === ŠTÝLY PRE FOTOBLOKY A ŠTÚDIÁ === */
#html_custom_template .photo-grid, #html_custom_template .studios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
#html_custom_template .photo-card, #html_custom_template .studio-card {
background-color: var(--white); border-radius: 16px; overflow: hidden;
border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.05);
transition: transform 0.3s, box-shadow 0.3s;
text-decoration: none;
color: var(--text-dark);
}
#html_custom_template .photo-card:hover, #html_custom_template .studio-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
#html_custom_template .photo-card img, #html_custom_template .studio-card img { width: 100%; height: 250px; object-fit: cover; display: block; }
#html_custom_template .photo-card__caption, #html_custom_template .studio-card__content { padding: 1.5rem; }
#html_custom_template .photo-card__caption h3, #html_custom_template .studio-card__title { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.25rem 0; line-height: 1.4; }
#html_custom_template .photo-card__caption p, #html_custom_template .studio-card__address { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }
#html_custom_template .studio-card__title span { color: var(--orange); font-weight: 400; }

#html_custom_template .single-photo-feature { width: 100%; }
#html_custom_template .single-photo-container {
position: relative; border-radius: 24px; overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
#html_custom_template .single-photo-container img { width: 100%; display: block; height: auto; object-fit: cover; max-height: 500px;}
#html_custom_template .single-photo-caption {
position: absolute; bottom: 0; left: 0; right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
padding: 3rem 2rem 2rem 2rem; text-align: center;
}
#html_custom_template .single-photo-caption p {
color: var(--white); font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 700;
margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

#html_custom_template .emotion-footer-block {
background-color: var(--light-bg); padding: 4rem 0;
width: 100vw; position: relative; left: 50%; right: 50%;
margin-left: -50vw; margin-right: -50vw;
}
#html_custom_template .emotion-content {
max-width: 1200px; margin: 0 auto; text-align: center; padding: 0 20px;
}
#html_custom_template .emotion-content h2 {
font-family: 'Open Sans', sans-serif; font-size: clamp(1.5rem, 4vw, 2.2rem);
font-weight: 700; color: var(--text-dark); margin: 0 auto 2.5rem auto;
max-width: 800px; line-height: 1.4;
}
#html_custom_template .emotion-content img { width: 100%; height: auto; max-height: 600px; object-fit: cover; object-position: center; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
