
.rev-slider-container {
    position: relative;
}

.rev-slider a.btn {
    position: absolute;
    bottom: 30px; /* Aşağıdan mesafe */
    left: 50%;
    transform: translateX(-50%); /* Ortalamak için */
    z-index: 10; /* Görünürlük için diğer elemanların üstünde olsun */
    animation: none !important; /* Animasyonları devre dışı bırakır */
}

/* ============================
   Monscasa Premium Override
   ============================ */

/* 🎨 Renk Paleti */
:root {
    --primary: #2E4F4F;    /* Zümrüt Yeşili */
    --secondary: #D4C3A3;  /* Kum Beji */
    --light: #fbfbfb;      /* Fildişi Beyaz */
    --dark: #222222;       /* Antrasit */
    --accent: #B08D57;     /* Altın Bronz */
    --grey-500: #D4C3A3;   /* Kum Beji tonunda form sınırları */
    --default: #222222;    /* Metin */
}

/* 🏛️ Header & Navbar */
#header .header-container,
#header .header-body {
    background-color: var(--primary) !important;
}

#header .header-nav-main nav > ul > li > a {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: var(--light) !important;
}

#header .header-nav-main nav > ul > li > a:hover {
    color: var(--accent) !important;
}

/* 📜 Typography */
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

h1, h2, h3, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

/* 🔘 Butonlar */
.btn-primary {
    background-color: var(--accent);
    border: none;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #9c7845; /* Altın bronzun koyusu */
    color: #fff;
}

.btn-secondary {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
}

.btn-secondary:hover {
    background-color: #253f3f;
    color: #fff;
}

/* 🃏 Kartlar */
.card, .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover, .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.card h4, .portfolio-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

/* 📞 Footer */
.footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 2rem 0;
}

.footer a {
    color: var(--secondary);
}

.footer a:hover {
    color: var(--accent);
}

/* 🌅 Overlay */
.page-header.page-header-background.overlay.overlay-show.overlay-color-dark {
    background-color: rgba(34, 37, 41, 0.25) !important;
}

.mfp-arrow {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 999999 !important;
}

.about-image{
    max-height: 320px;          /* ihtiyacına göre 300-450 */
    overflow: hidden;
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-divider {
    height: 48px;
    background: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.18) 100%);
}


/* 1) Tüm galeri item’larını kare yap (thumb zaten 381x381) */
.image-gallery .isotope-item .image-gallery-item{
    aspect-ratio: 1 / 1;      /* 🔥 kare kutu */
    width: 100%;
    overflow: hidden;
}

/* 2) Tema wrapper’ları da yüksekliği devralsın */
.image-gallery .thumb-info,
.image-gallery .thumb-info-wrapper,
.image-gallery .img-thumbnail{
    height: 100%;
}

/* 3) Görsel kare kutuyu doldursun */
.image-gallery .thumb-info-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 4) CTA içi de %100 olsun (yarım kalmasın) */
.gallery-cta,
.gallery-cta .thumb-info,
.gallery-cta .thumb-info-wrapper,
.gallery-cta .gallery-cta-inner{
    height: 100%;
}

/*.gallery-cta .gallery-cta-inner{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    padding: 26px;*/
/*    text-align: center;*/
/*    background: rgba(0,0,0,.06);*/
/*}*/

/*!* ikonlar (isteğe göre) *!*/
/*.gallery-cta-icon{*/
/*    width: 78px; height: 78px;*/
/*    border-radius: 999px;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background: rgba(0,0,0,.10);*/
/*    color: rgba(0,0,0,.65);*/
/*    margin-bottom: 10px;*/
/*}*/

/*.gallery-cta-plus{*/
/*    width: 34px; height: 34px;*/
/*    border-radius: 999px;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background: rgba(0,0,0,.14);*/
/*    color: rgba(0,0,0,.70);*/
/*    margin-bottom: 10px;*/
/*}*/

/* === CTA OVERLAY TASARIMI === */

.gallery-cta{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* Overlay */
.gallery-cta-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.55);
    backdrop-filter: blur(6px);
    transition: background .25s ease;
}

/* Orta badge */
.gallery-cta-badge{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 18px 16px;
    border-radius: 14px;

    background: rgba(255,255,255,.75);
    box-shadow: 0 18px 50px rgba(0,0,0,.18);

    transform: translateY(2px);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Icon */
.gallery-cta-icon{
    width: 64px;
    height: 64px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.08);
    color: rgba(0,0,0,.65);
    margin-bottom: 8px;

    transition: transform .25s ease, background .25s ease;
}

/* Text */
.gallery-cta-title{
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .3px;
}

.gallery-cta-sub{
    font-size: 12px;
    opacity: .6;
}

/* Hover */
.gallery-cta:hover .gallery-cta-overlay{
    background: rgba(255,255,255,.35);
}

.gallery-cta:hover .gallery-cta-badge{
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.gallery-cta:hover .gallery-cta-icon{
    transform: scale(1.06);
}
