/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

body, a, h1, h2, h3, h4, h5, h6, p, span, div, li, ul, ol, button, input, textarea, select, option, label, form, table, th, td, tr, img, figure, figcaption, nav, header, footer, section, article, aside, main, aside, address, blockquote, cite, code, pre, small, strong, em, i, b, u, s, strike, sup, sub, mark, ins, del, dfn, kbd, samp, var, abbr, acronym, q, time, caption, fieldset, legend, hr, iframe, object, embed, param, video, audio, source, track, canvas, map, area, svg, mark, meter, progress, time, wbr, bdi, bdo, br, col, colgroup, details, dialog, menu, menuitem, summary, template, slot, shadow
{
    font-family: "Poppins", serif;
}

/* Floating Button Style */

.floating_bar_container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
}

.floating_bar_wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: floating_bar_slideUp 0.5s ease-out;
}

@keyframes floating_bar_slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating_bar_title {
    text-align: center;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.floating_bar_buttons {
    display: flex;
    gap: 10px;
}

.floating_bar_button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    border: none;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating_bar_button:active {
    transform: scale(0.95);
}

.floating_bar_whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating_bar_whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating_bar_call {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
}

.floating_bar_call:hover {
    background: linear-gradient(135deg, #C92A2A 0%, #A61E1E 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.floating_bar_icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.floating_bar_pulse {
    animation: floating_bar_pulse 2s infinite;
}

@keyframes floating_bar_pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobil olmayan cihazlarda gizle */
@media (min-width: 769px) {
    .floating_bar_container {
        display: none;
    }
}


/* Slider movement */
#slide-img-1,
#slide-img-2,
#slide-img-3 {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform-origin: center center;
}