/* Layout Global Styles */

/* Ensure proper font rendering globally */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Body font with Turkish character support */
body {
    font-family: 'Inter', 'Poppins', 'Noto Sans', 'Segoe UI', 'Arial Unicode MS', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "calt" 1, "kern" 1;
    line-height: 1.6;
    letter-spacing: 0.3px;
    padding-top: 0;
    margin: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
 font-family: 'Poppins', 'Inter', 'Noto Sans', 'Segoe UI', sans-serif;
    font-feature-settings: "liga" 1, "calt" 1, "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Form inputs */
input, textarea, select, button, .btn {
  font-family: 'Inter', 'Poppins', 'Noto Sans', 'Segoe UI', sans-serif !important;
    font-feature-settings: "liga" 1, "calt" 1, "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all text respects the font */
p, span, a, label, li, div {
 font-family: 'Inter', 'Poppins', 'Noto Sans', 'Segoe UI', 'Arial Unicode MS', sans-serif;
}

/* Full-width header styling */
#header {
    position: static;
    top: auto;
left: auto;
    right: auto;
    width: 100%;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

/* Modern navbar styling */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e9ecef;
    padding: 0.8rem 0;
    margin: 0;
    width: 100%;
}

.wpo-site-header {
    width: 100%;
 margin: 0;
    padding: 0;
}

.navigation {
    width: 100%;
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    color: #495057 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0d6efd !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Adjust page wrapper to account for static header */
.page-wrapper {
    margin-top: 0;
    padding-top: 0;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer[style*="grid-template-columns"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 575px) {
    .footer[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===== FOOTER: Dikey border-left override ===== */
.footer-common .item:nth-child(2),
.footer-section-s1 .item:nth-child(2) {
    border-left: none !important;
    padding-left: 0 !important;
}

/* ===== FOOTER LOWER ICONS ===== */
.footer-lower-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-lower-icon:hover {
    background: rgba(201,169,110,0.18);
    border-color: #c9a96e;
    color: #c9a96e;
}

/* ===== FOOTER NAV LINKS ===== */
.footer-nav-title {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.35) !important;
    margin-bottom: 1.8rem !important;
    padding-bottom: 0 !important;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 0;
    font-size: 0.92rem;
    font-weight: 400;
    color: rgba(255,255,255,0.62) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.055);
    transition: color 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.footer-nav-item:last-child {
    border-bottom: none;
}

/* Dot ikonu */
.footer-nav-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-nav-item:hover {
    color: rgba(255,255,255,0.95) !important;
    padding-left: 6px;
}

.footer-nav-item:hover .footer-nav-dot {
    background: #c9a96e;
    transform: scale(1.5);
}

.footer-nav-cta {
    color: #c9a96e !important;
    font-weight: 600 !important;
    margin-top: 0.5rem;
    border-bottom: none !important;
}

.footer-nav-cta .footer-nav-dot {
    background: rgba(201,169,110,0.6);
}

.footer-nav-cta:hover {
    color: #e8c98a !important;
    padding-left: 6px;
}

.footer-nav-cta:hover .footer-nav-dot {
    background: #e8c98a;
    transform: scale(1.5);
}
