:root {
    --dark: #0f172a;
    --accent: #64748b;
    --accent2: #6366f1;
    --bg: #f0f7ff;
    --card: #fff;
    --text: #1e293b;
    --muted: #64748b;
    --text-invert: #fff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;

    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

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

header {
    background: var(--card);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
}

.logo-img {
    height: 65px;
    width: 65px;
    object-fit: contain;
    border-radius: 8px;
}

.brand span {
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--dark), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.hero {
    background: linear-gradient(135deg, var(--dark), #1a2847);
    color: #fff;
    padding: 80px 20px;

    border-radius: 0px;
    margin: 32px 0;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 5px transparent;
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-scale {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes border-glow {
    0%,
    100% {
        border-color: rgba(0, 217, 255, 0.3);
    }

    50% {
        border-color: rgba(99, 102, 241, 0.6);
    }
}

@keyframes shimmer-text {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.floating-orb {
    display: none;
}

.orb1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -100px;
    right: -100px;
    animation-delay: 0s;
    color: var(--accent);
}

.orb2 {
    width: 200px;
    height: 200px;
    background: var(--accent2);
    top: 50%;
    left: 10%;
    animation-delay: 2s;
    color: var(--accent2);
}

.orb3 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 20%;
    right: 15%;
    animation-delay: 4s;
    color: var(--accent);
}

.kurenie-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 20px 0;
}

.kurenie-grid > .img-span {
    display: flex;
    flex-direction: row;
    gap: 70px;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
}
.kurenie-grid > .img-span > img {
    width: 210px;
    height: 210px;
    object-fit: contain;
    border-radius: 12px;
}
.btn-primary {
    animation: glow 3s ease-in-out infinite;
}

.section-title::after {
    animation: pulse 2s ease-in-out infinite;
}

.service-card {
    animation: slideIn 0.6s ease-out both;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.stat {
    animation: fadeIn 1s ease-out;
}

.about-list li {
    transition: all 0.3s ease;
    transform: translateX(0);
}

.about-list li:hover {
    transform: translateX(8px);
    color: var(--accent);
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff, rgba(0, 217, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #00b8cc);
    color: var(--text-invert);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 800;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
}

.hero-card h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    opacity: 0.9;
}

.hero-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 8px;
}

.hero-card strong {
    color: var(--text-invert);
    font-weight: 700;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--dark);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    margin: 20px auto 0;
    border-radius: 3px;
    animation: pulse-scale 2s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--card);
    padding: 36px;
    border-radius: 16px;
    border: 2px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: var(--accent);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1),
        rgba(240, 247, 255, 0.8)
    );
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    animation: pulse 1s ease-in-out;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

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

.about-text p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-top: 24px;
}

.about-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text);
    transition: all 0.3s ease;
    cursor: default;
}

.about-list li:hover {
    padding-left: 40px;
    color: var(--accent);
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.about-list li:hover::before {
    transform: scale(1.3);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 24px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-8px);
    background: linear-gradient(
        135deg,
        rgba(0, 217, 255, 0.1),
        rgba(99, 102, 241, 0.05)
    );
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat:hover .stat-num {
    font-size: 2.8rem;
    filter: brightness(1.2);
}

footer {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 32px 20px;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #00b8cc);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float2 3s ease-in-out infinite;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.12);
    box-shadow: 0 16px 40px rgba(0, 217, 255, 0.6);
    animation: none;
}

.back-to-top:active {
    transform: scale(0.95);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent2),
        var(--accent)
    );
    width: 0%;
    transition: width 0.1s ease;
    z-index: 999;
}

/* Smooth animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero {
    animation: zoomIn 0.6s ease-out;
}

.section {
    animation: fadeIn 0.6s ease-out;
}

/* Enhanced Parallax Effect */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,217,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: slideIn 20s linear infinite;
    pointer-events: none;
}

.service-card {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    padding: 20px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.breadcrumb a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--muted);
    transition: width 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.breadcrumb a:hover::after {
    width: 100%;
}

.herox {
    background: linear-gradient(135deg, rgb(44 39 104), rgb(30 25 34));
    color: #fff;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.15);
}

.herox h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.herox p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.content {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    line-height: 1.8;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.08);
}

