* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
    font-display: swap;
}

/* Navigace */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0rem 0;
    transition: all 0.3s ease;
    background: #535848;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 130px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 23px;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.underline-hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 3px;
    width: 0;
    background-color: #f5d6a1;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.underline-hover:hover a {
    color: #f5d6a1;
    transform: translateY(-3px);
}

/* Dropdown styly */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #535848;
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #535848;
    min-width: 180px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    list-style: none;
}

.dropdown-submenu:hover .submenu {
    display: block;
}

.dropdown-content > li > a,
.submenu > li > a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.dropdown-content > li > a:hover,
.submenu > li > a:hover {
    background-color: #6e7360;
    transform: none;
}

.dropdown-submenu > a {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '▸';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-image {
    position: absolute;
    width: 100vw;
    height:100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    max-width: 35%;
    padding: 2rem;
    border-radius: 15px;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-content .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3e4233;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-content .cta-button:hover {
    background-color: #86855e;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-content .cta-button2 {
    display: inline-block;
    margin-left: 10px;
    padding: 15px 45px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-content .cta-button2:hover {
    background-color: #d8baa5;
    color: white;
    transform: translateY(-2px);
}

.floating {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: floatAnim 12s infinite ease-in-out;
}

.floating img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.5;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-80px); }
}

@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(100px); }
}

@keyframes floatCircle {
    0%   { transform: translate(0,0); }
    25%  { transform: translate(80px,-80px); }
    50%  { transform: translate(0,-160px); }
    75%  { transform: translate(-80px,-80px); }
    100% { transform: translate(0,0); }
}

@keyframes floatZigzag {
    0%   { transform: translate(0,0); }
    20%  { transform: translate(100px,-40px); }
    40%  { transform: translate(-80px,-100px); }
    60%  { transform: translate(120px,40px); }
    80%  { transform: translate(-100px,80px); }
    100% { transform: translate(0,0); }
}

@keyframes floatRandom {
    0%   { transform: translate(0,0); }
    25%  { transform: translate(-120px,30px) rotate(10deg); }
    50%  { transform: translate(60px,-90px) rotate(-10deg); }
    75%  { transform: translate(-40px,50px) rotate(5deg); }
    100% { transform: translate(0,0); }
}

.floating:nth-child(1) { top: 30%; left: 5%; animation: floatUpDown 12s infinite ease-in-out; }
.floating:nth-child(2) { top: 25%; left: 70%; animation: floatLeftRight 15s infinite ease-in-out; }
.floating:nth-child(3) { top: 75%; left: 17%; animation: floatCircle 18s infinite linear; }
.floating:nth-child(4) { top: 70%; left: 80%; animation: floatZigzag 20s infinite ease-in-out; }
.floating:nth-child(5) { top: 55%; left: 60%; animation: floatRandom 22s infinite ease-in-out; }

/* Sekce nabídka */
.nabidka-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 50px auto 50px; 
    width: 90%;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.nabidka-cta-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: #86855e;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nabidka-cta-button:hover {
    background-color: #3e4233;
    transform: translateY(-2px);
}

.nabidka-title{
    font-size: 3rem;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    color: rgb(0, 0, 0);
    font-weight: 400;
}

.nabidka-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 50px;
}

.nabidka-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.nabidka-image {
    height: 400px;
    overflow: hidden;
}

.nabidka-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.nabidka-card:hover .nabidka-image img {
    transform: scale(1.1);
}

.nabidka-content {
    padding: 30px;
    text-align: center;
}

.nabidka-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.nabidka-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.nabidka-icon {
    font-size: 3rem;
    color: #86855e;
    margin-bottom: 20px;
}

/* Instagram základní styly */
.instagram {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffff;
    padding: 60px 100px 50px;
    text-align: center;
}

.instagram-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.instagram-media {
    width: 100% !important;
    max-width: 800px !important;
    min-width: auto !important;
}

/* sekce zmrzlina */
.zmrzlina-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #86855e;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 30px;
}

.zmrzlina h1 {
    text-align: center;
    color: white;
    margin-bottom: 10px;
    font-size: 3.2rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.zmrzlina-uvod{
    text-align: center;
    color: #f1eeee;
    margin-bottom: 40px;
    font-size: 1rem;
    font-weight: 400;
}

.content-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.content-item:last-child {
    margin-bottom: 0;
}

.content-item.left-image {
    flex-direction: row;
}

.content-item.right-image {
    flex-direction: row-reverse;
}

.content-image {
    flex: 0 0 350px;
    height: 450px;
    width: 350px;
    border-radius: 8px;
    margin: 0 20px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.content-text {
    flex: 1;
    color: white;
    line-height: 1.6;
}

.content-text h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    color: #fff;
}

.content-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}


