/*
Theme Name: İnci Catering
*/

body {
    margin:0;
    font-family: Arial, sans-serif;
}

/* ===================== */
/* TOPBAR */
/* ===================== */

.topbar {
    background:#c0392b;
    height:40px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding:0 40px;
    color:#fff;
    font-size:14px;
}

.topbar-right span {
    margin-left:20px;
}

/* ===================== */
/* HEADER */
/* ===================== */

.header {
    display:flex;
}

.logo-area {
    background:#fff;
    padding:30px 100px;
    display:flex;
    align-items:center;
}

.logo-area img {
    height:150px;
}

.menu-area {
    flex:1;
    background:#0b0b0b;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding:0 60px;
}

nav a {
    color:#fff;
    text-decoration:none;
    margin-left:30px;
    font-size:16px;
    font-weight:600;
}

nav a i {
    margin-right:6px;
}

.yellow { color:#f1c40f; }
.blue { color:#00c3ff; }

.contact {
    background:#c0392b;
    padding:10px 15px;
    border-radius:4px;
}

/* ===================== */
/* SLIDER */
/* ===================== */

.slider {
    height:600px;
    display:flex;
    align-items:center;
}

.slider-overlay {
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    padding:0 60px;
}

.slider-text {
    color:#fff;
    max-width:550px;
    margin-left:80px;
}

.slider-text .tag {
    color:#ff7a00;
    font-weight:bold;
    letter-spacing:1px;
}

.slider-text h1 {
    font-size:42px;
    margin:20px 0;
}

.slider-text p {
    font-size:16px;
    line-height:1.6;
}

.slider-btn {
    display:inline-block;
    margin-top:20px;
    background:#c0392b;
    padding:12px 20px;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
}

.slider-image {
    margin-right:80px;
}

.slider-image img {
    width:800px;
    max-width:none;
}

/* ===================== */
/* SERVICES */
/* ===================== */

.services {
    padding:80px 40px;
    text-align:center;
}

.mini-title {
    color:#ff7a00;
    font-weight:bold;
    font-size:14px;
}

.services h2 {
    font-size:36px;
    margin:10px 0 40px;
}

/* KARTLAR */
.service-cards {
    display:grid;
    grid-template-columns: repeat(5, 1fr); /* 5'li sabit */
    gap:25px;
    justify-content:center;
}

/* KART */
.card {
    width:80%;
    height:320px; /* SABİT YÜKSEKLİK → KISALDI */
    background:url('../inci-theme/images/hizmetlerarkaplan.jpg') center/cover no-repeat;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    position:relative;
    overflow:hidden;
    transition:0.3s;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* HOVER ARKA PLAN */
.card::before {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
    opacity:0;
    transition:0.3s;
    border-radius:20px;
    z-index:1;
}

/* RESİM */
.card img {
    width:100%;
    height:180px;
    object-fit:contain;
    border-radius:10px;
    position:relative;
    z-index:2;
}

/* BAŞLIK */
.card h3 {
    font-size:16px;
    margin:10px 0;
}

.card a {
    margin-top:auto;
}

/* BUTON */
.card a {
    display:inline-block;
    background:#c0392b;
    color:#fff;
    padding:10px 15px;
    text-decoration:none;
    border-radius:5px;
    font-size:14px;
    position:relative;
    z-index:3;
}

/* HOVER */
.card:hover::before {
    opacity:1;
}

.card:hover h3 {
    color:#fff;
}

.card:hover a {
    background:#e74c3c;
}
/* ===================== */
/* NEDEN BİZ */
/* ===================== */

.neden-biz {
    display:flex;
    height:500px;
}

/* SOL FOTO */
.nb-left {
    width:50%;
    position:relative;
}

/* SAĞ ALAN */
.nb-right {
    width:50%;
    background:#0b0b0b;
    color:#fff;
    padding:60px;
    position:relative;
}

/* ÜST YAZI */
.nb-mini {
    color:#ff7a00;
    font-size:14px;
}

.nb-right h2 {
    font-size:36px;
    margin:10px 0 30px;
}

/* KART */
.nb-card {
    background:#eee;
    color:#333;
    padding:30px;
    border-radius:15px;
    max-width:500px;
    position:relative;
}

/* NUMARA */
.nb-number {
    background:#999;
    color:#fff;
    padding:5px 10px;
    border-radius:5px;
    font-size:12px;
}

/* TIRNAK */
.quote {
    position:absolute;
    top:10px;
    right:20px;
    font-size:40px;
    color:#ff7a00;
}

/* OKLAR */
.nb-arrows {
    display:flex;
    gap:15px;
    margin-top:30px;
}

.arrow {
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid #ff7a00;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.arrow.active {
    background:#c0392b;
    border:none;
}
/* ===================== */
/* FOOTER GENEL */
/* ===================== */

.footer {
    background:#031c2c;
    color:#fff;
    padding-top:60px;
}

/* ===================== */
/* ÜST TURUNCU ALAN */
/* ===================== */

.footer-top {
    max-width:1100px;
    margin:0 auto;
    background:#ff7a00;
    border-radius:15px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 30px;
    transform:translateY(-40px);
}

/* ITEM */
.ft-item {
    display:flex;
    align-items:center;
    gap:10px;
}

/* ICON */
.ft-item i {
    font-size:16px;
    background:#fff;
    color:#ff7a00;
    padding:10px;
    border-radius:50%;
}

/* TEXT */
.ft-item strong {
    font-size:13px;
}

.ft-item p {
    font-size:12px;
    margin:2px 0 0;
    line-height:1.3;
}

/* ===================== */
/* ALT FOOTER */
/* ===================== */

.footer-bottom {
    max-width:1100px;
    margin:0 auto;

    display:flex;
    justify-content:center;
    gap:60px;

    padding:20px 0 40px;
}

/* KOLON */
.footer-col {
    width:220px;
}

/* LOGO */
.footer-col img {
    width:120px;
    margin-bottom:10px;
}

/* YAZI */
.footer-col p {
    font-size:13px;
    line-height:1.4;
}

/* BAŞLIK */
.footer-col h4 {
    font-size:15px;
    margin-bottom:10px;
    position:relative;
}

/* ALT ÇİZGİ */
.footer-col h4::after {
    content:"";
    width:30px;
    height:2px;
    background:#ff7a00;
    display:block;
    margin-top:5px;
}

/* LİSTE */
.footer-col ul {
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li {
    margin-bottom:6px;
    font-size:13px;
}

/* LINK */
.footer a {
    color:#fff;
    text-decoration:none;
}

.footer a:hover {
    color:#ff7a00;
}

/* BUTON */
.footer-btn {
    margin-top:10px;
    background:#f1c40f;
    color:#000;
    padding:8px 14px;
    border-radius:5px;
    font-size:13px;
    display:inline-block;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media(max-width:900px){

    .footer-top {
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer-bottom {
        flex-direction:column;
        align-items:center;
        gap:25px;
    }

    .footer-col {
        width:100%;
        text-align:center;
    }
}

/* ===================== */
/* PAGE BANNER */
/* ===================== */

.page-banner {
    background:url('../inci-theme/images/arkaplan.jpg') center/cover no-repeat;
    padding:80px 0;
    text-align:center;
    color:#fff;
}

.page-banner h1 {
    font-size:32px;
}

.page-banner p {
    font-size:14px;
}

/* ===================== */
/* ABOUT */
/* ===================== */

.about {
    display:flex;
    max-width:1100px;
    margin:80px auto;
    gap:50px;
}

/* SOL */
.about-left img {
    width:100%;
    border-radius:20px;
}

/* SAĞ */
.about-right {
    flex:1;
}

.about-right h2 {
    font-size:28px;
    margin-bottom:10px;
}

/* ===================== */
/* ACCORDION */
/* ===================== */

.accordion {
    margin-top:20px;
}

.acc-item {
    background:#f4f4f4;
    margin-bottom:10px;
    border-radius:10px;
    overflow:hidden;
}

.acc-title {
    padding:15px;
    font-weight:bold;
    cursor:pointer;
    background:#eee;
}

.acc-content {
    display:none;
    padding:15px;
}

.acc-item.active .acc-content {
    display:block;
    background:#fff;
}
/* ABOUT SECTION */
.about {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    padding:80px 60px;
}

/* SOL FOTO */
.about-left {
    flex:0 0 60%;
}

.about-left img {
    width:100%;
    max-height:500px;
    object-fit:cover;
    border-radius:20px;
}

/* SAĞ ALAN */
.about-right {
    flex:0 0 40%;
}

/* BAŞLIK */
.about-right h2 {
    font-size:36px;
    margin-bottom:20px;
}

/* YAZI */
.about-right p {
    font-size:16px;
    line-height:1.6;
    margin-bottom:20px;
}

/* ACCORDION */
.acc-item {
    margin-bottom:10px;
}

.acc-title {
    background:#eee;
    padding:15px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
}

.acc-content {
    padding:15px;
    display:none;
    background:#f9f9f9;
    border-radius:8px;
}

/* AKTİF */
.acc-item.active .acc-content {
    display:block;
}

.page-banner {
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* profesyonel karartma */
    background: rgba(0, 0, 0, 0.6);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
}

.page-banner p {
    margin-top: 10px;
    color: #ddd;
}

.page-banner {
    position: relative;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.page-banner p {
    margin-top: 10px;
    color: #ddd;
}

.contact {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-wrapper {
    display: flex;
    gap: 30px;
}

.contact-left {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.contact-box h4 {
    margin-bottom: 5px;
}

.contact {
    padding: 80px 0;
    background: #f5f3ef;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* SOL HARİTA */
.contact-left {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

/* SAĞ GRID */
.contact-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* KART */
.contact-box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

/* ICON */
.contact-box i {
    font-size: 28px;
    color: #e53935;
    margin-bottom: 10px;
}

/* HOVER */
.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;

    height: 160px; /* 🔥 EKLE */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-box p {
    font-size: 14px;
    line-height: 1.4;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #021c34;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid #0a2a4a;
    border-top: 4px solid #e53935;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

#preloader h2 {
    color: #e53935;
    letter-spacing: 10px;
}

#preloader p {
    color: #e53935;
    font-size: 12px;
    letter-spacing: 3px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}
#preloader {
    transition: 0.4s;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #021c34;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 0.4s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #021c34;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #e53935;
    color: #fff !important;

    padding: 10px 18px;
    border-radius: 4px;

    font-weight: 600;
    font-size: 14px;

    text-decoration: none;
    transition: 0.3s;
}

/* hover efekti */
.contact-btn:hover {
    background: #c62828;
    transform: translateY(-2px);
}
.contact-btn i {
    background: rgba(255,255,255,0.2);
    padding: 6px;
    border-radius: 3px;
}
/* =========================
   PRELOADER
========================= */
#preloader {
    position: fixed;
    inset: 0;
    background: #021c34;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}


/* =========================
   İLETİŞİM BUTONU
========================= */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #e53935;
    color: #fff !important;

    padding: 10px 18px;
    border-radius: 4px;

    font-weight: 600;
    font-size: 14px;

    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.contact-btn i {
    background: rgba(255,255,255,0.2);
    padding: 6px;
    border-radius: 3px;
}


/* =========================
   MENÜ HOVER (RENKLERİ BOZMADAN)
========================= */
.menu-area nav a:not(.contact-btn):hover {
    color: #e53935 !important;
}