/*
Theme Name: Twenty Twenty-Four
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.0
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfour
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

.hoverable-call, .hoverable-location, .hoverable-hours, .hoverable-mail {
    position: relative;
}

/* Show tooltip on hover */
.hoverable-call:hover::after, .hoverable-location:hover::after, .hoverable-hours:hover::after, .hoverable-mail:hover::after {
    opacity: 1;
}

/* Tooltip styling */
.hoverable-call::after, .hoverable-location::after, .hoverable-hours::after, .hoverable-mail::after {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    background: #111111;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    opacity: 0;  /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    width: max-content;
    display: block;
    white-space: nowrap;
}

.hoverable-call::after {
    content: "Tel: (+374) 95 277 225";
}

.hoverable-location::after {
    content: "33a Moskovyan, Yeravan";
}

.hoverable-hours::after {
    content: "Monday to Saturday 09:00 - 21:00";
}

.hoverable-mail::after {
    content: "mirzoyan.clinic@mail.ru";
}

.menu-container {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
	margin-block-start: 0.3rem !important;
}

/* Dropdown Button */
.dropbtn {
    background-color: #37505d;
    color: #ebebef;
    border: none;
    cursor: pointer;
    border-radius: 5px;
	box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);
	
	font-family: var(--wp--preset--font-family--system-serif);
    font-size: var(--wp--preset--font-size--small);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 0;
	padding: 1rem 2.2rem;
    text-decoration: none;
    text-transform: none;
}

.dropbtn:hover, .dropdown-content a:hover {
    background-color: #1c2930;
    border-color: #1c2930;
    color: #ebebef;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #37505d;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 0;
	margin: 0;
	z-index: 25
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: #ebebef;
    display: block;
    text-decoration: none;
	
	font-family: var(--wp--preset--font-family--system-serif);
    font-size: var(--wp--preset--font-size--small);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 0;
    padding: 1rem 2.2rem;
    text-transform: none;
}


/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