/* sekce FAQ */
.faq {
    background-color: #86855e;
    padding: 3rem 0;
}

.wrapper {
    max-width: 50%;
    margin: auto;
}

.wrapper h1 {
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 400;
}

.faq-container {
    margin-bottom: 25px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-dotazy {
    background-color: #fff;
    color: #111;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    padding: 1.5rem 2rem;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background 0.3s;
}

.faq-dotazy:hover {
    background-color: #f9f9f9;
}

.faq-dotazy i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-dotazy.active i {
    transform: rotate(180deg);
}

.pannel {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.pannel.open {
    padding: 1rem 2rem;
}

.pannel p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem 0;
    margin-bottom: 2rem;
}

/* Kontakt sekce */
.contact {
    background-color: #f7f7f7;
    padding: 80px 40px;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #000000;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    color: #696842;
    margin-right: 20px;
    padding-top: 5px;
    width: 30px;
    text-align: center;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.4;
}

.contact-img img{
    height: 500px;
    border-radius: 15px;
    width: 100%;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    height: 600px;
    width: 100%;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.contact-form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: fit-content;
}

.contact-form-header {
    background: linear-gradient(135deg, #86855e 0%, #696842 100%);
    text-align: center;
    padding: 30px 20px;
    color: white;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-form-header p {
    opacity: 0.9;
    font-size: 15px;
}

.contact-form-content {
    padding: 40px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form-group {
    margin-bottom: 25px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.contact-form-group .required {
    color: #e74c3c;
}

.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group input[type="tel"],
.contact-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-group input[type="text"]:focus,
.contact-form-group input[type="email"]:focus,
.contact-form-group input[type="tel"]:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #86855e;
    box-shadow: 0 0 0 3px rgba(134, 133, 94, 0.1);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #86855e 0%, #696842 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(134, 133, 94, 0.3);
}

.contact-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-agreement {
    margin: 25px 0;
    font-size: 14px;
}

.contact-agreement label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 0;
}

.contact-agreement input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 3px;
    width: auto;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffff;
    padding: 60px 40px 30px;
}

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

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffff;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.instagram-icon {
    width: 37px;
    height: auto;
    vertical-align: middle;
    transition: opacity 0.3s ease;
}

.instagram-icon:hover {
    opacity: 0.8;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #222;
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #86855e;
    color: #ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONZIVNÍ ÚPRAVY - MEDIA QUERIES
   ============================================ */

/* Tablety a menší - do 1024px */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    .hero-content {
        max-width: 50%;
        left: 30px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .wrapper {
        max-width: 70%;
    }
    
    .floating {
        width: 90px;
        height: 90px;
    }
}

/* Tablety a menší - do 768px */
@media screen and (max-width: 768px) {
    /* Navigace */
    .nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .logo img {
        width: 100px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #535848;
        width: 100%;
        padding: 2rem;
        height: 100%;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 20px;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(255,255,255,0.1);
        box-shadow: none;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-submenu .submenu {
        position: static;
        margin-left: 20px;
        margin-top: 10px;
    }
    
    /* Hero sekce */
    .hero-content {
        max-width: 80%;
        left: 20px;
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        white-space: normal;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .cta-button,
    .hero-content .cta-button2 {
        padding: 12px 25px;
        font-size: 1rem;
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
    }
    
    .floating {
        width: 70px;
        height: 70px;
    }
    
    /* Nabídka */
    .nabidka-title {
        font-size: 2.2rem;
    }
    
    .nabidka-grid {
        width: 95%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .nabidka-image {
        height: 300px;
    }
    
    .nabidka-content {
        padding: 20px;
    }
    
    /* Instagram */
    .instagram {
        padding: 40px 20px;
    }
    
    /* Zmrzlina */
    .zmrzlina-container {
        padding: 20px;
        margin: 20px;
    }
    
    .zmrzlina h1 {
        font-size: 2.2rem;
    }
    
    .content-item {
        flex-direction: column !important;
        padding: 15px;
    }
    
    .content-image {
        flex: 1;
        width: 100%;
        height: 300px;
        margin: 0 0 20px 0;
    }
    
    .content-text h3 {
        font-size: 1.3rem;
    }
    
    /* Otevírací doba */
    .oteviraci-doba {
        padding: 60px 20px;
    }
    
    .oteviraci-doba h2 {
        font-size: 2.2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .day-box {
        padding: 25px 15px;
        font-size: 1.2rem;
    }
    
    .special-box {
        font-size: 1.2rem;
    }
    
    /* FAQ */
    .wrapper {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .wrapper h1 {
        font-size: 2rem;
    }
    
    .faq-dotazy {
        font-size: 0.95rem;
        padding: 1.2rem 1.5rem;
    }
    
    /* Kontakt */
    .contact {
        padding: 60px 20px;
    }
    
    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-item {
        margin-bottom: 25px;
    }
    
    .contact-icon {
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
    
    .contact-img img {
        height: 350px;
    }
    
    .map {
        height: 350px;
        margin-top: 30px;
    }
    
    .contact-form-content {
        padding: 30px 20px;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
}

/* Mobilní telefony - do 480px */
@media screen and (max-width: 480px) {
    /* Hero */
    .hero-content {
        max-width: 90%;
        left: 15px;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content .cta-button,
    .hero-content .cta-button2 {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .floating {
        display: none;
    }
    
    /* Navigace */
    .logo img {
        width: 80px;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    /* Nabídka */
    .nabidka-title {
        font-size: 1.8rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .nabidka-grid {
        grid-template-columns: 1fr;
        width: 95%;
    }
    
    .nabidka-card {
        margin-bottom: 30px;
    }
    
    .nabidka-image {
        height: 250px;
    }
    
    .nabidka-content h3 {
        font-size: 1.3rem;
    }
    
    .nabidka-content p {
        font-size: 0.95rem;
    }
    
    .nabidka-icon {
        font-size: 2.5rem;
    }
    
    .nabidka-cta-button {
        padding: 12px 35px;
        font-size: 1rem;
    }
    
    /* Instagram */
    .instagram {
        padding: 30px 15px;
    }
    
    /* Zmrzlina */
    .zmrzlina-container {
        padding: 15px;
        margin: 15px;
        border-radius: 8px;
    }
    
    .zmrzlina h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .zmrzlina-uvod {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .content-item {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .content-image {
        height: 250px;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
    
    /* Otevírací doba */
    .oteviraci-doba {
        padding: 50px 15px;
    }
    
    .oteviraci-doba h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .day-box {
        padding: 20px 15px;
        font-size: 1.1rem;
    }
    
    .day-box span {
        font-size: 1rem;
    }
    
    .special-box {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .special-box span {
        font-size: 1rem;
    }
    
    /* FAQ */
    .faq {
        padding: 2rem 0;
    }
    
    .wrapper {
        max-width: 95%;
        padding: 0 10px;
    }
    
    .wrapper h1 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .faq-container {
        margin-bottom: 20px;
    }
    
    .faq-dotazy {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
    }
    
    .faq-dotazy i {
        font-size: 1rem;
    }
    
    .pannel p {
        font-size: 0.9rem;
    }
    
    /* Kontakt */
    .contact {
        padding: 50px 15px;
    }
    
    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-img img {
        height: 250px;
    }
    
    .map {
        height: 300px;
        margin-top: 20px;
    }
    
    .contact-form-header {
        padding: 25px 15px;
    }
    
    .contact-form-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-form-header p {
        font-size: 14px;
    }
    
    .contact-form-content {
        padding: 25px 15px;
    }
    
    .contact-form-group label {
        font-size: 14px;
    }
    
    .contact-form-group input[type="text"],
    .contact-form-group input[type="email"],
    .contact-form-group input[type="tel"],
    .contact-form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .contact-form-group textarea {
        min-height: 100px;
    }
    
    .contact-submit-btn {
        padding: 15px 25px;
        font-size: 15px;
    }
    
    .contact-agreement {
        font-size: 13px;
    }
    
    /* Footer */
    footer {
        padding: 50px 20px 25px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    /* Back to top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Extra malé mobily - do 360px */
@media screen and (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .nabidka-title {
        font-size: 1.5rem;
    }
    
    .oteviraci-doba h2,
    .contact-title {
        font-size: 1.5rem;
    }
    
    .wrapper h1 {
        font-size: 1.4rem;
    }
    
    .zmrzlina h1 {
        font-size: 1.5rem;
    }
}