﻿/* Banner */
.banner {
    background: url(../img/kabe_1.png) center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-blend-mode: darken;
    background-color: rgba(0,0,0,0.5);
    animation: fadeBanner 1.5s ease-in-out forwards;
    height: 400px; /* sabit yükseklik eklendi */
    display: flex;
    align-items: center; /* dikeyde ortala */
}

@keyframes fadeBanner {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.banner h2 {
    font-size: 18px;
    margin-bottom: 5px;
    text-shadow: 0 3px 5px rgba(0,0,0,0.3);
    text-align: left;
}

.banner p {
    font-size: 32px;
    font-weight: 200;
    text-align: left;
}

.banner-content {
    text-align: left;
    margin-left: 10px; /* isteğe göre sola boşluk */
}

.banner-btn {
    background: #F5A623; /* Altın renk */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: 80px; /* H2 ve P’den sonra boşluk */
    display: inline-block; /* Sola dayalı kalmasını sağlar */
}

    .banner-btn:hover {
        background: #b07d2a;
    }


/* Hero Section */
.hero {
    background: url(../img/kabe_2.png) center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 40px; /* 🔽 başlığı aşağı indirir */
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    animation: slideUp 1.2s ease forwards;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero-btn {
    background: orange;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .hero-btn:hover {
        background: #b07d2a;
        transform: scale(1.05);
    }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .feature-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .feature-card h3 {
        padding: 20px;
        font-size: 18px;
        color: #333;
    }

/* Program link */
.program-link {
    text-align: center;
    margin: 40px 0 60px;
}

    .program-link a {
        text-decoration: none;
        font-weight: bold;
        color: #F5A623;
        border-bottom: 2px solid #c9a568;
        padding-bottom: 5px;
        transition: color 0.3s ease;
    }

        .program-link a:hover {
            color: #b07d2a;
        }

.about-us {
    background-size: cover;
    background-position: center;
}

.overlay-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-logo {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

    .about-logo img {
        max-width: 100%;
        height: auto;
    }

.about-text {
    flex: 2;
    min-width: 300px;
}

    .about-text h2 {
        margin-bottom: 20px;
        font-size: 32px;
        color: #333;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }

    .about-text h3 {
        margin-bottom: 16px; /* Paragraflar arasında boşluk */
    }

    .about-text p {
        margin-bottom: 16px; /* Paragraflar arasında boşluk */
    }

/* Geriden gelip görünme animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* KART GRID */
.tour-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center; /* 🔥 PC'de ORTALA */
    align-items: stretch;
    max-width: 1200px; /* sayfada çok yayılmasın */
    margin: 0 auto; /* ortalama */
    padding: 0 16px; /* mobil taşmayı önler */
    box-sizing: border-box;
}

/* KART */
.tour-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 360px;          
    flex: 0 0 360px;      
    max-width: 360px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .tour-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    }

/* RESİMLER */
.tour-images {
    display: flex;
}

    .tour-images img {
        width: 50%;
        height: 120px;
        object-fit: cover;
        transition: transform 0.3s;
    }

.tour-card:hover .tour-images img {
    transform: scale(1.05);
}

.tour-card.expired {
    position: relative;
    opacity: 0.6; /* Gri efekt */
    pointer-events: none; /* Butonlar dahil tıklanamaz */
}

    .tour-card.expired::after {
        content: "Tamamlandı";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 10px 20px;
        border-radius: 10px;
        font-family: 'Montserrat', 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.05rem;
        z-index: 10;
    }

    .tour-card.expired img {
        filter: grayscale(100%);
    }

/* BAŞLIK VE FİYAT */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

    .card-header h6 {
        margin: 0;
        font-size: 14px;
    }

    .card-header p {
        margin: 0;
        font-size: 11px;
        color: #6c757d;
    }

    .card-header .price h6 {
        margin: 0;
        font-size: 14px;
    }

    .card-header .price small {
        font-size: 9px;
        color: #6c757d;
    }

/* BÖLÜCÜ ÇİZGİ */
.divider {
    border-top: 1px solid #eee;
    margin: 5px 10px;
}

/* BİLGİLER */
.card-info {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 5px;
}

/* BUTONLAR */
.card-buttons {
    display: flex;
    gap: 5px;
    padding: 10px;
}

    .card-buttons button {
        flex: 1;
        padding: 6px;
        font-size: 12px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        transition: transform 0.2s;
    }

        .card-buttons button:hover {
            transform: scale(1.05);
        }

        .card-buttons button.call {
            background-color: #ffc107;
            color: #212529;
        }

        .card-buttons button:not(.call) {
            background-color: #007bff;
            color: #fff;
        }

/* SOLD OUT */
.tour-card.soldout {
    position: relative;
    opacity: 0.6;
}

    .tour-card.soldout::after {
        content: "DOLDU";
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #dc3545;
        color: #fff;
        padding: 3px 7px;
        font-size: 10px;
        font-weight: bold;
        border-radius: 3px;
    }

/* Banner yazı animasyonu */
.banner-content h2,
.banner-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.banner-content h2 {
    animation-delay: 0.2s;
}

.banner-content p {
    animation-delay: 0.5s;
}

.banner-content .banner-btn {
    display: inline-block;
    transform-origin: center;
}

/* Fade-up animasyonu */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sallanma animasyonu */
@keyframes shakePause {
    0%, 16.66% {
        transform: translateX(0);
    }

    2%, 4%, 6%, 8%, 10%, 12%, 14% {
        transform: translateX(-2px);
    }

    3%, 5%, 7%, 9%, 11%, 13%, 15% {
        transform: translateX(2px);
    }

    16.66%, 100% {
        transform: translateX(0);
    }
}

.features-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: 60px 0 40px 0;
}

.features {
    display: flex; /* Kartları yanyana diz */
    justify-content: center; /* Ortala */
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px 20px 10px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9); /* Hafif gradient */
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    width: 400px; /* Kart eni */
    max-height: 800px; /* Kart boyu */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
    }

    .feature-card img {
        width: 100%;
        max-width: 180px;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .feature-card ul.feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
        text-align: left;
    }

        .feature-card ul.feature-list li {
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px; /* İkon ile metin arası boşluk */
        }

/* Mobil uyumlu */
@media (max-width: 768px) {
    .banner {
        padding: 60px 15px;
        height: auto;
    }

        .banner h2 {
            font-size: 16px;
        }

        .banner p {
            font-size: 24px;
        }

    .banner-btn {
        padding: 8px 16px;
        margin-top: 80px;
    }

    .hero {
        padding: 80px 15px;
    }

        .hero h1 {
            font-size: 28px;
        }

        .hero p {
            font-size: 16px;
            margin-bottom: 30px;
        }

    .hero-btn {
        padding: 10px 25px;
    }

    .features {
        gap: 20px;
        margin: 40px auto;
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 350px;
        max-height: none;
    }

        .feature-card img {
            height: 150px;
            max-width: 150px;
        }

        .feature-card h3 {
            font-size: 18px;
        }

        .feature-card ul.feature-list li {
            font-size: 14px;
        }

    .features-title {
        font-size: 24px;
        margin: 40px 0 30px;
    }

    .program-link {
        margin: 30px 0 40px;
    }

    .overlay-box {
        flex-direction: column;
        padding: 30px 20px;
    }

    .about-logo {
        min-width: auto;
    }

    .about-text {
        min-width: auto;
        text-align: center;
    }

        .about-text h2 {
            font-size: 24px;
            text-align: center;
        }

        .about-text p {
            font-size: 14px;
            text-align: center;
        }

    .tours {
        padding: 25px;
    }

    .tour-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tour-card {
        max-width: none;
    }

    .tour-images img {
        height: 100px;
    }

    .modal-content {
        padding: 20px;
        max-width: 90%;
    }

    .modal-logo {
        width: 120px;
    }

    .modal-content h2 {
        font-size: 20px;
    }

    .modal-content p {
        font-size: 12px;
    }

    .modal-btn {
        padding: 8px 16px;
    }
}

@media (max-width: 600px) {
    .tour-images img {
        height: 80px;
    }

    .card-header h6, .card-header .price h6 {
        font-size: 12px;
    }

    .card-header p, .card-header .price small, .card-info {
        font-size: 9px;
    }

    .card-buttons button {
        font-size: 10px;
    }
}

@media (max-width: 1024px) {
    .tour-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tour-list {
        grid-template-columns: 1fr;
    }
}

.section-title {
    margin-top: 40px; /* 🔽 başlığı aşağı indirir */
    text-align:center;
}

.section-title h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04rem;
    color: #1f4d2b;
    margin-bottom: 16px;
}

