/* ============================
   Koçak VIP Beauty Fit - Style
   ============================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Playfair+Display:wght@600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    background: #fff;
}

h1,
h2,
h5 {
    font-family: 'Playfair Display', serif;
}

/* GOLD RENK DEĞİŞKENLERİ */
:root {
    --gold: #d4af37;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(90deg, #b8860b, #ffd700, #d4af37);
}

/* ============================
   NAVBAR


   /* Navbar Logo Ortada */
/* Navbar */
.navbar {
    background: linear-gradient(90deg, #000, #3a2a00, #b8860b);
    height: 150px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

/* Logo ortada */
.navbar .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar .navbar-brand img {
    height: 120px;
    max-height: 130px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 18px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.7);
    transition: transform .3s ease, filter .3s ease, box-shadow .3s ease;
}

.navbar .navbar-brand img:hover {
    transform: scale(1.06);
    filter: brightness(1.08);
    box-shadow: 0 0 25px rgba(212, 175, 55, 1);
}

/* Sol kısım: Telefon & WhatsApp */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-contact {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .3s;
}

.nav-contact i {
    color: var(--gold);
    font-size: 1.1rem;
}

.nav-contact:hover {
    color: var(--gold);
}

/* Sağdaki hamburger menü */
.navbar .navbar-toggler {
    border: none;
    z-index: 10;
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .navbar {
        height: 120px;
    }
    .navbar .navbar-brand img {
        height: 90px;
        padding: 8px 16px;
    }
    .nav-contact span {
        display: none; /* mobilde sadece ikon */
    }
    .nav-contact i {
        font-size: 1.3rem;
    }
}



.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================
   OFFCANVAS MENÜ
   ============================ */
/* Offcanvas Menü */
.offcanvas-custom {
    background: linear-gradient(180deg, #000 0%, #3a2a00 50%, #b8860b 100%);
    color: #fff;
    padding: 20px;
}

.offcanvas-custom .logo {
    max-width: 200px;
    margin: 20px auto;
    display: block;
    background: #fff;
    padding: 10px 20px;
    border-radius: 16px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* Menü Linkleri */
.offcanvas-custom .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: all .3s;
}

.offcanvas-custom .nav-link i {
    color: var(--gold);
    font-size: 1.2rem;
}

.offcanvas-custom .nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

/* İletişim Kutuları */
.contact-info {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 15px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 0.95rem;
    color: #fff;
}

.info-box i {
    color: var(--gold);
    font-size: 1.1rem;
}

.info-box a {
    color: #fff;
    text-decoration: none;
}

.info-box a:hover {
    color: var(--gold);
}


/* ============================
   SLIDER
   ============================ */
.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}

/* Slider Caption */
.carousel-caption {
    bottom: 12%;
    background: rgba(0, 0, 0, 0.55);
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 75%;
    margin: auto;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

/* ============================
   BÖLÜM BAŞLIKLARI
   ============================ */
.section-title {
    font-size: 2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ============================
   HİZMET KUTULARI
   ============================ */
.service-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--gold);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.3);
}

/* ============================
   VİDEO ALANI
   ============================ */
.video-box video {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.video-title {
    background: var(--gold-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 8px 8px 0 0;
    margin-bottom: -5px;
}

/* ============================
   HERO BANNER
   ============================ */
.hero-banner {
    background: var(--gold-gradient);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.hero-banner h2 {
    font-size: 2.2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-banner p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff8dc;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.service-mini {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all .3s ease;
    color: #fff;
}

.service-mini:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-mini i {
    color: #fff;
}

/* Liste düzeni */
.hero-banner h4 {
    margin-top: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-banner ul {
    list-style: none;
    padding-left: 0;
}

.hero-banner ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.hero-banner ul li::before {
    content: "✔️";
    position: absolute;
    left: 0;
}

/* ============================
   FLOATING BUTTONS
   ============================ */
.contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-btn i {
    font-size: 18px;
}

.float-btn span {
    flex: 1;
    text-align: left;
}

.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.float-btn.whatsapp {
    background: linear-gradient(90deg, #25d366, #128c7e);
}

/* ============================
   FOOTER
   ============================ */
footer {
    font-size: 0.95rem;
    background: #111;
    color: #fff;
    border-top: 3px solid var(--gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Slider Alanı */
.home-slider {
    margin-top: 0;
}

.carousel-item {
    height: 100vh; /* masaüstünde ekranı kapla */
    min-height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* tam doldur */
}


/* Yan kutular */
.slider-side .side-box {
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease;
}

.slider-side .side-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(212,175,55,0.3);
}

.slider-side h5 {
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Mobilde kutular slider altına düşsün */
@media (max-width: 991px) {
    .carousel-item {
        height: 60vh;
    }
    .slider-side {
        display: none;
    }
}


/* Galeri */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-item img {
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


