/* sekercim.com.tr - Modern CSS Override 2026 */
:root {
    --color-primary: #e91e63;
    --color-primary-dark: #c2185b;
    --color-secondary: #ff9800;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f9fa;
    --font-main: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* === GENEL === */
body {
    font-family: var(--font-main);
    color: var(--color-text);
    scroll-behavior: smooth;
}

/* === HEADER === */
header.layout-1 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.header-in {
    padding: 8px 0;
}

#logo img {
    max-height: 65px;
    width: auto;
    transition: var(--transition);
}

/* === NAV MENU === */
ul.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

ul.nav-menu > li > a {
    display: block;
    padding: 10px 15px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

ul.nav-menu > li > a:hover,
ul.nav-menu > li.active > a {
    color: var(--color-primary);
    background: rgba(233, 30, 99, 0.05);
}

/* Dropdown */
ul.nav-menu li.has-dropdown {
    position: relative;
}

ul.nav-menu li.has-dropdown:hover > ul.sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

ul.sub-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

ul.sub-menu li a:hover {
    color: var(--color-primary);
    background: rgba(233, 30, 99, 0.05);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: var(--color-primary) !important;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    float: right;
    margin-top: 10px;
    text-decoration: none;
}

.mobile-toggle:hover {
    background: var(--color-primary-dark) !important;
    color: white;
}

@media (max-width: 991px) {
    .mobile-toggle { display: inline-block; }
    ul.nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow-md);
        padding: 10px;
        z-index: 999;
    }
    ul.nav-menu.open { display: flex; }
    ul.sub-menu {
        position: relative;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    ul.nav-menu li.has-dropdown.open > ul.sub-menu {
        display: block;
        opacity: 1;
        transform: none;
    }
}

/* Invitation Button */
.invitation-bot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.invitation-bot:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === SECTION TITLES === */
.section-title.layout-1 {
    text-align: center;
    margin-bottom: 40px;
}

.section-title.layout-1 .discription {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 8px;
}

.section-title.layout-1 .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.section-title.layout-1 .affter {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* === SERVICE CARDS === */
.zawag-icon.layout-1 {
    background: var(--color-bg);
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
    height: 100%;
}

.zawag-icon.layout-1:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.zawag-icon.layout-1 .icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.zawag-icon.layout-1 .title a,
.zawag-icon.layout-1 .title {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.zawag-icon.layout-1 .title a:hover {
    color: var(--color-primary);
}

.zawag-icon.layout-1 .list-style-7 li {
    padding: 4px 0;
    padding-left: 16px;
    font-size: 14px;
    color: var(--color-text-light);
    position: relative;
    list-style: none;
}

.zawag-icon.layout-1 .list-style-7 li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* === CALL TO ACTION === */
.section-ba-4 {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #fff5f8 100%);
}

.title-large {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.text-main-color { color: var(--color-primary) !important; }
.background-main-color { background-color: var(--color-primary) !important; }

/* === CTA BUTTON === */
.nile-bottom.layout-2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.nile-bottom.layout-2:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* === GALLERY === */
.masonry-container { /* Bootstrap grid handles this */ }

.firo-gallery-item.layout-1 {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.firo-gallery-item.layout-1:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.firo-gallery-item.layout-1 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* === BLOG === */
.nile-blog-home.layout-1 {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    transition: var(--transition);
}

.nile-blog-home.layout-1:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.nile-blog-home.layout-1 .img_in img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.nile-blog-home.layout-1 .content {
    padding: 20px;
}

.nile-blog-home.layout-1 .title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.nile-blog-home.layout-1 .title:hover {
    color: var(--color-primary);
}

.nile-blog-home.layout-1 .date {
    color: var(--color-primary);
    font-size: 13px;
    text-decoration: none;
}

.nile-blog-home.layout-1 .excerpt {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

/* === GO TOP BUTTON === */
.go-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary) !important;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    z-index: 998;
    transition: var(--transition);
}

.go-top:hover {
    transform: translateY(-4px);
    color: white;
}

/* === FOOTER === */
footer.layout-1 {
    background: #1a1a2e;
    color: #ccc;
    padding: 60px 0 40px;
}

.footer-about .logo-footer {
    margin-bottom: 20px;
}

.footer-about .logo-footer img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.footer-about .text {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.footer-about .copyright {
    color: #666;
    font-size: 13px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Social Media Links */
ul.social-media {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

ul.social-media li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

ul.social-media li.facebook a { background: #1877f2; }
ul.social-media li.twitter a { background: #1da1f2; }
ul.social-media li.instagram a { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
ul.social-media li.whatsapp a { background: #25d366; }

ul.social-media li a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* === MOBILE BOTTOM BAR === */
.mobililetisim {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobililetisim .buton3d {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    gap: 4px;
    transition: var(--transition);
}

.mobililetisim .a1 {
    background: var(--color-primary);
    color: white;
}

.mobililetisim .a3 {
    background: #25d366;
    color: white;
}

.mobililetisim .buton3d:hover {
    opacity: 0.9;
    color: white;
}

/* === PADDING HELPERS === */
.padding-top-40px { padding-top: 40px; }
.padding-bottom-40px { padding-bottom: 40px; }
.padding-tb-100px { padding: 100px 0; }
.padding-top-100px { padding-top: 100px; }
.padding-bottom-50px { padding-bottom: 50px; }
.padding-tb-130px { padding: 60px 0; }
.padding-tb-50px { padding: 50px 0; }
.margin-bottom-30px { margin-bottom: 30px; }
.margin-bottom-0px { margin-bottom: 0; }
.margin-tb-25px { margin: 25px 0; }
.margin-tb-5px { margin: 5px 0; }
.padding-0px { padding: 0; }
.border-radius-3 { border-radius: 3px; }
.border-radius-20 { border-radius: 20px; }
.text-medium { font-size: 15px; line-height: 1.7; color: var(--color-text-light); }

/* === PRELOADER === */
.nile-preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.nile-preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.nile-preloader .logo img {
    max-width: 150px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

/* === PAGE HERO (main.php icin) === */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.page-hero .breadcrumb-item.active { color: white; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .title-large { font-size: 1.8rem; }
    .section-title.layout-1 .title { font-size: 1.5rem; }
    .padding-tb-100px { padding: 60px 0; }
    body { padding-bottom: 70px; } /* mobile bottom bar icin */
}

/* Background Classes */
.background-white { background-color: #fff; }
.position-relative { position: relative; }
.position-inherit { position: inherit; }
