.main-menu .navigation>li {
    margin: 0px 10px;
}

  :root {
    --theme-color: #77A96A;
    --accent-color: #D32F2F;
}

/* Genel yapı */
.course-section {
    background: #f8f9f8;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sec-title h2 {
    color: #2e2e2e;
    font-weight: 700;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

@media (max-width: 600px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* Kart yapısı */
.offer-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-6px);
}

.image-box-hotels {
    position: relative;
}

.image-box-hotels img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--theme-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.lower-content {
    padding: 20px;
}

.lower-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.stars {
    color: #f7b500;
    margin-bottom: 10px;
}

.date {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.date i {
    margin-right: 8px;
    color: var(--theme-color);
}

.offer-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.offer-details li {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.offer-details i {
    color: var(--theme-color);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Alt fiyat bölümü */
.price-footer {
    background: var(--theme-color);
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

.price-footer .location {
    font-size: 14px;
}

.price-footer .price {
    font-size: 18px;
}

.main-footer .pattern-layer {
    position: absolute;
    left: 0px;
    top: -1px;
    width: 100%;
    height: 60px!important;
}
.banner-section .pattern-layer {
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 100%;
    height: 60px!important;
}


/* Header icon alignment */
.main-header [class^="icon-"],
.main-header [class*=" icon-"],
.header-top [class^="icon-"],
.header-top [class*=" icon-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

/* Home header white gap fixes */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

.main-header,
.main-header .header-top,
.main-header .header-lower {
    margin: 0 !important;
}

.main-header .outer-box,
.main-header .outer-container .left-column {
    align-items: stretch;
}

.main-header .outer-container .left-column .logo-box {
    display: flex;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.main-header .outer-container .left-column .logo-box a,
.main-header .outer-container .left-column .logo-box img {
    display: block;
}

.banner-section {
    margin-top: 0 !important;
}
