body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #1a2a1a;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Перемикач мов */
.lang-switch {
    text-align: right;
    margin-bottom: 15px;
}
.lang-switch button {
    background: #ffffff;
    color: #1a2a1a;
    border: none;
    padding: 6px 12px;
    margin-left: 5px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.lang-switch button:hover {
    background: #ddd;
}

/* Шапка */
header {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px 20px;
    margin-bottom: 30px;
    text-align: center;
}
h1 {
    font-weight: 400;
    font-size: 3rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-text {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
    margin: 0 auto;
}

/* Секції */
section {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px 20px;
    margin-bottom: 30px;
    text-align: center;
}
h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Соцмережі */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.social-icons img {
    width: 40px;
    height: 40px;
    filter: invert(100%);
    transition: transform 0.3s;
}
.social-icons img:hover {
    transform: scale(1.2);
}

/* Напрямки */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card p {
    margin: 10px 0;
    font-size: 1.1rem;
    font-style: italic;
}
.card:hover {
    transform: scale(1.05);
}

/* Карта */
.map-container {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Кнопка навігації */
.nav-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #ffffff;
    color: #1a2a1a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.nav-button:hover {
    background: #ddd;
}

/* Футер */
footer {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
}
/* Телефон у контактах */
a[href^="tel"] {
    color: #ffffff;       /* білий текст */
    text-decoration: none; /* прибирає підкреслення */
    font-weight: bold;     /* робить жирним */
}

a[href^="tel"]:hover {
    color: #ddd;           /* світліший при наведенні */
}
