/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS proměnné pro konzistentní design */
:root {
    --color-bg: radial-gradient(ellipse at top, #f0f8f0, #f7fbf7);
    --color-bg-alt: linear-gradient(135deg, #f2f5f2 0%, #e8f5e8 100%);
    --color-surface: rgba(255, 255, 255, 0.9);
    --color-surface-glass: rgba(255, 255, 255, 0.7);
    --color-border: #e2e7e2;
    --color-text: #2e2f2e;
    --color-text-muted: #5e645e;
    --color-primary: #2d5a27;
    --color-primary-accent: #3f7a47;
    --color-primary-soft: #e5f3e7;
    --color-gradient: linear-gradient(135deg, #2d5a27, #4a7c59);
    --color-gradient-soft: linear-gradient(135deg, rgba(45,90,39,0.1), rgba(74,124,89,0.1));
    --radius-xs: 4px;
    --radius-s: 8px;
    --radius-m: 14px;
    --radius-l: 20px;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-s: 0 2px 6px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.06);
    --shadow-m: 0 6px 16px rgba(0,0,0,0.10), 0 12px 24px rgba(0,0,0,0.06);
    --shadow-glow: 0 0 20px rgba(45,90,39,0.15);
    --transition: 0.3s cubic-bezier(.4,.15,.2,1);
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Dekorativní pozadí prvky */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45,90,39,0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(74,124,89,0.05) 0%, transparent 30%),
        radial-gradient(circle at 40% 40%, rgba(45,90,39,0.03) 0%, transparent 40%);
    z-index: -2;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(1deg); }
    66% { transform: translate(-5px, 5px) rotate(-0.5deg); }
}

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

/* Navigace */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--color-primary);
    white-space: nowrap;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: .5px;
    padding: .75rem .2rem;
    transition: var(--transition);
    position: relative;
}
.nav-menu a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--color-primary); }
.nav-menu a:hover::before { width: 60%; }
.nav-menu a.active { color: var(--color-primary); }
.nav-menu a.active::before { width: 60%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-m);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,39,0.15), rgba(0,0,0,0.15));
    border-radius: var(--radius-l);
    pointer-events: none;
}

/* Floating elementy */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatLeaf 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes floatLeaf {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(10px, -15px) rotate(5deg) scale(1.1); }
    50% { transform: translate(-5px, -25px) rotate(-3deg) scale(0.9); }
    75% { transform: translate(15px, -10px) rotate(8deg) scale(1.05); }
}

/* Sekce */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* O nás */
.about {
    background: var(--color-bg-alt);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    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='%232d5a27' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.4;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature {
    text-align: center;
    padding: 1.6rem 1.4rem 1.8rem;
    background: var(--color-surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--color-gradient-soft);
    transform: rotate(45deg);
    opacity: 0;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-m), var(--shadow-glow);
    border-color: transparent;
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon,
.feature h3,
.feature p {
    position: relative;
    z-index: 2;
}
/* Služby */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Galerie */
.gallery {
    background: var(--color-bg-alt);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d5a27' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; /* Vrátíme mezery kvůli rámečkům */
    border-radius: 20px;
    overflow: visible; /* Změníme na visible pro rámečky */
    padding: 1rem;
}

/* Kreativnější uspořádání galerie */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 16/9;
    border: 4px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.gallery-item:nth-child(2) {
    grid-row: span 2;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.25);
}

.gallery-item:nth-child(3) {
    grid-row: span 3;
    border: 4px double var(--color-accent);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.35);
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
    border: 3px dashed var(--color-secondary);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

.gallery-item:nth-child(5) {
    grid-row: span 3;
    border: 4px ridge var(--color-accent);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.gallery-item:nth-child(5) {
    grid-row: span 3;
}

.gallery-item:nth-child(6) {
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    aspect-ratio: 16/9;
}

.gallery-item:nth-child(6) {
    aspect-ratio: 1/1;
}

@media (max-width: 768px) {
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
    
    .gallery-item:nth-child(4) {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px; /* Zaoblené rohy pro rámečky */
    overflow: hidden;
    transition: var(--transition);
    aspect-ratio: 1; /* Čtvercový formát */
    border: 3px solid transparent; /* Transparentní border pro gradient */
    background: linear-gradient(var(--color-surface), var(--color-surface)) padding-box,
                linear-gradient(135deg, var(--color-accent), var(--color-secondary)) border-box;
    transform: translateY(20px);
    opacity: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 8px; /* Vnitřní padding pro rámečky */
}

.gallery-item.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:hover { 
    transform: scale(1.03) translateY(-5px);
    z-index: 10; /* Zvýšíme z-index pro hover efekt */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 3px solid var(--color-accent);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(1) saturate(1);
    border-radius: 10px; /* Zaoblené rohy pro samotný obrázek */
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Kontakt */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2d5a27;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2d5a27;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-card {
    background: var(--color-surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.1rem 1.8rem 2.3rem;
    border-radius: var(--radius-m);
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transform: translateY(20px);
    opacity: 0;
}

.service-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(63,122,71,0.12), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--color-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: var(--shadow-m), var(--shadow-glow);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

/* Animace ikon služeb */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

    /* --- Refaktoring formulářových prvků --- */

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d5a27;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-s);
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-soft);
}

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

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.submit-button {
    width: 100%;
    background: var(--color-gradient);
    color: white;
    padding: 15px 18px;
    border: none;
    border-radius: var(--radius-s);
    font-size: 1rem;
    letter-spacing: .5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-s);
}
.submit-button:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.submit-button:active { transform: translateY(0); box-shadow: var(--shadow-xs); }


.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

.form-success.show {
    display: block;
}

/* Footer */
.footer {
    background: #2d5a27;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b8d4b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a7c59;
    color: #b8d4b8;
}

/* Responzivní design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-content {
        order: 2;
        padding: 2rem 20px 0;
    }

    .hero-image {
        order: 1;
        padding: 0 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        flex-direction: row;
        gap: 1rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .nav-container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Animace při načítání s vylepšenými efekty */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.5s var(--animation-bounce) forwards;
}

/* Dekorativní prvky */
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Vylepšené hover efekty pro CTA button */
.cta-button {
    display: inline-block;
    background: var(--color-gradient);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-s);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-m), var(--shadow-glow);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* Smooth scrolling pro starší prohlížeče */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}