.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        padding: 15px 10px;
        gap: 15px;
    }
}

.slider-section {
    flex: 1;
    background-color: white;
    border-radius: 7px;
    height: 500px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .slider-section {
        height: 300px;
        padding: 10px;
    }
    
    .slider-container {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .slider-section {
        height: 250px;
        padding: 8px;
    }
    
    .slider-container {
        min-height: 234px;
    }
}

.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.slider-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 7px;
    color: #999;
    font-size: 24px;
    font-weight: 500;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 7px;
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 3;
    pointer-events: none;
    border-radius: 7px;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease-in-out;
    z-index: 1;
}

.slide-item.active {
    left: 0;
    z-index: 2;
}

.slide-item.prev {
    left: -100%;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    display: block;
}

/* Slide Caption (Başlık) */
.slide-caption {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90%;
    padding: 30px 20px 20px 20px;
    z-index: 5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-title {
    color: #defb24;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .slide-caption {
        bottom: 80px;
        padding: 20px 15px 15px 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slide-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .slide-caption {
        bottom: 60px;
        padding: 15px 10px 10px 10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slide-title {
        font-size: 18px;
    }
}

/* Slider Kontrolleri */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Slider Noktaları */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

@media (max-width: 768px) {
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

.sidebar-section {
    width: 300px;
    background-color: #fafafa;
    border-radius: 7px;
    min-height: 400px;
    padding: 20px;
}

@media (max-width: 768px) {
    .sidebar-section {
        width: 100%;
        min-height: auto;
        padding: 15px;
    }
}

.hotels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar-title {
    font-size: 18px;
    color: #01796f;
    margin: 0;
    font-weight: bold;
    flex: 1;
}

.hotel-preloader {
    width: 30px;
    height: 30px;
    position: relative;
}

.preloader-svg {
    width: 30px;
    height: 30px;
    transform: rotate(-90deg);
}

.preloader-circle-bg {
    opacity: 0.3;
}

.preloader-circle {
    transition: stroke-dashoffset 0.1s linear;
}

.hotels-list-container {
    overflow: hidden;
    max-height: 400px;
}

.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.hotel-link {
    text-decoration: none;
    display: block;
}

.hotel-item {
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 8px;
    border-radius: 7px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

@media (max-width: 480px) {
    .hotel-item {
        padding: 6px;
        gap: 8px;
    }

    .hotel-image {
        width: 60px;
        height: 60px;
    }

    .hotel-name {
        font-size: 12px;
    }

    .hotel-phone {
        font-size: 10px;
    }
}

.hotel-item:hover {
    transform: translateX(5px);
}

.hotel-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 7px;
    flex-shrink: 0;
}

.hotel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-name {
    font-size: 13px;
    color: #333;
    margin: 0 0 3px 0;
    font-weight: bold;
    line-height: 1.3;
}

.hotel-stars-display {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.star-icon {
    font-size: 14px;
    color: #ddd;
    line-height: 1;
}

.star-icon.filled {
    color: #ffc107;
}

.hotel-phone {
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

.all-hotels-link {
    margin-top: 15px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.all-hotels-link a {
    color: #01796f;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.all-hotels-link a:hover {
    color: #0d3d26;
    text-decoration: underline;
}

.news-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.news-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.news-item {
    flex: 1;
    min-width: 200px;
    background-color: white;
    border-radius: 7px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.news-item-content {
    padding: 15px;
}

.news-item h3 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 40px;
    margin-top: 0;
}

.news-item h3 a {
    color: #333;
    text-decoration: none;
}

.news-item h3 a:hover {
    color: #01796f;
}

.news-item .description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item .date {
    font-size: 11px;
    color: #999;
}

.news-section-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5px 20px 20px 20px;
}

.news-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-section-title {
    font-size: 24px;
    color: #01796f;
    margin: 0;
    font-weight: bold;
    text-align: left;
}

.refresh-news-btn {
    background-color: #01796f;
    color: white;
    padding: 8px 16px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.refresh-news-btn:hover {
    background-color: #0d3d26;
}

.news-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.news-card {
    background-color: white;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.news-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.news-card-content {
    padding: 12px;
}

.news-card-title {
    font-size: 13px;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    min-height: 36px;
}

.news-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-title a:hover {
    color: #01796f;
}

.news-card-date {
    font-size: 11px;
    color: #999;
}

@media (max-width: 1200px) {
    .news-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .news-grid-container {
        grid-template-columns: 1fr;
    }
}

.sections-below-slider {
    max-width: 1300px;
    margin: 10px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.section-card {
    background-color: white;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-link {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 0 20px 20px 20px;
}

.section-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px 7px 0 0;
}

.section-icon {
    font-size: 48px;
    margin-bottom: 15px;
}


.section-title {
    font-size: 20px;
    color: #01796f;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.section-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sections-below-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .section-image {
        height: 150px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sections-below-slider {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }

    .section-image {
        height: 180px;
    }

    .section-title {
        font-size: 15px;
    }

    .section-description {
        font-size: 11px;
    }
}

.horoscope-section {
    max-width: 1300px;
    margin: 0 auto 20px auto;
    padding: 0 20px;
}

.horoscope-title {
    font-size: 24px;
    color: #01796f;
    margin: 0 0 15px 0;
    font-weight: bold;
    text-align: left;
}

.horoscope-row {
    display: flex;
    gap: 0;
    background-color: white;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.horoscope-item {
    flex: 1;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 8px;
    background-color: white;
    border-right: 1px solid #e0e0e0;
    transition: background-color 0.3s;
    text-align: center;
    min-height: 90px;
}

.horoscope-item:last-child {
    border-right: none;
}

.horoscope-item:hover {
    background-color: #f5f5f5;
}


.horoscope-symbol {
    font-size: 32px;
    color: #ff6b9d;
    margin-bottom: 5px;
    line-height: 1;
    font-weight: normal;
}

.horoscope-name {
    font-size: 12px;
    color: #000000;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .horoscope-row {
        flex-wrap: wrap;
    }
    
    .horoscope-item {
        flex: 0 0 calc(25% - 1px);
        min-width: 0;
    }
    
    .horoscope-symbol {
        font-size: 24px;
    }
    
    .horoscope-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .horoscope-item {
        flex: 0 0 calc(33.333% - 1px);
    }
    
    .horoscope-symbol {
        font-size: 20px;
    }
    
    .horoscope-name {
        font-size: 9px;
    }
}

