@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-Light.ttf') format('truetype');
  font-weight: light;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-Medium.ttf') format('truetype');
  font-weight: medium;
  font-style: normal;
}


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

body {
    font-family: 'Comfortaa', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f6fa;
    color: #222;
    line-height: 1.4;
}


.top-menu {
    position: sticky;
    top: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 1000;
}


.logo img {
    height: 36px;
}


.burger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
}


.lang-switch {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 200px;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
}

.lang-switch a {
    padding: 14px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.lang-switch a:hover {
    background: #f0f0f0;
}


.lang-switch.open {
    display: flex;
}


h1 {
    padding: 20px 16px 10px;
    font-size: 1.6rem;
}


.link-container {
    margin: 12px 16px;
}


.link-container a {
    display: block;
    width: 100%;
    padding: 24px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #222;
    font-size: 1.2rem;
    font-weight: 500;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}


.link-container a:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.container-title {
    display: block;
}


@media (min-width: 768px) {
    .link-container {
        max-width: 600px;
        margin: 16px auto;
    }

    h1 {
        max-width: 600px;
        margin: auto;
    }
}


@media (min-width: 1024px) {
    .link-container {
        max-width: 800px;
    }

    .link-container a {
        font-size: 1.3rem;
        padding: 28px;
    }
}









.opening-day-container {
    background: white;
    margin: 12px 16px;
    padding: 18px 20px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


.day-title {
    font-size: 1.2rem;
    font-weight: 600;
}


.hours-title {
    font-size: 1rem;
    color: #444;
}


.age-title {
    font-size: 0.95rem;
    color: #666;
}


.info-title {
    margin-top: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0a7cff;
}


.opening-day-container:active {
    transform: scale(0.99);
}


@media (min-width: 768px) {
    .opening-day-container {
        max-width: 600px;
        margin: 12px auto;
    }
}




.location-bar {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px 16px;
    font-size: 0.95rem;
    color: #555;
}

.location-icon {
    font-size: 1rem;
}


@media (min-width: 768px) {
    .location-bar {
        max-width: 600px;
        margin: auto;
    }
}








.posts-container {
    padding: 8px 0 24px;
}


.post-card {
    background: white;
    margin: 16px;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


.post-card img {
    width: 100%;
    height: auto;
    display: block;
}


.post-content {
    padding: 16px;
}


.post-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}


@media (min-width: 768px) {
    .posts-container {
        max-width: 600px;
        margin: auto;
    }
}


@media (min-width: 1024px) {
    .posts-container {
        max-width: 800px;
    }
}



.info-container {
    padding: 8px 0 24px;
}


.info-card {
    background: white;
    margin: 16px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


.info-card.urgent {
    border-left: 5px solid #ff5a5f;
}


.info-card h2 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: #222;
}


.subtitle {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 14px;
}


.contact {
    margin: 10px 0;
}

.contact a {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a73e8;
    word-break: break-word;
}


.description {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}


.availability {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #555;
}


@media (min-width: 768px) {
    .info-container {
        max-width: 700px;
        margin: auto;
    }
}