/* Webfonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #0a0a0a;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Ada Konsept Sunset Color Setup for Tailwind integration */
:root {
    --gold-primary: #eb6a33; /* Sunset Orange */
    --gold-hover: #d25b29;
}

.text-gold { color: var(--gold-primary); }
.bg-gold { background-color: var(--gold-primary); }
.border-gold { border-color: var(--gold-primary); }

/* Header & Navbar */
.navbar {
    position: fixed; /* Daha modern bir his için sabit başlık */
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.85); /* Yarı şeffaf */
    backdrop-filter: blur(10px); /* Modern blur efekti */
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-teklif {
    background-color: var(--gold-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 106, 51, 0.2);
}

.btn-teklif:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 106, 51, 0.3);
}

/* Swiper Slider adjustments */
.swiper-container {
    width: 100%;
    height: calc(100vh - 80px); /* Navbar sonrası tam ekran hissi için */
}

section.hero {
    height: calc(100vh - 80px); /* Hero alanı navbar'ın altına itilecek */
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swiper-slide img, 
.swiper-slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Karanlık/Lüks Karartma */
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--gold-primary) !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary) !important;
    opacity: 1 !important;
}

/* Form Input & Autofill Fixes */
input, textarea {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Browser autofill background override */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #000000 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Smooth placeholder */
::placeholder {
    color: #555 !important;
    opacity: 1;
}
