/* ====================================================================
   Turunç Hotels (Root) - V2 Premium Stil Dosyası
====================================================================
*/

/* 1. DEĞİŞKENLER (V2 STANDARTLARINA GÖRE GÜNCELLENDİ) */
:root {
    --brand-navy: #2E3C61;    /* Eski cırtlak lacivert yerine Premium Lacivert */
    --brand-orange: #F39200;  /* Ana Turuncu */
    --brand-dark: #111827;    /* Daha yumuşak koyu zemin */
    --text-color: #374151;    /* Daha okunaklı, yumuşak metin rengi */
    --white: #ffffff;
    --light-gray: #f9fafb;
    
    /* V2 YENİ FONTLARI */
    --font-primary: 'Poppins', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* 2. SIFIRLAMA & GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    font-family: var(--font-primary); /* Poppins Aktif */
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--brand-orange);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-navy);
    font-family: var(--font-serif); /* Playfair Display Aktif */
    font-weight: 600; /* 700'den 600'e çekilerek zarifleştirildi */
    line-height: 1.3em;
    margin-bottom: 20px;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/* 3. BUTON STİLLERİ (Eski Temadan Kalanlar - İnceltildi) */

/* Stil 1: Lacivert Buton */
.theme-btn, .btn-style-one {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--brand-navy);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600; /* 700 -> 600 */
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 13px;
}

.theme-btn:hover, .btn-style-one:hover {
    background-color: var(--brand-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Stil 2: Beyaz/Şeffaf Buton */
.btn-style-two {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s ease;
    font-size: 13px;
}

.btn-style-two:hover {
    background-color: var(--brand-navy);
    color: var(--white);
}

/* Stil 3: Yuvarlak Küçük Buton */
.btn-style-three {
    border-radius: 20px;
    background-color: var(--brand-navy);
    color: var(--white);
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.4s;
}

.btn-style-three:hover {
    background-color: var(--brand-orange);
}

/* 4. HEADER & MENÜ YAPISI (Eski Temadan Kalanlar) */

.main-header {
    position: absolute;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    background: transparent;
}

.main-header .header-upper .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Ana Menü */
.main-menu .navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 40px;
}

.main-menu .navigation > li {
    position: relative;
    padding: 30px 0;
    margin-right: 30px;
}

.main-menu .navigation > li > a {
    font-family: var(--font-primary);
    font-weight: 500; /* 800 DEĞERİ 500'E ÇEKİLDİ (Kaba görüntü silindi) */
    font-size: 14px;
    text-transform: uppercase;
    color: var(--brand-navy);
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: block;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li > a:hover {
    color: var(--brand-orange);
}

/* Dropdown Menü */
.main-menu .navigation > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: var(--white);
    border-top: 3px solid var(--brand-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-menu .navigation > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .navigation > li > ul > li {
    border-bottom: 1px solid #f9fafb;
}

.main-menu .navigation > li > ul > li > a {
    display: block;
    padding: 12px 20px;
    color: var(--brand-navy);
    font-weight: 500; /* 600 -> 500 */
    font-size: 13px;
    transition: all 0.3s;
}

.main-menu .navigation > li > ul > li > a:hover {
    background-color: #f9fafb;
    color: var(--brand-orange);
    padding-left: 25px;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 99999;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fixed-header .sticky-header {
    opacity: 1;
    visibility: visible;
}

/* 5. MOBİL MENÜ */
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: var(--white); /* Koyu zemin yerine beyaz yapıldı */
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s ease;
    padding-top: 50px;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu .navigation li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu .navigation li > a {
    color: var(--brand-navy);
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.mobile-menu .navigation li > a:hover {
    color: var(--brand-orange);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--brand-navy);
    cursor: pointer;
    font-size: 24px;
}

.mobile-nav-toggler {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--brand-navy);
}

@media (max-width: 1023px) {
    .nav-outer .main-menu { display: none; }
    .mobile-nav-toggler { display: block; }
}

/* 6. GENEL BÖLÜMLER (SECTIONS) */

.sec-title {
    font-size: 36px;
    color: var(--brand-navy);
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.sub-title {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.text {
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section h1 {
    color: var(--white);
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Feature / Amenities Blocks */
.feature-block, .amenities-block, .service-block {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-block h4, .amenities-block h4 {
    color: var(--brand-navy);
    transition: 0.3s;
    font-weight: 600;
}

.feature-block:hover h4 {
    color: var(--brand-orange);
}

.feature-block i, .amenities-block i {
    color: var(--brand-orange);
    font-size: 35px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Testimonials (Müşteri Yorumları) */
.testimonial-block {
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.testimonial-block .name {
    color: var(--brand-navy);
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-block .designation {
    color: var(--brand-orange);
    font-size: 13px;
}

/* Footer Section (Eski Yapıdan Kalanlar) */
.main-footer {
    background-color: var(--brand-navy);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.main-footer h3, .main-footer h4 {
    color: var(--white);
    margin-bottom: 30px;
}

.main-footer a {
    color: rgba(255,255,255,0.7);
}

.main-footer a:hover {
    color: var(--brand-orange);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
}

/* 8. ÖZEL İÇERİK FORMATLARI (Restoran & Oda Açıklamaları) */
.resort-long-text {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    font-weight: 400;
}

.resort-long-text p {
    margin-bottom: 1.2rem;
}

/* Koyu Başlıklı "Neden Biz?" Kutuları */
.why-us-box {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--brand-orange);
    margin-top: 40px;
}

.why-us-box h3 {
    font-size: 20px;
    color: var(--brand-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

/* 7. DİĞER YARDIMCI SINIFLAR */
.bg-light { background-color: var(--light-gray) !important; }
.bg-navy { background-color: var(--brand-navy) !important; }
.text-orange { color: var(--brand-orange) !important; }
.text-navy { color: var(--brand-navy) !important; }

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--brand-orange);
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    display: none;
    transition: 0.3s;
}

.scroll-to-top:hover {
    background: var(--brand-navy);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .sec-title { font-size: 26px; }
    .banner-section h1 { font-size: 32px; }
    .main-header .header-upper .inner-container { padding: 0 10px; }
    
    /* Mobilde Header fontları */
    .mobile-menu .navigation li > a {
        font-family: var(--font-primary);
        font-weight: 500; /* 700'den 500'e çekildi */
    }
}
