/* Ana Sayfa CSS Stilleri */
/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

/* Responsive kolonlar */
.col-md-6 {
    width: 100%;
}

.col-lg-4, .col-lg-6 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        width: 33.333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
}

/* Header Stilleri */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: white
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 180px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: black !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #e84c3d;
}

.btn-rezervasyon {
    background-color: #e84c3d;
    padding: 8px 15px;
    border-radius: 5px;
}

.btn-rezervasyon:hover {
    background-color: #d4382a;
    color: #fff !important;
}

.mobile-nav-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
}

.slider-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slider-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    color: #fff;
}

.slider-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Section Stilleri */

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

/* Hakkımızda Bölümü */
.about-image {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content p {
    margin-bottom: 20px;
}

.signature {
    margin: 20px 0;
    max-width: 150px;
}

.signature img {
    width: 100%;
    height: auto;
}

.about-content h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.about-content span {
    color: #666;
    font-style: italic;
}

/* Özellikler Bölümü */
.features-section {
    background-color: #f9f9f9;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    min-height: 250px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    background-color: #e84c3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 28px;
}

.feature-box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

   .mobile-tel{

        display: none;

    }
/* Footer Stilleri */
.site-footer {
    background-color: #222;
    color: #999;
    padding-top: 70px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e84c3d;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #e84c3d;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e84c3d;
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 10px;
    color: #e84c3d;
    margin-top: 5px;
}

.contact-info a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #e84c3d;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

/* Responsive Stilleri */
@media (max-width: 991px) {

    .main-nav.active {

        background: white !important;


    }

    .mobile-tel{

        display: block;
        text-decoration: none;
        color: black;
        font-weight: bolder;

    }
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
        color: black;
    }
    
    .slider-content h1 {
        font-size: 36px;
    }
    
    .slider-content p {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .slider-content h1 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .feature-box {
        min-height: auto;
    }
}

/* Buton Stilleri */
.theme-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-style-one {
    background-color: #e84c3d;
    color: #fff;
    border: 2px solid #e84c3d;
}

.btn-style-one:hover {
    background-color: #d4382a;
    border-color: #d4382a;
}

.btn-style-two {
    background-color: transparent;
    color: #e84c3d;
    border: 2px solid #e84c3d;
}

.btn-style-two:hover {
    background-color: #e84c3d;
    color: #fff;
}

.btn-title {
    display: block;
    line-height: 1.2;
}


.main-nav a.active {
    color: white;
    font-weight: 700;
}



/* Yatay kaydırma sorununu çözmek için eklenecek CSS */

/* Tüm sayfa içeriğinin taşmasını önleme */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Taşabilen içerikleri düzeltme */
img, table, iframe, video, embed, object {
    max-width: 100%;
    height: auto;
}

/* Galeri responsive düzeltmeleri */
.gallery-slider-container {
    width: 100%;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}

/* Arama çubuğu düzeltmeleri */
.search-bar {
    max-width: 100%;
    overflow: hidden;
}

/* Oda ve galeri kartları düzeltmeleri */
.room-card, .gallery-image, .otelimiz-card {
    width: 100%;
    box-sizing: border-box;
}

/* Mobil görünümde tablo düzeltmesi */
@media (max-width: 767px) {
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Oda kartı düzeltmesi */
    .oda-karti {
        flex-direction: column;
        width: 100%;
    }
    
    .oda-resim, .oda-detay {
        width: 100%;
    }
    
    /* Galeri slider düzeltmesi */
    .gallery-main-slider {
        margin: 0 20px;
    }
    
    /* Tarih ve misafir alanları düzeltmesi */
    .date-field, .guest-field {
        width: 100%;
    }
    
    /* Feature item genişliği */
    .feature-item {
        width: 50%;
    }
}

/* Flatpickr taşma sorunu düzeltmesi */
.flatpickr-calendar {
    max-width: 100vw;
}

/* Video ve iframe düzeltmesi */
.responsive-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 oranı */
    height: 0;
    overflow: hidden;
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Masonry gallery düzeltmesi */
@media (max-width: 575px) {
    .masonry-gallery {
        column-count: 1;
        width: 100%;
        overflow: hidden;
    }
    
    .masonry-item {
        width: 100%;
    }
}

/* Özellikler bölümünde taşma düzeltmesi */
.oda-ozellikler {
    overflow: hidden;
}