/* 
    By Kara VIP Transfer - Global Styles
    This file contains core styles shared across all pages.
*/

:root {
    --primary-color: #f7d51d; /* By Kara Sarı */
    --bg-dark: #000000;
    --bg-darker: #000000;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --navbar-height: 80px;
    --accent-blue: #007bff;
    --card-bg: #030303;
    --border-color: rgba(255, 255, 255, 0.03);
    --soft-white: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(10, 10, 10, 0.7);
}

@media (max-width: 991px) {
    :root {
        --navbar-height: 70px;
    }
}

/* Base Styles */
*, *::before, *::after { box-sizing: border-box; }

html {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark) !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    margin: 0;
    padding: 0;
    padding-top: var(--navbar-height);
    background-color: var(--bg-dark) !important;
    color: var(--text-white);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: auto !important;
    position: relative;
}

/* Force Layout Stability kanka */
.container, .container-fluid {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

ul { list-style: none !important; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

/* Layout Helpers */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Accessibility & Brand Colors kanka */
.text-primary, .color-primary { color: var(--primary-color) !important; }

/* Luxury Section Titles */
.section-title-luxury {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.luxury-subtitle {
    display: block;
    color: var(--primary-color); /* Accessibility kanka, gri yerine marka rengi daha net okunur */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    opacity: 1; /* Opaklığı tam yapalım ki kontrast artsın */
}

.section-title-luxury h2 {
    font-size: 2.8rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-white);
    margin: 0;
}

.section-title-luxury h2 span {
    font-weight: 800;
    color: #fff;
}

.luxury-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 25px auto;
}

.section-title-luxury p {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .section-title-luxury h2 {
        font-size: 2rem;
    }
}

/* Navbar Custom Base */
.navbar-custom {
    background-color: #000000;
    backdrop-filter: blur(10px);
    height: var(--navbar-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto !important;
    z-index: 1050;
    padding: 0 !important;
}

/* Booking Form Wrapper */
.booking-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 250px auto 0;
    min-height: auto !important; /* Height stabilization kanka */
    background: transparent !important;
    box-shadow: none !important; /* Shadows nuked kanka */
    border: none !important;
    border-radius: 15px;
    /* contain: layout removed to allow dropdowns kanka */
    position: relative;
    z-index: 100;
}

@media (max-width: 991px) {
    .booking-wrapper {
        margin-top: 0;
        min-height: 550px;
        border-radius: 0;
        max-width: 100% !important;
    }
}

/* Booking Tabs */
.booking-tabs {
    display: inline-flex;
    background: #000; /* Flat black kanka */
    border-radius: 10px 10px 0 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    height: 45px;
    align-items: stretch;
}

/* Booking Main Container */
.booking-container-main {
    background: #000;
    border-radius: 0 15px 15px 15px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none !important; /* Shadows nuked kanka */
    min-height: 80px;
}

/* Sticky Summary Bar (arac-secimi.php) */
.booking-summary-bar {
    position: sticky;
    top: var(--navbar-height);
    background: #000; /* Saf siyah kanka */
    padding: 0;
    z-index: 1000;
    margin: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
