/* =========================================
   GENEL AYARLAR
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #FDFBF4; /* Tabeladaki Krem Arka Plan */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   ÜST MENÜ VE LOGO TASARIMI (ÇAKIŞMAYI ÖNLER)
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FDFBF4;
    padding: 15px 30px;
    border-bottom: 2px solid #f2e8e9;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 16px;
    font-weight: 700;
    color: #701F3D;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.logo-slogan {
    font-size: 9px;
    color: #666;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.3s;
    white-space: nowrap;
}

nav ul li a:hover, nav ul li a.active {
    color: #701F3D;
    background-color: #f2e8e9;
}

/* =========================================
   ANA EKRAN VE VİDEO AYARLARI
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 251, 244, 0.4);
    z-index: 1;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    object-position: center center; /* Videoyu tam merkeze odaklar */
}

.hero-icerik {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 1000px;
}

.hero-icerik h1 {
    font-size: 48px;
    font-weight: 800;
    color: #701F3D;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.hero-slogan {
    font-size: 20px;
    font-weight: 500;
    color: #701F3D;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.location-badge {
    display: inline-block;
    background-color: #701F3D;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.location-badge i {
    margin-right: 5px;
}

/* =========================================
   GİRİŞ METNİ BÖLÜMÜ
   ========================================= */
.intro {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}

.intro h2 {
    color: #701F3D;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 40px;
}

.aciklama-kutusu {
    background-color: #FDFBF4;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.aciklama-kutusu p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #701F3D;
}

.aciklama-kutusu p.special {
    font-weight: 700;
    font-size: 18px;
    color: #701F3D;
}

/* =========================================
   SUNULAN HİZMETLERİMİZ BÖLÜMÜ
   ========================================= */
.services {
    background-color: #FDFBF4;
    padding: 100px 0;
    text-align: center;
}

.section-title-box {
    background-color: #701F3D;
    color: white;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Ekran daraldığında taşmayı önleyen duyarlı yapı */
@media screen and (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: #701F3D;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.service-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-item i {
    color: #701F3D;
    font-size: 30px;
    margin-bottom: 15px;
}

/* =========================================
   TESİSLERİMİZDEN GÖRSELLER BÖLÜMÜ
   ========================================= */
.facility-preview {
    background-color: white;
    padding: 100px 0;
}

.facility-preview .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.preview-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
}

.preview-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.preview-item span {
    display: block;
    padding: 20px;
    color: #701F3D;
    font-weight: 700;
    font-size: 14px;
}

/* =========================================
   FOOTER İLETİŞİM BİLGİLERİ
   ========================================= */
footer {
    background-color: #701F3D;
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-value {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    white-space: nowrap;
}

.contact-item:nth-child(2) .contact-value {
    white-space: normal;
    max-width: 280px;
}

.footer-slogan {
    display: flex;
    align-items: center;
    max-width: 320px;
}

.footer-slogan i {
    font-size: 32px;
    margin-right: 15px;
}

.slogan-text {
    display: flex;
    flex-direction: column;
}

.slogan-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.slogan-subtitle {
    font-weight: 400;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.9;
}

/* =========================================
   ALT SAYFA BAŞLIKLARI
   ========================================= */
.page-header {
    background-color: #701F3D;
    color: white;
    text-align: center;
    padding: 160px 20px 80px; 
    background-image: linear-gradient(to right, #701F3D, #4a1327);
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* =========================================
   HAKKIMIZDA SAYFASI İÇERİĞİ
   ========================================= */
.about-content {
    padding: 80px 20px;
}

.text-left {
    text-align: left !important;
}

.text-left h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
    color: #701F3D;
}

.about-content h3 {
    color: #701F3D;
    font-size: 20px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 10px;
}

/* =========================================
   ODALARIMIZ SAYFASI
   ========================================= */
.text-center {
    text-align: center;
}

.room-tabs {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-btn {
    background-color: #FDFBF4;
    color: #701F3D;
    border: 2px solid #701F3D;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn:hover {
    background-color: #f2e8e9;
}

.tab-btn.active {
    background-color: #701F3D;
    color: white;
}

.room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.room-features {
    list-style: none;
    margin-top: 15px;
}

.room-features li {
    margin-bottom: 12px;
    color: #701F3D;
    font-weight: 500;
    font-size: 15px;
}

.room-features li i {
    margin-right: 12px;
    color: #d4af37;
}

.action-btn {
    background-color: #701F3D;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.action-btn:hover {
    background-color: #4a1327;
    color: white;
    transform: translateY(-2px);
}

.room-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.room-pic {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.room-pic:hover {
    transform: scale(1.03);
}

/* =========================================
   HİZMETLERİMİZ SAYFASI
   ========================================= */
.services-page-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    width: 320px;
    max-width: 100%;
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-bottom: 4px solid #701F3D;
}

.service-card i {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #701F3D;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    margin-bottom: 0 !important;
}

.service-tags {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #701F3D;
    background-color: white;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-tags span {
    margin: 0 5px;
}

/* =========================================
   KONUM SAYFASI
   ========================================= */
.location-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid #701F3D;
    transition: 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-card i {
    font-size: 45px;
    color: #d4af37;
    margin-bottom: 20px;
}

.location-card h3 {
    color: #701F3D;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-card p {
    color: #555 !important;
    margin-bottom: 10px !important;
}

.map-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-action {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.call-btn { background-color: #701F3D; }
.wa-btn { background-color: #25D366; }
.map-btn { background-color: #d4af37; }

/* =========================================
   LIGHTBOX (BÜYÜYEN GALERİ) TASARIMI
   ========================================= */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: 0.3s;
}

.close-btn:hover {
    color: #d4af37;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.4);
    z-index: 10000;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: #d4af37;
}

.prev { left: 30px; }
.next { right: 30px; }

/* =========================================
   GALERİ KÜÇÜK FOTOĞRAF (IZGARA) AYARLARI
   ========================================= */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 20px !important;
    padding: 20px 0;
}

.gallery-item {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background-color: #f5f5f5;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* =========================================
   İLETİŞİM VE KAYIT SAYFASI
   ========================================= */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
}

.contact-page-info h3, .contact-page-form h3 {
    color: #701F3D;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #701F3D;
    padding-bottom: 10px;
    display: inline-block;
}

.contact-page-info p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    background-color: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #d4af37;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #701F3D;
}

.info-card i {
    font-size: 30px;
    color: #701F3D;
}

.info-card h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

.info-card span {
    color: #666;
    font-size: 14px;
}

.contact-page-form {
    background-color: #FDFBF4;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #701F3D;
    font-weight: 600;
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.3s;
    background-color: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #701F3D;
    box-shadow: 0 0 8px rgba(112, 31, 61, 0.2);
}

.submit-btn {
    background-color: #701F3D;
    color: white;
    border: none;
    padding: 15px 30px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #4a1327;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* =========================================
   MOBİL UYUMLULUK
   ========================================= */
@media screen and (max-width: 900px) {
    nav {
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
        text-align: center;
    }

    /* Logoyu ve yazıyı yan yana ve ortalı tutar */
    .logo-link {
        flex-direction: row; /* Yan yana dizer */
        align-items: center; /* Dikeyde ortalar */
        justify-content: center; /* Yatayda tam ortalar */
        text-align: left; /* Yazılar kendi içinde düzgün durur */
        gap: 12px;
    }

    .logo-text {
        align-items: flex-start; /* Yazıları sola dayalı tutar ki logoyla uyumlu olsun */
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .room-grid {
        grid-template-columns: 1fr !important;
    }
    
    .room-images {
        grid-template-columns: 1fr !important;
    }
    
    .contbct-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}