:root {
    --primary: #ff7f00;
    --primary-dark: #cc6600;
    --primary-light: #ffb366;
    --secondary: #fff4e6;
    --text: #1f2937;
    --text-light: #6b7280;
    --background: #fafafa;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%), url('media/logo.png') center center/contain no-repeat;
    background-blend-mode: overlay;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo {
    width: 295px;
    height: auto;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Navigation */
nav {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: var(--secondary);
    margin-bottom: 40px;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-links a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-links a:hover {
    color: var(--primary);
}

.breadcrumb-links span {
    color: var(--primary);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-right: 15px;
    margin-bottom: 10px;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
}

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

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

.btn-video {
    margin-top: 15px;
}

.btn-container {
    text-align: center;
    margin: 40px 0;
}

/* Center aligned content */
.centered-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Text boxes */
.text-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin: 30px auto;
    box-shadow: var(--shadow);
    max-width: 1200px;
    width: 100%;
}

.text-box-secondary {
    background: var(--secondary);
}

.text-box h2 {
    text-align: left;
    color: var(--primary);
}

.text-box h3 {
    text-align: left;
}

.text-box p {
    text-align: left;
}

/* Section header gradient */
.section-header-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    text-align: center;
}

.section-header-top-margin {
    margin-top: 80px;
}

.section-header-title {
    color: white !important;
    font-size: 2.8rem;
    margin: 0;
}

/* Price text */
.price-text {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Service Page Layout */
.service-page-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.service-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-page-content {
    padding: 80px 0;
    background: var(--white);
}

.service-page-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-align: left;
}

.service-page-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 1.8rem;
    text-align: left;
}

.service-page-info p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

/* Service intro section */
.service-intro {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-intro h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.service-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Treatment Sections */
.treatment-section {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--background);
    border-radius: var(--radius);
}

.treatment-section h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.treatment-section p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.treatment-price-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0;
}

.treatment-image {
    margin: 30px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.treatment-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Additional Services */
.additional-services {
    background: var(--secondary);
    padding: 30px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.additional-services h4 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
}

.service-item h5 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 10px;
}

.service-item .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Note Box */
.note-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.note-box p {
    color: #856404;
    font-weight: 500;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    text-align: center;
    margin: 40px 0;
}

/* Integrated photos */
.integrated-photo {
    margin: 50px auto;
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrated-photo img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius);
}

/* Photo grid - 2 photos side by side */
.photo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
}

.photo-grid-2 .integrated-photo {
    margin: 0;
    max-width: 100%;
}

.photo-grid-2 .integrated-photo img {
    width: 100%;
    height: auto;
}

/* 4x larger photo - photo-2x class */
.photo-2x {
    max-width: none !important;
    width: auto !important;
    margin: 100px auto !important;
}

.photo-2x img {
    width: 484px !important;
    height: auto !important;
    max-width: none !important;
}

.photo-caption {
    background: var(--secondary);
    padding: 15px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
}

/* Service benefits */
.service-benefits {
    margin: 40px auto;
    padding: 30px;
    background: var(--secondary);
    border-radius: var(--radius);
    max-width: 1200px;
    width: 100%;
}

.service-benefits h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.service-benefits li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.service-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.4rem;
}

/* Treatment List */
.treatment-list {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.treatment-list h2 {
    margin-bottom: 40px;
    color: var(--primary-dark);
    font-size: 2rem;
    text-align: center;
}

.treatment-item {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 25px;
    margin: 0 auto 20px auto;
    border-left: 4px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
}

.treatment-text {
    flex: 1;
    text-align: left;
}

.treatment-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-left: 30px;
    white-space: nowrap;
}

.treatment-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.treatment-technique {
    color: var(--text);
    font-style: italic;
    margin: 10px 0;
    padding-left: 15px;
    border-left: 2px solid var(--primary-light);
}

/* Massage time info (centered box) */
.massage-time-info {
    justify-content: center;
    text-align: center;
}

/* Price Packages */
.price-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.price-package {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.price-package:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.price-package h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 60px 40px;
    background: var(--secondary);
    margin: 40px auto;
    border-radius: var(--radius);
    max-width: 1200px;
}

.photo-gallery h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 4/3;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.photo-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .photo-label {
    opacity: 1;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 60px;
}

.video-section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video grid pro mixované orientace */
.video-grid-mixed {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.video-portrait {
    flex: 0 0 auto;
    width: 300px;
}

.video-landscape {
    flex: 0 0 auto;
    width: 500px;
}

.video-card {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.video-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.video-placeholder::after {
    content: "▶";
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.video-player {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: var(--secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 5px solid var(--primary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Service Details */
.service-details {
    padding: 100px 0;
    background: var(--white);
}

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

.service-detail-card {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.service-detail-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-light);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 1.1rem;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.4rem;
}

.service-note {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.contact-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.contact-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    background: white;
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-description {
    opacity: 0.8;
    margin-top: 5px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    font-size: 1.1rem;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.hours-note {
    margin-top: 20px;
    opacity: 0.8;
    font-style: italic;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treatment-item {
        flex-direction: column;
    }

    .treatment-price {
        margin-left: 0;
        margin-top: 15px;
        font-size: 1.5rem;
    }

    .about-content,
    .service-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .video-grid-mixed {
        flex-direction: column;
    }
    
    .video-portrait,
    .video-landscape {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .text-box {
        padding: 25px 20px;
        max-width: 100%;
    }

    .integrated-photo {
        margin: 30px auto;
        max-width: 100%;
    }

    .photo-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-benefits {
        max-width: 100%;
    }

    .treatment-item {
        max-width: 100%;
    }

    .centered-content {
        max-width: 100%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .service-page-hero h1 {
        font-size: 2.5rem;
    }

    .service-page-info h2 {
        font-size: 1.8rem;
    }

    .service-intro h2 {
        font-size: 1.8rem;
    }

    .service-page-content {
        padding: 60px 0;
    }

    .integrated-photo { 
        margin: 30px auto;
    }

    .integrated-photo img {
        height: 250px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .logo {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 40px 0;
        min-height: 250px;
    }

    .about-section,
    .services-showcase,
    .service-details {
        padding: 70px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .service-card,
    .service-detail-card {
        padding: 30px 20px;
    }

    .price-packages {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }

    .treatment-section {
        padding: 30px 20px;
    }
    
    .section-header-title {
        font-size: 2.2rem;
    }
}