.section-title p {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin: 0;
}

.visits-wrapper {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.visits-intro {
    text-align: center;
    margin-bottom: 50px;
}

    .visits-intro h2 {
        font-size: 32px;
        color: #1f4d2b;
        margin-bottom: 12px;
    }

    .visits-intro p {
        max-width: 720px;
        margin: auto;
        color: #555;
        line-height: 1.7;
    }

.visit-section {
    margin-bottom: 60px;
}

    .visit-section h3 {
        font-size: 24px;
        margin-bottom: 25px;
        color: #1f4d2b;
    }

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.visit-item {
    background: #f9fbf9;
    border-left: 4px solid #7bc47f;
    padding: 18px 20px;
    border-radius: 10px;
    transition: all .25s ease;
}

    .visit-item strong {
        display: block;
        font-size: 15.5px;
        color: #2f7d32;
        margin-bottom: 6px;
    }

    .visit-item span {
        font-size: 14.5px;
        color: #555;
        line-height: 1.6;
    }

    .visit-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        background: #ffffff;
    }

/* logo alanı */
.card-logo {
    position: absolute;
    bottom: 16px;
    right: 16px;
    opacity: 0.35;
    transition: opacity .25s ease, transform .25s ease;
}

    .card-logo img {
        max-width: 60px;
        height: auto;
    }

