﻿/* ===================================================
   OREM LIGHT — Özel Stiller
   =================================================== */

/* 1. İletişim Formu */
.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: #2a2a2a;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #2a2a2a;
    box-shadow: 0 0 0 3px rgba(42, 42, 42, 0.08);
    outline: none;
}

.contact-form .form-label {
    color: #2a2a2a;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* 2. WhatsApp Yüzer Butonu (Altın Konsept) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: rgba(200, 169, 110, 0.9);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 12px rgba(200, 169, 110, 0.45);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #c8a96e;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 2px 2px 18px rgba(200, 169, 110, 0.55);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* 3. Galeri Grid — tam genişlik, tutarlı yükseklik */
.gallery-grid {
    overflow: hidden;
}

.gallery-grid .row {
    margin: 0;
}

.gallery-item {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Hover'da kararan overlay + büyüteç ikonu */
.gallery-overlay {
    background: rgba(0, 0, 0, 0);
    transition: background 0.35s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1 !important;
    transform: scale(1.1);
}

/* ===================================================
   TIER 1 PREMIUM CSS ENHANCEMENTS
   =================================================== */

/* Temel Yumuşatma ve Akıcılık */
html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

/* Özel Akıcı Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c8a96e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a98d58;
}

/* Premium Buton Hover Efektleri - Scoped */
.btn-primary,
.btn-dark {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-primary:hover {
    background-color: #c8a96e !important;
    border-color: #c8a96e !important;
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.35) !important;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: #222 !important;
    border-color: #222 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.btn-dark:hover {
    background-color: #c8a96e !important;
    border-color: #c8a96e !important;
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.35) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

/* Zarif Gölgelendirmeler (Soft Semantic Shadows) */
.custom-box-shadow-1 {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
}

.card {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidebar .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Resim ve Lightbox Hover Efektleri */
.img-thumbnail {
    border: none !important;
    background: transparent !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.img-thumbnail:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px) !important;
}

/* Header/Menu Lüks Çizgi (Underline Effect) */
#header .header-nav-main nav>ul>li>a {
    position: relative;
}

#header .header-nav-main nav>ul>li>a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #c8a96e;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

#header .header-nav-main nav>ul>li:hover>a::before,
#header .header-nav-main nav>ul>li>a.active::before {
    width: calc(100% - 20px);
}

/* Marka Sayfaları Sidebar Seçili Link */
.sidebar .list .active {
    color: #c8a96e !important;
    font-weight: 800 !important;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.sidebar .list .active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #c8a96e;
    border-radius: 50%;
}

.sidebar .list a:not(.active):hover {
    color: #c8a96e !important;
    padding-left: 5px;
}

/* Başlık Renklendirmeleri ve Spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.font-weight-extra-bold {
    font-weight: 800 !important;
}

.text-color-primary {
    color: #c8a96e !important;
}

.bg-primary {
    background-color: #1a1a1a !important;
}

/* Ana Bölümler İçin Lüks Boşluklar (Breathing Room) */
.custom-page-header-1 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%) !important;
}

.custom-page-header-1 h1 {
    font-size: 3.5rem !important;
    letter-spacing: -0.04em !important;
    color: #fff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.custom-breadcrumb-style-1 li {
    font-size: 0.95rem !important;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.custom-breadcrumb-style-1 li.active {
    color: #c8a96e !important;
    opacity: 1;
    font-weight: 600;
}

/* Kart Yansımaları (Glassmorphism effect) */
.card.bg-primary {
    background: linear-gradient(145deg, #1f1f1f, #151515) !important;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.card.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(200, 169, 110, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

/* Genel Tipografi Kontrastı */
p.custom-font-tertiary {
    color: #444 !important;
    font-weight: 400;
}

/* Resim Overlay İnce Ayarı */
.gallery-item {
    border-radius: 8px;
}

.gallery-item img {
    border-radius: 8px;
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Ekstra Modern Tipografi: Sayfa Tüketimi (Readability) */
body {
    color: #444;
    line-height: 1.8;
}

/* Footer Accent ve Spacing */
#footer {
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 169, 110, 0.4) 50%, transparent 100%);
}

#footer p,
#footer a,
#footer address {
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Animasyonlu Scroll-to-Top Butonu */
.scroll-to-top {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(200, 169, 110, 0.9) !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(200, 169, 110, 0.4) !important;
    transition: all 0.3s ease !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 1000 !important;
}

.scroll-to-top i {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 1.2rem !important;
}

.scroll-to-top:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(200, 169, 110, 0.6) !important;
    background: #a98d58 !important;
}