.content h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 16px;
}

.content h2:first-of-type {
    margin-top: 0;
}

.content ul {
    margin: 16px 0 16px 24px;
    list-style-position: inside;
}

.content li {
    margin-bottom: 12px;
    color: var(--text);
}

.content p {
    color: var(--text);
    margin-bottom: 16px;
}

.content a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.content h2.eff {
    border-left: 4px solid var(--accent);
    padding-left: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.content h2:hover.eff {
    padding-left: 24px;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.content h2::before.eff {
    content: "";
    position: absolute;
    left: -8px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.content h2:hover::before.eff {
    opacity: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    animation: fadeIn 0.8s ease-out;
}

.contact-card {
    background: linear-gradient(
        135deg,
        var(--card) 0%,
        rgba(0, 217, 255, 0.05) 100%
    );
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    animation: slideIn 0.8s ease-out;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-8px);
    border-color: var(--accent);
}

.contact-card h3 {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.contact-card p {
    margin: 10px 0;
    line-height: 1.8;
    color: var(--text);
    font-size: 1.2rem;
}

.contact-card a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

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

.location-info p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hours-list {
    list-style: none;
    margin: 24px 0;
}

.hours-list li {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--dark);
}

.hours-list .time {
    color: var(--text);
    font-weight: 700;
}

.middle {
    flex: 1; /* pushes footer to bottom */
}

img {
    mix-blend-mode: multiply;
}

@media (max-width: 1000px) {
    .main-menu {
        display: none;
    }

    .mobilemenubutton {
        display: block !important;
    }
    .kurenie-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .kurenie-grid > .img-span {
        flex-direction: column;

        gap: 0px;
    }

    .kurenie-grid > .img-span > img {
        height: 100px;
    }

    .herox h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .herox p {
        text-align: center;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

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

    .nav {
        gap: 14px;
        flex-wrap: wrap;
    }

    nav {
        gap: 8px;
    }

    nav a {
        font-size: 0.8rem;
        padding: 6px 4px;
    }

    .wrap {
        padding: 0 16px;
    }

    .hero::before {
        display: none;
    }

    .orb {
        opacity: 0.08;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
    }

    .logo-img {
        height: 65px;
        width: 65px;
    }

    .brand span {
        font-size: 1.5rem;
    }

    .location-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .nav {
        flex-direction: column;
        gap: 8px;
    }

    nav {
        gap: 4px;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 10px;
        background: white;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        width: auto;
        z-index: 998;
        min-width: 150px;
    }

    nav a {
        font-size: 0.75rem;
        white-space: nowrap;
        padding: 8px 12px;
        display: block;
        text-align: left;
        border-radius: 4px;
        transition: background 0.2s;
    }

    nav a:hover {
        background: #f5f5f5;
    }

    .brand {
        font-size: 1.1rem;
        gap: 10px;
    }

    .logo-img {
        height: 50px;
        width: 50px;
        border-width: 2px;
    }

    .brand span {
        font-size: 1.2rem;
    }

    .wrap {
        padding: 0 12px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px;
        width: 100%;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }

    footer {
        padding: 24px 12px;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .location-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* -------------------------------------------------------------------------------------------------------------- */
.mobilemenubutton {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hamburger lines */
.mobilemenubutton span {
    position: absolute;
    width: 26px;
    height: 2px;
    background: #000;
    transition: 0.25s ease;
}

.mobilemenubutton span:nth-child(1) {
    transform: translate(-12px, -8px);
}

.mobilemenubutton span:nth-child(2) {
    transform: translate(-12px, 0);
}

.mobilemenubutton span:nth-child(3) {
    transform: translate(-12px, 8px);
}

.mobilemenubutton {
    display: none;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    color: #111;
    display: none;
    flex-direction: column;
    z-index: 9999;

    font-size: 1.5rem;
}

.mobile-menu.open {
    display: flex;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;

    border-bottom: 1px solid #333;
}

.menu-header button {
    background: none;
    color: #111;

    border: none;
    cursor: pointer;
}

.menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-content a {
    color: #333;
    text-decoration: none;
}

.has-sub .sub {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
    border-left: 2px solid #333;
}

.has-sub.open .sub {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* -------------------------------------------------------------------------------------------------------------- */
