/* ===========================
   KUMRU KIZ YURDU - Premium CSS
   =========================== */

:root {
    --primary: #db2777;
    --primary-dark: #be185d;
    --primary-light: #fce7f3;
    --body-bg: #fafafa;
    --card-bg: #ffffff;
    --dark: #111827;
    --gray: #4b5563;
    --light-gray: #f1f5f9;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-lg: 24px;
}

* { box-sizing: border-box; }

body {
    background: var(--body-bg);
    color: var(--dark);
    font-family: 'Ubuntu', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 15px;
}

h1,h2,h3,h4,h5,h6,.font-rajdhani {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

/* ===========================
   HEADER & NAV
   =========================== */
.main-header {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1050;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(219,39,119,0.06);
    transition: all 0.3s ease;
}

.navbar {
    padding: 14px 0;
}

/* Brand */
.navbar-brand {
    text-decoration: none;
}

.header-logo {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(219,39,119,0.15);
    transition: transform 0.3s ease;
}

.navbar-brand:hover .header-logo {
    transform: rotate(5deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-sub {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.btn-pink-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(219,39,119,0.3);
}

.btn-pink-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219,39,119,0.4);
    color: white !important;
}

/* Custom Hamburger */
.custom-toggler {
    border: none !important;
    background: none !important;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.custom-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-toggler:focus { box-shadow: none !important; }

/* Mobile nav */
@media (max-width: 991px) {
    #navbarNav {
        background: white;
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border);
    }

    .navbar-nav {
        gap: 4px !important;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 12px 16px !important;
        border-radius: 12px;
    }

    .btn-pink-nav {
        margin-top: 8px;
        width: 100%;
        justify-content: center;
        padding: 12px 22px !important;
        border-radius: 12px !important;
    }

    .ms-2 { margin-left: 0 !important; }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(252,231,243,0.5) 100%),
                url('../images/banner.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(219,39,119,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-title span { color: var(--primary); }

.hero-section .lead {
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
}

/* ===========================
   SECTIONS
   =========================== */
.section-padding { padding: 80px 0; }

.bg-light-gray { background: #f8fafc; }

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 8px;
}

.section-title span { color: var(--primary); }

.section-title .divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    margin: 18px auto;
    border-radius: 2px;
}

.divider.ms-0 { margin-left: 0 !important; }

/* ===========================
   CARDS
   =========================== */
.custom-card {
    background: var(--card-bg);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 36px;
    height: 100%;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-sm);
}

.custom-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary) !important;
    box-shadow: 0 20px 50px rgba(219,39,119,0.12);
}

.icon-box {
    width: 62px;
    height: 62px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.custom-card:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ===========================
   ROOM CARDS
   =========================== */
.room-card {
    background: var(--card-bg);
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.room-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img {
    transform: scale(1.03);
}

.room-content { padding: 30px; }

.room-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.room-features li {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-features li i { color: var(--primary); font-size: 0.75rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn-outline-pink {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 24px;
    transition: all 0.25s ease;
    font-size: 0.85rem;
}

.btn-outline-pink:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(219,39,119,0.3);
}

/* ===========================
   FOOTER
   =========================== */
.main-footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: #9ca3af;
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(219,39,119,0.4);
}

.main-footer h5 {
    color: white;
    margin-bottom: 24px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-footer ul li {
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.main-footer ul li i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

.main-footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-right: 10px;
    color: #9ca3af;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.82rem;
    color: #6b7280;
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
}

.floating-whatsapp a {
    width: 58px;
    height: 58px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp a:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}

/* ===========================
   FORMS
   =========================== */
.form-control, .form-select {
    background: #f8fafc !important;
    border: 1.5px solid var(--border) !important;
    color: var(--dark) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(219,39,119,0.1) !important;
    background: white !important;
}

/* ===========================
   HELPERS
   =========================== */
.text-pink { color: var(--primary) !important; }

.icon-sm {
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.object-fit-cover { object-fit: cover; }

/* Gallery */
.gallery-img {
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-img img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

/* SEO Box */
.seo-content-box {
    line-height: 1.85;
    border-left: 4px solid var(--primary) !important;
}

.seo-content-box strong { color: var(--primary); }

/* Absolute helpers */
.-bottom-10 { bottom: -40px; }
.-right-10 { right: -40px; }

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    .hero-section { padding: 70px 0 60px; }
    .-bottom-10, .-right-10 {
        position: static !important;
        margin-top: 20px;
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .section-padding { padding: 50px 0; }
    .hero-section { padding: 60px 0 50px; }
    .section-title { margin-bottom: 36px; }
    .custom-card { padding: 24px; }
    .room-content { padding: 20px; }
    .room-features { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .gallery-img img { height: 160px; }
    .main-footer { padding: 60px 0 0; }
    .footer-bottom { margin-top: 40px; }
}

@media (max-width: 575px) {
    .hero-section .d-flex { flex-direction: column; }
    .hero-section .d-flex a { width: 100%; text-align: center; }
    .floating-whatsapp { bottom: 20px; right: 20px; }
    .floating-whatsapp a { width: 50px; height: 50px; font-size: 1.5rem; }
}

/* LIGHTBOX STYLES */
.kumru-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
}
.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    border-radius: 12px;
    animation: zoom 0.3s;
}
@keyframes zoom {
    from {transform:scale(0.8); opacity: 0;}
    to {transform:scale(1); opacity: 1;}
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}
.lightbox-close:hover { color: var(--primary); }
.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
}
.clickable-img, .gallery-img img, .room-img, .hero-photo { cursor: pointer; transition: opacity 0.3s; }
.clickable-img:hover, .gallery-img img:hover { opacity: 0.9; }


/* KIRPISOFT SIGNATURE ANIMATION */
.ks-signature {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
    animation: ks-float 3s ease-in-out infinite, ks-glow 4s linear infinite;
}
.ks-signature:hover {
    color: #fff;
    transform: scale(1.1);
}
@keyframes ks-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes ks-glow {
    0% { color: #db2777; text-shadow: 0 0 5px rgba(219,39,119,0.3); }
    33% { color: #f9a8d4; text-shadow: 0 0 10px rgba(249,168,212,0.5); }
    66% { color: #be185d; text-shadow: 0 0 5px rgba(190,24,93,0.3); }
    100% { color: #db2777; text-shadow: 0 0 5px rgba(219,39,119,0.3); }
}


/* FLOATING BUTTONS LAYOUT */
.floating-whatsapp {
    right: auto !important;
    left: 30px;
    bottom: 30px;
}
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: var(--primary);
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
#scrollToTop:hover {
    background: var(--dark);
    transform: translateY(-5px);
}
@media (max-width: 575px) {
    .floating-whatsapp { left: 20px; bottom: 20px; }
    #scrollToTop { right: 20px; bottom: 20px; width: 45px; height: 45px; }
}

