/* =============================================
   Otel Yatırım – Custom Styles
   ============================================= */

/* --- Base --- */
body {
    background-color: #050505;
    color: #e5e5e5;
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
}

/* --- Navigation --- */
.glass-nav {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Header Overlay --- */
.header-overlay {
    background: linear-gradient(to bottom, rgba(5,5,5,0.3), #050505);
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 20px;
}
.lang-switcher a {
    color: #555;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    padding: 4px 7px;
    transition: color 0.2s;
    text-decoration: none;
}
.lang-switcher a:hover {
    color: #d4af37;
}
.lang-switcher a.active {
    color: #d4af37;
}
.lang-switcher .sep {
    color: rgba(255,255,255,0.1);
    font-size: 11px;
}

/* --- Sidebar --- */
.sidebar-link.active {
    border-left-color: #d4af37 !important;
    color: #d4af37 !important;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.08), transparent);
}

/* --- Content Area Typography --- */
.content-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.content-area p {
    color: #a3a3a3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.content-area ul {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}
.content-area li {
    color: #d4af37;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}
.content-area li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #d4af37;
}
.content-area li span {
    color: #a3a3a3;
}

/* --- Mobile Menu --- */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
    transform: translateX(0);
}

/* --- Service Cards (hizmetler.php) --- */
.service-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.35s ease, transform 0.35s ease;
    overflow: hidden;
}
.service-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-5px);
}
.service-card .thumb {
    overflow: hidden;
}
.service-card .thumb img {
    transition: transform 0.6s ease;
    display: block;
    width: 100%;
}
.service-card:hover .thumb img {
    transform: scale(1.07);
}

/* --- Hero --- */
.hero-overlay {
    background: linear-gradient(135deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.45) 100%);
}
.hero-bg {
    transition: transform 12s ease;
}

/* --- Gold Divider --- */
.gold-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #d4af37;
    margin-bottom: 1.5rem;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Partner Logos --- */
.partner-logo {
    filter: grayscale(100%) brightness(0.4);
    transition: filter 0.3s ease;
    cursor: default;
}
.partner-logo:hover {
    filter: grayscale(0%) brightness(0.9);
}

/* --- Contact Form --- */
.form-field {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    color: #e5e5e5;
    padding: 13px 16px;
    width: 100%;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    transition: border-color 0.25s ease;
    outline: none;
    appearance: none;
}
.form-field:focus {
    border-color: #d4af37;
}
.form-field::placeholder {
    color: #444;
}
textarea.form-field {
    resize: vertical;
    min-height: 130px;
}

/* --- Mobile Lang Switcher --- */
.mobile-lang-switcher {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    justify-content: center;
}
.mobile-lang-switcher a {
    color: #555;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-lang-switcher a.active,
.mobile-lang-switcher a:hover {
    color: #d4af37;
}
