:root {
    --bg: #f9fafb;
    --text: #1a1a1a;
    --accent: #1abc9c;
    --accent-dark: #159a83;
    --light: #e6f2ef;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@font-face {
    font-family: 'molengo';
    src: url('/fonts/Molengo-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'molengo', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

.site-header {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.header-contact a {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: var(--accent-dark);
}

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh);
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-glass {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-glass h1 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    margin-bottom: 1rem;
}

.hero-glass p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.content section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.content section:nth-child(even) {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1 1 50%;
}

.text-block h2 {
    font-size: 1.9rem;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.text-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.text-block ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    list-style: none;
}

.text-block li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-block i {
    color: var(--accent);
    padding-right: 2px;
}

.image-block {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.image-block img {
    width: 100%;
    max-width: 420px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.image-block img:hover {
    transform: scale(1.03);
}



.contattami a {
    color: var(--text);
    text-decoration: none;
}

.contattami a:hover {
    text-decoration: underline;
}

.site-footer {
    background: #1c1f1e;
    color: #ddd;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.footer-about h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.footer-contact i {
    padding-right: 2px;
}

@media (max-width: 768px) {
    .content section {
        flex-direction: column;
    }

    .image-block img {
        width: 100%;
        height: auto;
    }

    .site-header {
        padding: 1rem 1.2rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .header-contact a {
        font-size: 1.4rem;
    }

    .hero-glass {
        padding: 3rem 1rem;
    }

    .container {
        padding: 2rem 1rem 0rem 1rem;
    }
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0;
  font-size: 1.05rem;
}

.menu-list li span:first-child {
  color: var(--text);
  font-weight: 500;
}

.menu-list li span:last-child {
  color: var(--accent-dark);
  font-weight: 600;
  text-align: right;
}

@media (max-width: 768px) {
  .menu-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-list li span:last-child {
    margin-top: 0.3rem;
    text-align: left;
  }
}