/* WhatsApp Butonu Konumu (Üst üste binmeyi önler) */
.whatsapp-float {
    bottom: 90px !important;
    right: 30px !important;
    z-index: 1000 !important;
}

/* Header Glass Sabitleme ve Blur (Tier 1 Navbar) */
#header .header-body {
    background: rgba(26, 26, 26, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s ease !important;
}

/* Header Shrink (Küçülme) Animasyonunu İyileştirme */
#header.header-effect-shrink.header-active .header-body {
    background: rgba(15, 15, 15, 0.95) !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* Nav Linkleri Kontrastı */
#header .header-nav-main nav>ul>li>a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
}

#header .header-nav-main nav>ul>li:hover>a,
#header .header-nav-main nav>ul>li>a.active {
    color: #c8a96e !important;
}

/* Resim Hover - Premium Blur Efekti */
.gallery-item {
    position: relative;
}

.gallery-item img {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gallery-item:hover img {
    transform: scale(1.08) !important;
    filter: brightness(0.7) contrast(1.1) !important;
}

/* Sayfa Arkaplanı Soft Gradient (Lüks Zemin) */
body {
    background: radial-gradient(circle at top right, #222 0%, #151515 40%, #1a1a1a 100%) !important;
}

.custom-bg-grey-1 {
    background-color: transparent !important;
}

.custom-page-wrapper {
    background: transparent !important;
}

/* Premium Card (Markalar Listesi Yan Blok) */
aside.sidebar .card {
    background: rgba(25, 25, 25, 0.5) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
}

aside.sidebar .card.bg-primary {
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%) !important;
    border: 1px solid rgba(200, 169, 110, 0.3) !important;
}

aside.sidebar a {
    color: #dedede !important;
}

/* ===================================================
   HOMEPAGE & FOOTER TIER 1 GLASSMORPHISM & DEPTH
   =================================================== */

/* 1. Footer Glassmorphism & Depth */
#footer {
    position: relative;
    background: rgba(20, 20, 22, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Footer Arkasına Işık Hüzmesi (Glow) */
#footer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* 2. Anasayfa İçerik Kartları (Feature Boxes) */
.feature-box {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-8px);
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(200, 169, 110, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Kutu İçi Işık Yansıması */
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(200, 169, 110, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s;
}

.feature-box:hover::before {
    left: 200%;
}

.feature-box .feature-box-icon {
    background: transparent !important;
    color: #c8a96e !important;
    font-size: 2.5rem !important;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(200, 169, 110, 0.4));
}

.feature-box h4 {
    color: #fff !important;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem;
}

/* 3. Slider (Hero Section) Derinliği */
.slider-container {
    position: relative;
}

.slider-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Slider Yazılarına Neon Gold Efekti */
.slide-title {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(200, 169, 110, 0.3) !important;
}

/* 4. Contact/İletişim Bölümü (Glass Form) */
.contact-form {
    background: rgba(20, 20, 20, 0.6) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: #c8a96e !important;
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.15) !important;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 5. Görüntü (Image) Kartları Hover (Kapatıldı) */
/* .appear-animation cinematic focus effect removed as requested */

/* 6. Markalar (Clients) Carousel iptal edildi - İkonları bozuyordu */

/* ===================================================
   PERFORMANCE & BUG FIXES (TIER 1 V5)
   =================================================== */
/* 1. Animasyon Kasıntısı (Lag/Jank) Çözümü */
/* Çok ağır donanımsal ivmelendirme isteyen blur işlemlerini azalttık */
.feature-box {
    /* backdrop-filter: blur(10px); -> Performans için kapatıldı */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(35, 35, 35, 0.8) !important;
    /* Cam yerine premium koyu mat */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Gölge hafifletildi */
}

/* Hover geçişlerini daha hafif ve stabil hale getirdik */
.btn,
.img-thumbnail,
.card,
.feature-box,
.gallery-item img {
    /* cubic-bezier(0.165, 0.84, 0.44, 1) yerine standart 'ease' daha akıcı çalışır eski/zayıf cihazlarda */
    transition: all 0.3s ease !important;
}

/* 2. Footer Glassmorphism Düzeltimi */
/* Body'deki siyahlık footer'ı kapatmasın diye footer'a kendi degrade arkaplanını ekliyoruz */
#footer {
    background: rgba(18, 18, 20, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Sayfa arka planında body siyaha boyandığı için footer blur'u siyahı yansıtıyordu.
   Footer altına lüks sahte cam (fake refraction) deseni koyuyoruz ki cam efekti belli olsun. */
#footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at 30% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* ===================================================
   TIER 1 TYPOGRAPHY & ELEGANCE (V11)
   =================================================== */

/* 1. Global Font Yükseltmesi */
body,
p,
a,
span,
li,
div,
button,
input,
select,
textarea {
    font-family: 'Inter', sans-serif !important;
}

/* Başlıklar İçin Lüks Serif Font (Playfair Display) */
h1,
h2,
h3,
h4,
h5,
h6,
.text-color-primary,
.text-color-dark,
.font-weight-bold {
    font-family: 'Playfair Display', serif !important;
    letter-spacing: 0.05em !important;
}

/* Paragraf ve Metin Boşlukları (Whitespace / Nefes Alma) */
p {
    line-height: 1.85 !important;
    letter-spacing: 0.01em !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* 2. Etkileşim: Premium Manyetik Hover (Elastic Pulse) */
.btn-primary,
.custom-btn-style-1,
.feature-box {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-primary:hover,
.custom-btn-style-1:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(200, 169, 110, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.1) !important;
    letter-spacing: 0.05em !important;
}

/* 3. Global Sayfa İçi Boşluk Oranları (Daha Rahat Okunabilirlik) */
section,
.section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Ana menü linklerinde de premium fontlar */
#header .header-nav-main nav>ul>li>a {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.06em !important;
}

/* 4. Hero Slider Sinematik Ken Burns (Yavaş Yakınlaştırma) Efekti */
.custom-slider-background-image-item {
    animation: kenBurnsZoom 20s ease-out infinite alternate !important;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* 5. Gelişmiş Section Geçişleri (Smooth Transition) */
.section {
    position: relative;
    z-index: 1;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 169, 110, 0) 0%, rgba(200, 169, 110, 0.3) 50%, rgba(200, 169, 110, 0) 100%);
    z-index: 2;
}

/* 6. FAQ (Sıkça Sorulan Sorular) Accordion Düzeltmesi */
/* Global beyaz paragraf rengi nedeniyle card-body içindeki yazılar görünmüyordu. Koyu zeminde okunabilecek şekilde düzeltildi. */

.custom-accordion-style-1 .card-body p {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* Accordion başlıklarındaki renk dengesi için opsiyonel: */
.custom-accordion-style-1 .card-header .accordion-toggle {
    color: #2a2a2a !important;
}

/* 7. Tipografi Sadeliği (Playfair İptali, Salt Inter) */
h1,
h2,
h3,
h4,
h5,
h6,
.text-color-primary,
.text-color-dark,
.font-weight-bold {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.02em !important;
}

/* Sayfadaki metinleri yumuşatıp okunabilirliği artırma */
h2,
h3,
h4 {
    font-weight: 600 !important;
}

/* 8. Modern Arka Plan Teması İptal Edildi (Beyaz Tema Geri Getirildi) */
/* 10. Yukarı Çık (Scroll to Top) Butonu Tamamen İptal Edildi */
html body a.scroll-to-top,
html body div.scroll-to-top,
html body .scroll-to-top {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* 12. Reading Progress Bar (Okuma İlerleme Çubuğu) */
.reading-progress-bar {
    position: fixed;
    top: 100px;
    /* Header'ın yüksekliği (Sticky halineyken 80px oluyor ama başlarken 100px. Biz ortalama bir yere veya tamamen üste yerleştirebiliriz. En temizi en üstte (top:0) olmasıdır.) */
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #c8a96e 0%, #e8cc94 50%, #c8a96e 100%);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(200, 169, 110, 0.5);
    transition: width 0.1s ease-out;
}

/* Sticky Header aktif olduğunda barı header'ın tam altına (80px) alıyoruz */
html.sticky-header-active .reading-progress-bar {
    top: 80px !important;
}