/* NAVBAR – açık zemin, koyu yeşil yazı */
.navbar-forest {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.navbar-forest .navbar-brand,
.navbar-forest .nav-link {
    color: #1b5e20 !important; /* koyu yeşil */
    font-weight: 500;
}

.navbar-forest .nav-link:hover,
.navbar-forest .nav-link:focus {
    color: #2e7d32 !important; /* biraz daha canlı yeşil */
}

/* HERO başlık & açıklama – koyu yeşil, gölge yok */
.hero-heading h1,
.hero-heading p {
    color: #1b5e20;
    text-shadow: none;
}

/* --- WhatsApp Floating Button --- */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.35);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Popup Balon */
.whatsapp-popup {
    position: fixed;
    bottom: 95px;
    right: 20px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0,0,0,0.20);
    border-left: 4px solid #25d366;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    z-index: 9998;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
}

.whatsapp-popup.show {
    opacity: 1;
    transform: translateY(0px);
}


/* Footer konum alanı – kart tasarım */
.footer-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5f5f5;
    text-decoration: none;
    max-width: 100%;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-location-badge:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.footer-location-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    color: #1b5e20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-location-text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
}

/* Logo boyutu */
.site-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Mobil uyum: logo + yazı doğru orantılı küçülür */
@media (max-width: 576px) {
    .site-logo {
        height: 32px;
    }
}
