/*
Theme Name: Loggerise
Theme URI: https://loggerise.com
Author: Loggerise
Author URI: https://loggerise.com
Description: Loggerise WordPress Theme - Modern SaaS ve Startup Teması
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loggerise
Tags: one-column, two-columns, custom-menu, featured-images, theme-options, translation-ready
*/

/* ==========================================================================
   Hero Section - İçerik Üstte, Dashboard Altta Taşıyor
   ========================================================================== */

.loggerise-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.loggerise-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.loggerise-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ==========================================================================
   Hero Content - Üstte Sabit, Dashboard'ın Üzerinde
   ========================================================================== */

.loggerise-hero__content {
    position: relative;
    z-index: 10;
    padding: 140px 0 60px;
    text-align: center;
}

.loggerise-hero__content .container {
    margin-top: 0;
    margin-bottom: 0;
}

.loggerise-hero__text {
    max-width: 800px;
    margin: 0 auto;
}

.loggerise-hero__text h1 {
    font-family: var(--font-family-secondary), Georgia, serif;
    font-size: 3.25rem;
    font-weight: 400;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.loggerise-hero__text h1 em {
    font-style: normal;
    color: #102D23;
    font-size: 60px;
}

.loggerise-hero__text p {
    font-size: 16px;
    color: #686868;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.loggerise-hero__text .btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    transition: all 0.3s ease;
}

.loggerise-hero__text .btn:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Dashboard - Hero Altında, Sayfadan Taşıyor
   ========================================================================== */

.loggerise-hero__dashboard {
    position: relative;
    z-index: 5;
    padding: 0 15px;
    margin-top: auto;
}

.loggerise-hero__dashboard .container {
    max-width: 1100px;
}

.loggerise-hero__dashboard-frame {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    background: #2d2d2d;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.loggerise-hero__dashboard-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2d2d2d;
}

.loggerise-hero__dashboard-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.loggerise-hero__dashboard-header span:nth-child(1) { background: #ff5f56; }
.loggerise-hero__dashboard-header span:nth-child(2) { background: #ffbd2e; }
.loggerise-hero__dashboard-header span:nth-child(3) { background: #27ca40; }

.loggerise-hero__dashboard-frame > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
}


/* ==========================================================================
   Brands Section
   ========================================================================== */

#brands {
    background: #fff;
    padding: 40px 0;
}

#brands .brand-logo {
    max-height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

#brands .brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
    .loggerise-hero__text h1 {
        font-size: 2.75rem;
    }
    .loggerise-hero__text h1 em {
        font-size: 52px;
    }
    .loggerise-hero__dashboard-frame {
        max-width: 950px;
    }
}

@media (max-width: 991px) {
    .loggerise-hero__content {
        padding: 120px 0 40px;
    }
    .loggerise-hero__text h1 {
        font-size: 2.5rem;
    }
    .loggerise-hero__text h1 em {
        font-size: 44px;
    }
    .loggerise-hero__text p {
        font-size: 1rem;
    }
    .loggerise-hero__dashboard-frame {
        max-width: 90%;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 767px) {
    .loggerise-hero__content {
        padding: 100px 0 30px;
    }
    .loggerise-hero__text h1 {
        font-size: 2rem;
    }
    .loggerise-hero__text h1 em {
        font-size: 36px;
    }
    .loggerise-hero__text p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .loggerise-hero__dashboard-frame {
        max-width: 95%;
        border-radius: 10px 10px 0 0;
    }
    .loggerise-hero__dashboard-header {
        padding: 10px 14px;
    }
    .loggerise-hero__dashboard-header span {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 575px) {
    .loggerise-hero__content {
        padding: 90px 0 20px;
    }
    .loggerise-hero__text h1 {
        font-size: 1.75rem;
    }
    .loggerise-hero__text h1 em {
        font-size: 30px;
    }
    .loggerise-hero__text p {
        font-size: 0.9rem;
    }
    .loggerise-hero__text .btn {
        padding: 14px 28px;
    }
    .loggerise-hero__dashboard-frame {
        max-width: 100%;
        border-radius: 8px 8px 0 0;
    }
    .loggerise-hero__dashboard-header {
        padding: 8px 12px;
    }
    .loggerise-hero__dashboard-header span {
        width: 8px;
        height: 8px;
    }
}

/* ==========================================================================
   Page Header - Navigation ile Çakışma Düzeltmesi
   ========================================================================== */

/* Page header section için navigation yüksekliği kadar üst boşluk */
.page-header {
    position: relative;
    z-index: 1;
    height: 335px;
}

/* Header navigation'ın z-index'i page header'dan yüksek olmalı */
.uc-header {
    position: relative;
    z-index: 999;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Header navbar main için üst margin */
.uc-header .uc-navbar-main {
    margin-top: 20px;
}

/* Container genişlikleri - Bootstrap benzeri */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* İçerik alanının container içinde kalması */
.page-content .entry-content {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.page-content .entry-content img {
    max-width: 100%;
    height: auto;
}

.page-content .entry-content iframe,
.page-content .entry-content video,
.page-content .entry-content embed {
    max-width: 100%;
}

/* Header arkaplanı - sayfa header'ı üzerinde görünmesi için */
.uc-header .uc-navbar-container {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.uc-header.uc-navbar-sticky .uc-navbar-container,
.uc-header .uc-navbar-container.uc-navbar-transparent {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive padding ayarları */
@media (max-width: 991px) {
    .page-header {
        padding-top: 90px !important;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding-top: 80px !important;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding-top: 70px !important;
    }
}

/* Breadcrumb ve title arasındaki boşluğu artır */
.page-header-content .loggerise-breadcrumb {
    margin-bottom: 1rem;
}

/* Breadcrumb stilleri */
.loggerise-breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.loggerise-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.loggerise-breadcrumb .breadcrumb-item:not(:last-child)::after {
    content: '•';
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Global Link Styles - Underline Kuralı
   ========================================================================== */

/* Tüm linklerde underline olmayacak - Global kural */
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none !important;
}

/* Link içindeki tüm elementlerde de underline olmayacak */
a *,
a:link *,
a:visited *,
a:hover *,
a:active *,
a:focus * {
    text-decoration: none !important;
}

/* ==========================================================================
   GDPR Accept Button - Genişlik Ayarlaması
   ========================================================================== */

#uc-accept-gdpr {
    min-width: 140px !important;
    width: auto !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    white-space: nowrap;
}

