/*
 Theme Name:   ASTMED Holographic Theme
 Theme URI:    https://astmedikal.com
 Author:       ASTMED Team
 Author URI:   https://astmedikal.com
 Description:  Holographic and 3D design theme for ASTMED
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  astmed
*/
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0A1C2B, #1A3C3C);
    color: #00D4FF;
    overflow-x: hidden;
}

.holo-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 28, 43, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
}

.holo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo span {
    color: #00D4FF;
    font-size: 28px;
    text-shadow: 0 0 10px #00D4FF, 0 0 20px #00D4FF;
}

.contact-info {
    color: #00FF99;
    font-size: 14px;
    text-shadow: 0 0 5px #00FF99;
    margin-right: 20px;
}

.holo-nav {
    display: block !important;
}

.primary-menu {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap !important;
    white-space: nowrap; /* Menülerin satırda kalmasını zorlar */
}

.primary-menu li {
    margin-left: 15px;
    display: inline-block !important;
}

.primary-menu a {
    color: #00D4FF;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    text-shadow: 0 0 5px #00D4FF;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block !important;
}

.primary-menu a:hover {
    background: #A100FF;
    text-shadow: 0 0 10px #A100FF;
    transform: translateY(-3px);
    box-shadow: 0 0 15px #A100FF;
}

/* Elementor Nav Menu Widget için Ekstra CSS */
.elementor-nav-menu--main .elementor-nav-menu__container {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.elementor-nav-menu--main .elementor-nav-menu__container .elementor-nav-menu--dropdown {
    display: none; /* Dropdown menüleri gizle, sadece yatay menü kalsın */
}

.elementor-nav-menu--main .elementor-nav-menu__container .menu-item {
    margin-left: 15px !important;
    display: inline-block !important;
}

/* Elementor Hero Bölümü için Holografik Efektler */
.elementor-section.elementor-top-section {
    position: relative;
    overflow: hidden;
}

.elementor-section.elementor-top-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518611012118-69661456f98d') center/cover;
    animation: pulse 10s infinite;
    filter: brightness(0.7);
    transform: scale(1.1);
    z-index: -1;
}

@keyframes pulse {
    0% { opacity: 0.8; transform: scale(1.1); }
    50% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.elementor-heading-title {
    text-shadow: 0 0 15px #00D4FF, 0 0 30px #00D4FF, 0 0 60px #00D4FF;
    animation: glow 2s infinite;
    color: #fff;
}

@keyframes glow {
    0% { text-shadow: 0 0 15px #00D4FF, 0 0 30px #00D4FF; }
    50% { text-shadow: 0 0 30px #00D4FF, 0 0 60px #00D4FF, 0 0 90px #00D4FF; }
    100% { text-shadow: 0 0 15px #00D4FF, 0 0 30px #00D4FF; }
}

.elementor-sub-heading {
    color: #A100FF;
    text-shadow: 0 0 10px #A100FF;
}

.elementor-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00D4FF;
    color: #00D4FF;
    text-shadow: 0 0 5px #00D4FF;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.elementor-button:hover {
    background: #A100FF;
    border-color: #A100FF;
    transform: translateY(-5px);
    box-shadow: 0 0 15px #A100FF;
}

.elementor-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.elementor-button:hover::before {
    left: 100%;
}

/* Diğer Bölümler için Holografik Efektler */
.holo-services {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.holo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #00D4FF;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.holo-card:hover {
    transform: translateY(-10px) rotateX(10deg);
    box-shadow: 0 0 20px #00D4FF;
}

.holo-card h3 {
    color: #00FF99;
    text-shadow: 0 0 5px #00FF99;
}

.holo-footer {
    background: rgba(10, 28, 43, 0.9);
    padding: 20px;
}

.footer-contact h3, .footer-contact p {
    text-shadow: 0 0 5px #00D4FF;
}

.footer-map iframe {
    border: none;
    width: 100%;
    height: 200px;
}