:root {
    --orange-primary: #003366;
    --orange-light: #004488;
    --orange-accent: #F59C00;
    --white: #FFFFFF;
    --grey-light: #F9F9F9;
    --grey-dark: #333333;
    --dark-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--grey-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 0;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    overflow: hidden;
    padding: 2rem;
    padding-top: 90px;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Animované pozadí */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.animated-square {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.square-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.square-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.square-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.square-4 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 10%;
    animation-delay: 1s;
}

.square-5 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 5%;
    animation-delay: 3s;
}

.square-6 {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 50%;
    animation-delay: 5s;
}

.square-7 {
    width: 110px;
    height: 110px;
    bottom: 30%;
    left: 40%;
    animation-delay: 2.5s;
}

.square-8 {
    width: 85px;
    height: 85px;
    top: 60%;
    right: 25%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(15px, 20px) rotate(270deg);
    }
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    z-index: 2;
    order: 1;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-decorative-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.hero-decorative-image.active {
    opacity: 1;
    z-index: 1;
}

.image-decoration-1,
.image-decoration-2 {
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    order: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.btn-primary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--orange-accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 156, 0, 0.35);
    animation: fadeInUp 1.4s ease;
}

.btn-primary:hover {
    background: #d68800;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 156, 0, 0.45);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Banner */
.features-banner {
    background: var(--white);
    padding: 3rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--grey-light);
    border-radius: 50%;
    z-index: 0;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--orange-accent);
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-dark);
    letter-spacing: 0.5px;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: var(--grey-light);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .image-overlay {
    opacity: 1;
}

.blog-content {
    padding: 2rem;
}

.blog-title a {
    color: var(--grey-dark);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--orange-primary);
}

.blog-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--orange-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: var(--orange-primary);
    color: var(--white);
}

/* Hero Statement */
.hero-statement {
    padding: 4rem 0;
    background: var(--white);
}

.statement-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.statement-content {
    text-align: center;
}

.main-title {
    font-size: 1.5rem;
    color: var(--grey-dark);
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 500;
}

.highlight {
    color: var(--orange-primary);
    font-weight: 600;
}

.divider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.divider-line {
    width: 100px;
    height: 3px;
    background: var(--orange-accent);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--grey-light) 0%, #ffffff 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-accent), transparent);
}

.features-section .features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.12);
    border-color: var(--orange-accent);
}

.feature-card .feature-icon {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image {
    transform: scale(1.08);
}

.feature-card .feature-content {
    padding: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--grey-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-left: 15px;
}

.feature-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--orange-accent);
    border-radius: 2px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Products Showcase */
.products-showcase {
    padding: 5rem 0;
    background: var(--white);
}

.products-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.5rem;
    color: var(--grey-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 1.5rem;
}

