:root {
    --card-gap: 20px;

    --orange-1: rgba(153, 76, 0, 1);
    --orange-2: rgba(204, 102, 0, 1);
    --orange-3: rgba(255, 128, 0, 1);
    --orange-4: rgba(255, 153, 51, 1);
    --orange-5: rgba(255, 178, 102, 1);
    --orange-6: rgba(255, 204, 153, 1);
    --orange-7: rgb(251, 223, 196);

    --green-1: rgba(0, 51, 0, 1);
    --green-2: rgba(0, 102, 0, 1);
    --green-3: rgba(0, 153, 0, 1);
    --green-4: rgba(51, 204, 51, 1);
    --green-5: rgba(102, 255, 102, 1);
    --green-6: rgba(153, 255, 153, 1);
    --green-7: rgba(199, 232, 181, 0.7);
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: rgb(249, 249, 249)
}

.header {
    width: 100%;
    height: 130px;
    background-color: var(--orange-3);
    position: relative;
    z-index: 10;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.header-cont {
    width: 100%;
    height: 100%;
    max-height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-top {
    width: 90%;
    height: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    color: #fff;
    font-size: 12px;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--orange-4) !important;
    border-radius: 0 0 10px 10px;
}

.logo {
    width: 140px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

.logo-desktop {
    display: block !important;
}

.logo-mobile {
    display: none !important;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mobile-nav {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    display: flex;
    /* her iki durumda da flex */
    flex-direction: column;
    /* zaten liste column */
    background: linear-gradient(to bottom,
            var(--orange-3) 0%,
            var(--orange-4) 60%);
    transform: translateY(-200%);
    /* yukarıda tamamen gizli */
    transition: transform 0.3s ease-in-out;
    z-index: -1000;
    /* diğer öğelerin üstünde kalsın */
}

.mobile-nav.open {
    transform: translateY(0);
    /* geldiği yere kaydırsın */
}

.mobile-nav-list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    text-align: center;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--orange-7);
}

.mobile-nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    padding: 20px 0;
}

.mobile-nav-list li a:hover {
    background-color: var(--orange-5);
}

.nav {
    display: flex;
    gap: 20px;
    height: 100px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    height: 100%;
}

.nav-item {
    height: 100%;
}