/* hover’da hafif belirginleşsin */
.testimonial-card:hover .card-logo {
    opacity: 0.6;
    transform: translateY(-2px);
}

.rating {
    color: #f5b301; /* altın sarısı */
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonials-section {
    padding: 5px 20px;
    background: #f8f9fa;
    color: #1f4d2b;
}
    .testimonials-section h2 {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: 0.04rem;
        color: #1f4d2b;
        margin-bottom: 16px;
    }

    .testimonials-section .section-title p {
        font-family: 'Inter', 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #777;
        margin: 0;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

.comment {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

    .comment::before {
        font-size: 50px;
        color: #d1b36a;
        position: absolute;
        top: -20px;
        left: -5px;
    }

.author {
    display: flex;
    flex-direction: column;
}

    .author strong {
        font-size: 15px;
        color: #222;
    }

    .author span {
        font-size: 13px;
        color: #888;
    }

.about-text {
    font-family: 'Montserrat', 'Inter', sans-serif;
    max-width: 720px;
}

.about-title {
    color: #1f4d2b;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04rem;
    margin-bottom: 14px;
}

.about-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.about-text strong {
    color: #1f4d2b;
    font-weight: 600;
}

.about-lead {
    font-size: 16px;
}

.corporate-values {
    margin-top: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-box {
    background: #f9f9f9;
    padding: 28px;
    border-left: 4px solid #F5A623;
}

    .value-box h4 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .value-box p {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
    }

.why-us {
    margin-top: 50px;
}

.why-list {
    padding-left: 18px;
}

    .why-list li {
        margin-bottom: 10px;
        font-size: 15.5px;
        color: #444;
    }