.product-link {
    display: inline-block;
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border: 2px solid var(--orange-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.product-link:hover {
    background: var(--orange-primary);
    color: var(--white);
    border-bottom-color: var(--orange-accent);
}

/* Photo Gallery */
.photo-gallery {
    padding: 5rem 0;
    background: var(--grey-light);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: var(--grey-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 3px solid var(--orange-accent);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--orange-accent);
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--orange-accent);
}

/* Instagram CTA */
.instagram-cta {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.instagram-cta:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.instagram-content {
    max-width: 600px;
    margin: 0 auto;
}

.instagram-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.instagram-content h3 {
    font-size: 1.8rem;
    color: var(--grey-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.instagram-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.instagram-content strong {
    color: #bc1888;
    font-weight: 600;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.instagram-button i {
    font-size: 1.3rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--grey-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

.simple-contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-field {
    position: relative;
    margin-bottom: 2rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.form-field label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.85rem;
    background: var(--white);
    padding: 0 0.5rem;
    color: var(--orange-primary);
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.gdpr-checkbox {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.gdpr-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.gdpr-checkbox label {
    font-size: 0.9rem;
    color: #666;
}

.gdpr-checkbox a {
    color: var(--orange-primary);
    text-decoration: underline;
}

.send-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.send-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.4);
}

.form-notification {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    font-weight: 500;
}

.form-notification.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--orange-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 1025px) {
    /* Desktop layout - obrázek vpravo */
    .hero {
        flex-direction: row;
        justify-content: space-between;
        gap: 3rem;
    }
    
    .hero-image-container {
        position: absolute;
        right: 8%;
        top: 50%;
        transform: translateY(-50%);
        margin-bottom: 0;
    }
    
    .hero-image-wrapper {
        width: 450px;
        height: 600px;
    }
    
    .hero-content {
        margin-right: auto;
        max-width: 650px;
    }
}

@media (max-width: 1024px) {
    /* Tablet - obrázek nahoře */
    .hero {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }
    
    .hero-image-container {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image-wrapper {
        width: 250px;
        height: 330px;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile - text první, obrázek druhý */
    .hero {
        min-height: auto !important;
        padding: 3rem 1rem !important;
        padding-top: 220px !important;
    }
    
    .hero-content {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .hero-image-container {
        order: 2;
        margin-bottom: 2rem;
    }
    
    .hero-image-wrapper {
        width: 320px !important;
        height: 427px !important;
    }
    
    /* Skrytí oranžových dekoračních prvků */
    .image-decoration-1,
    .image-decoration-2 {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.8rem !important;
        font-weight: 800;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
        animation: fadeInUp 0.8s ease, pulse 2s ease-in-out infinite;
    }
    
    .hero-content p {
        font-size: 1.3rem !important;
        font-weight: 500;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .btn-primary {
        padding: 1.2rem 2.5rem !important;
        font-size: 1.2rem !important;
        font-weight: 700;
        animation: bounce 2s ease-in-out infinite;
        box-shadow: 0 8px 25px rgba(245, 156, 0, 0.5);
    }
    
    .features-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .instagram-cta {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .instagram-icon {
        font-size: 2.5rem;
    }
    
    .instagram-content h3 {
        font-size: 1.5rem;
    }
    
    .instagram-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto !important;
        padding: 2rem 1rem !important;
        padding-top: 200px !important;
    }
    
    .hero-image-wrapper {
        width: 300px !important;
        height: 400px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    /* Menší animované čtverce na mobilu */
    .animated-square {
        opacity: 0.5;
    }
    
    .square-1, .square-5 {
        width: 50px;
        height: 50px;
    }
    
    .square-2, .square-7 {
        width: 70px;
        height: 70px;
    }
    
    .square-3, .square-6 {
        width: 40px;
        height: 40px;
    }
    
    .square-4, .square-8 {
        width: 60px;
        height: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .simple-contact-form {
        padding: 1.5rem;
    }
}

/* Homepage Hero Final Design Override */
#home.hero {
    margin-top: 118px;
    min-height: clamp(620px, 84vh, 900px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: clamp(2rem, 3.5vw, 4rem) clamp(1rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3.5rem);
    background: radial-gradient(1200px 600px at 75% 15%, rgba(245, 156, 0, 0.18), transparent 60%),
                linear-gradient(130deg, #00254b 0%, #003a70 45%, #004f93 100%);
    background-size: 100% 100%;
    animation: none;
}

#home .hero-content {
    order: 1;
    max-width: 700px;
    text-align: left;
    justify-self: start;
}

#home .hero-content h1 {
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    line-height: 1.12;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

#home .hero-content p {
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    margin-bottom: 2rem;
    max-width: 56ch;
}

#home .hero-image-container {
    order: 2;
    position: relative;
    justify-self: end;
    margin-bottom: 0;
}

#home .hero-image-wrapper {
    width: min(520px, 42vw);
    aspect-ratio: 4 / 5;
    height: auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
    animation: floatImage 7s ease-in-out infinite;
}

#home .hero-decorative-image {
    border-radius: 22px;
}

#home .btn-primary {
    border-radius: 14px;
    padding: 0.95rem 2.2rem;
}

@media (max-width: 1024px) {
    #home.hero {
        grid-template-columns: 1fr;
        margin-top: 132px;
        min-height: auto;
        padding: 2.4rem 1.2rem 2rem;
        text-align: center;
    }

    #home .hero-content {
        order: 1;
        justify-self: center;
        text-align: center;
    }

    #home .hero-image-container {
        order: 2;
        justify-self: center;
        margin-top: 0.7rem;
    }

    #home .hero-image-wrapper {
        width: min(430px, 86vw);
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 768px) {
    #home.hero {
        margin-top: 140px;
        padding: 2rem 1rem 1.7rem;
        gap: 1.3rem;
    }

    #home .hero-content h1 {
        font-size: clamp(1.85rem, 8vw, 2.6rem) !important;
    }

    #home .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1.4rem;
    }

    #home .hero-image-wrapper {
        width: min(360px, 90vw) !important;
        border-radius: 18px;
    }

    #home .hero-decorative-image {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    #home.hero {
        margin-top: 125px;
        padding: 1.8rem 0.8rem 1.4rem;
        gap: 1rem;
    }

    #home .hero-image-wrapper {
        width: min(320px, 92vw) !important;
        border-radius: 14px;
    }

    #home .hero-decorative-image {
        border-radius: 14px;
    }
}