.nav-link {
    position: relative;
    color: var(--orange-7);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    padding: 0 10px;
    line-height: 100px;
    transition: color 0.3s ease;
    display: block;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background-color: white;
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger::before,
.hamburger::after,
.hamburger div {
    content: "";
    display: block;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.hamburger div {
    margin: 6px 0;
}

.header-actions {
    display: flex;
    align-items: center;
}

.lang-switch {
    color: #fff;
    margin-right: 20px;
}

.lang-switch a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin: 0 5px;
}

.lang-switch a:hover {
    text-decoration: underline;
    ;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a {
    color: #fff;
    margin-left: 10px;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--orange-3);
    background-color: #fff;
    border-radius: 50%;
}


.container {
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.infos {
    width: 100%;
    height: auto;
    margin-top: 70px;
    margin-bottom: 70px;
}

.lined-heading {
    width: calc(100%-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 10px;
    gap: 30px;
}

.lined-heading::before,
.lined-heading::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--orange-3);
}

.lined-heading span {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #333;
    white-space: nowrap;
}

.features {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    max-width: 300px;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    cursor: default;
    margin: 0 auto;
}

.feature i {
    font-size: 60px;
    color: var(--green-3);
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature p {
    font-size: 13px;
    color: #444;
    text-align: center;
}

.parallax-section {
    width: 100%;
    height: 350px;
    background-image: url('../images/parallax.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@supports (-webkit-overflow-scrolling: touch) {
    .parallax-section {
        background-attachment: scroll;
        background-size: auto 100%;
        background-position: center top;
    }
}

.parallax-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.services {
    margin-top: 50px;
    margin-bottom: 40px;
}

.services .lined-heading {
    margin-bottom: 20px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px 20px;
}

.service {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.service img {
    width: 100%;
    height: auto;
}

.service-content {
    padding: 15px;
}

.service h3 {
    margin-top: 0;
    color: #333;
}

.service p {
    color: #555;
}

@media (min-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer {
    width: 100%;
    background-color: var(--orange-3);
    margin-top: 70px;
}

.footer-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-column a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease;
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin: 0 auto 10px;
}

.footer-brand p {
    margin: 4px 0;
    color: #fff;
}

.footer-brand p a {
    text-decoration: none;
    color: #fff;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--orange-3);
    border-radius: 50%;
}

.vision-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-box {
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 800px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.quote-icon {
    font-size: 40px;
    color: #ccc;
    position: absolute;
    z-index: 0;
}

.quote-icon.left {
    top: 10px;
    left: 10px;
}

.quote-icon.right {
    bottom: 10px;
    right: 10px;
}

.infos {
    padding: 20px;
}

.infos .lined-heading {
    margin-bottom: 40px;
}

.blog-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.blog-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.blog-card:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Yarı saydam info alanı */
.blog-card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 12px;
    box-sizing: border-box;
}

/* Başlık ve metin kısıtlaması */
.blog-card-info h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.blog-card-info p {
    margin: 0 0 8px;
    font-size: 0.875rem;
    line-height: 1.2;
    /* 2 satır sonra kısaltma */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* “Devamını oku” linki */
.blog-card-info .read-more {
    font-size: 0.875rem;
    text-decoration: underline;
    color: #fff;
}

/* Alt satırdaki “Tüm blog yazılarını oku” */
.all-posts {
    margin-top: 20px;
    text-align: right;
}

.all-posts a {
    text-decoration: none;
    font-weight: bold;
    color: var(--orange-3);
}

.all-posts a:hover {
    text-decoration: underline;
}

/* SM (≤640px): 1 sütun, sadece ilk 4 kart */
@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* 5. ve 6. kartı gizle */
    .blog-grid .blog-card:nth-child(n+5) {
        display: none;
    }
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.heading {
    width: 100%;
    margin: 0 auto;
    height: 300px;
    background: url('../images/plume-back.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--orange-3);
    text-align: center;

}


.tour-back h1 {
    text-align: center;
    color: var(--orange-3);
    padding: 10px;
    background-color: #fff;
    opacity: 0.9;
    border-radius: 5px;
}

.hakkimizda {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
}

.box-img {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-img img {
    width: 50%;
}

.box-info {
    width: 50%;
}

.box-info p {
    text-indent: 2em;
    padding-top: 10px;
}

.box-map {
    width: 100%;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.box-contact {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.box-contact h3 {
    vertical-align: middle;
    width: 450px;
    background: linear-gradient(to right, var(--orange-3), var(--orange-5));
    padding: 10px;
    border-radius: 8px
}

.box-contact p {
    width: 450px;
    padding: 15px;
    font-size: 26px;
    color: var(--orange-3)
}

.box-contact a {
    text-decoration: none;
    width: 450px;
    padding: 15px;
    font-size: 16px;
    color: #000;
}

.box-contact span {
    font-size: 16px;
    color: #000;
}

.tour-back {
    background: url('../images/tour-back.jpg') no-repeat center center !important;
    color: #fff;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1;
}

/* Orta boyut (≤768px): 2 sütun */
@media (max-width: 1000px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Küçük boyut (≤640px): 1 sütun */
@media (max-width: 640px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

.tour-card-box {
    padding: 20px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.tour-card-box:hover {
    transform: scale(1.1);
}

.tour-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    /* Link altı çizgi olmasın */
}

.tour-card-img {
    width: 100%;
    /* 4:3 oran için padding-top; isterseniz oranı değiştirin */
    padding-top: 66.66%;
    background-size: cover;
    background-position: center;
}

.tour-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 12px;
    box-sizing: border-box;
    text-align: center;
}

.tour-card-info span {
    font-size: 1rem;
    font-weight: 500;
}

.tour-wrapper {
    display: flex;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

@media (max-width: 1000px) {
    .tour-wrapper {
        flex-direction: column;
    }
}

/* IMAGE WRAPPER */
.image-wrapper {
    flex: 1;
}

.image-wrapper .main-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.image-wrapper .other-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .image-wrapper .other-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-wrapper .other-images .other-img img {
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.image-wrapper .other-images .other-img img:hover {
    transform: scale(1.05);
}

/* TICKET WRAPPER */
.ticket-wrapper {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1000px) {
    .ticket-wrapper {
        width: 100%;
    }
}

/* HER BİR BİLET KUTUSU */
.tour-ticket-box {
    background-color: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-ticket-box h2 {
    font-size: 1.5rem;
    color: var(--orange-5, #ff7a00);
    margin: 0;
}

.route-point {
    font-weight: 500;
}

.route-arrow {
    font-size: 1.2rem;
    color: #666;
}

.tour-ticket-box .ri-timer-2-line {
    font-size: 1.4rem;
    color: #666;
}

.price {
    margin-left: auto;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--green-4, #2a9d8f);
}

/* -----------------------------
   TOUR DETAILS BÖLÜMÜ
------------------------------ */
.tour-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.detail-headline {
    margin-top: 40px;
    margin-bottom: 16px;
}

.detail-headline h2 {
    font-size: 1.8rem;
    color: #444;
    border-bottom: 3px solid var(--orange-5, #ff7a00);
    display: inline-block;
    padding-bottom: 4px;
}

.tour-detail {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    color: #555;
    font-size: 0.95rem;
}

.tour-detail ul {
    list-style: disc inside;
    margin-left: 20px;
}

.tour-detail ul li {
    margin-bottom: 8px;
}

/* PARAGRAF MARGIN */
.tour-detail p,
.tour-detail li {
    margin-bottom: 12px;
}

/* MAİN İÇERİK ARALIK */
.tour-detail-wrapper .tour-detail+.detail-headline {
    margin-top: 32px;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.blog-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-img img {
    border-radius: 16px;
    overflow: hidden;
}

.blog-tag {
    height: auto !important;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.blog-tag a {
    font-size: 12px;
    text-decoration: none;
    color: #8d796c;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #8d796c;
}

.blog-tag-head {
    padding: 10px;
    background-color: var(--orange-3);
    color: #fff;
    border-radius: 5px;
}

.blog-added p {
    font-size: 12px !important;
}

.blog-added {
    text-align: right;
}

.lb-number {
    display: none !important;
}