/* /dev/assets/css/style.css */


/* Genel */

body {
    background: #fff;
    color: #333;
}


/* Container */

.container {
    width: 80%;
    margin: 0 auto;
}


/* Header */

.site-header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.site-header .logo img {
    height: 70px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 600;
    color: #333;
}

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


/* Header */

.site-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}


/* Menü */

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-size: 17px;
    font-weight: 500;
    color: #3a2c2c;
    transition: color 0.3s;
}

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


/* Header Actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Search */

.search-wrapper {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 30px;
    padding: 6px 15px;
}

.search-wrapper input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: #3a2c2c;
    width: 140px;
}

.search-wrapper .icon {
    font-size: 18px;
    color: #3a2c2c;
}


/* Giriş Yap Butonu */

.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4B2C20;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #6a3c2d;
}


/* Dil seçici */

.lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #3a2c2c;
}


/* Hero */

.hero {
    position: relative;
    text-align: center;
    color: #fff;
    background: url('/dev/assets/images/hero.jpg') no-repeat center/cover;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
}


/* Kartlar */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 15px;
    color: #666;
}


/* Footer */

.site-footer {
    background: #f2f2f2;
    height: 120px;
    display: flex;
    align-items: center;
}

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

.logo-footer img {
    height: 60px;
}

.footer-nav ul {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #3a2c2c;
    /* senin menü renginle uyumlu */
}

.footer-nav a:hover {
    color: #4B2C20;
}


/* Hero Swiper */

.hero-swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    /* koyu overlay */
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

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

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

.btn-cta {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background: #fff;
    color: #3a2c2c;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #4B2C20;
    color: #fff;
}


/* Swiper controls */

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #4B2C20;
}


/* Img-Home Section */

.img-home {
    padding: 60px 0;
}

.img-home-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #f5f5f5;
    border-radius: 12px;
}

.img-home-left {
    flex: 1;
}

.img-home-left img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.img-home-right {
    flex: 1;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.img-home-right h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3a2c2c;
}

.img-home-right p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    border: 2px solid #3a2c2c;
    color: #3a2c2c;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #3a2c2c;
    color: #fff;
}

.home-links {
    margin-bottom: 60px;
}

.home-links .row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.home-links .row .col {
    flex: 1;
}

.home-links .row .col img {
    widtH: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.home-link {
    position: relative
}

.home-link h2 {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    /* 116.667% */
}

#inner-promo {
    position: relative;
    height: 50vh;
    /* senin görsel yüksekliğin */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

#inner-promo .bg {
    position: absolute;
    top: -75px;
    /* yarısı yukarı */
    left: 0;
    right: 0;
    height: calc(100% + 150px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateY(0);
    /* başlangıç değer */
}

#inner-promo h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    color: white;
}

#inner-content {
    padding-bottom: 60px;
}

#category-promo {
    height: 60vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 60px;
    box-sizing: content-box;
    background-position: center center;
}

#category-promo .container {
    height: 60vh;
    position: relative;
}

#category-promo .container h1 {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 1;
    color: white;
    font-size: 48px;
}

#category-promo .container img {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1;
}

#activity-promo {
    height: 40vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 60px;
    box-sizing: content-box;
    background-position: center center;
    overflow: hidden;
    position: relative;
}

#activity-promo .bg {
    position: absolute;
    top: -75px;
    /* yarısı yukarı */
    left: 0;
    right: 0;
    height: calc(100% + 150px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateY(0);
    /* başlangıç değer */
}

#activity-promo .container {
    height: 40vh;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#activity-promo .container h1 {
    color: white;
    font-size: 48px;
}


/* Grid */

#activity-list {
    margin-bottom: 60px;
}

#activity-list .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 sütun */
    gap: 30px;
}

#activity-list .row .col {
    min-width: 0;
    /* grid içi taşmayı engeller */
}


/* Activity Card */


/* Kart genel */

.activity-card .card-bg {
    position: relative;
    height: 340px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}


/* Hover gölge efekti */

.activity-card:hover .card-bg {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.activity-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
}

.activity-card .icon {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.activity-card .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.activity-card .card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
}


/* Başlık animasyon başlangıcı */

.activity-card .card-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    transform: translateX(px);
    opacity: 0.8;
    transition: all 0.4s ease;
}


/* Hover sırasında başlık animasyonu */

.activity-card:hover .card-content h3 {
    transform: translateX(15px);
    opacity: 1;
}

#news-list {
    margin-bottom: 60px;
}

#news-list .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 4 sütun */
    gap: 30px;
}

#news-list .row .col {
    min-width: 0;
    /* grid içi taşmayı engeller */
}

#news-list .row .col img {
    height: 360px;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 24px;
}


/* Haber kartı kapsayıcı */

#news-list .row .col {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Hover gölge + büyüme */


/* Görsel animasyonu */

#news-list .row .col img {
    height: 360px;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 16px;
    transition: transform 0.5s ease;
}


/* Hover’da zoom-in */

#news-list .row .col:hover img {
    transform: scale(1.05);
}


/* Başlık animasyonu */

#news-list .row .col h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #3a2c2c;
    transition: all 0.4s ease;
    transform: translateY(8px);
    opacity: 0.85;
}


/* Hover’da başlık yukarı çıkar ve tam opak olur */

#news-list .row .col:hover h2 {
    transform: translateY(0);
    opacity: 1;
}

.news-detail-image {
    margin-bottom: 30px;
}

.news-detail-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.news-detail-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}


/* Paragraflar */

.news-detail-body p {
    margin-bottom: 1.2em;
    color: #444;
}


/* Başlıklar */

.news-detail-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 1.6em 0 0.8em;
    color: #222;
}

.news-detail-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 1.4em 0 0.6em;
    color: #333;
}


/* Liste */

.news-detail-body ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}

.news-detail-body ul li {
    margin-bottom: 0.6em;
    line-height: 1.6;
}


/* Varsayılan body yazısı */

.news-detail-body body {
    font-size: 16px;
    color: #333;
}

#related-news {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

#related-news h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
}

#related-news .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#related-news .news-card {
    border-radius: 16px;
    overflow: hidden;
}

#related-news .card-bg {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
}

#related-news .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

#related-news .card-content {
    position: relative;
    z-index: 2;
    padding: 15px;
    color: #fff;
}

#related-news .card-content h3 {
    font-size: 18px;
    margin: 0;
}


/* Sonuç listesi kapsayıcı */

.search-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Tek sonuç kutusu */

.search-list li {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}


/* Tıklanabilir link */

.search-list li a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #3a2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Hover efekti */

.search-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.search-list li:hover a {
    color: #4B2C20;
    /* markanın koyu kahverengisi */
}


/* Promo */


/* Promo */

#activity-promo {
    background-size: cover;
    background-position: center;
    color: #fff;
}

.promo-flex {
    display: flex;
    justify-content: space-between;
}

#activity-promo h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.price-box .price {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}


/* Özellikler */

#activity-meta {
    background: #f2f2f2;
    padding: 15px 0;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    text-align: center;
}


/* Takvim */

#activity-calendar {
    height: 80px;
    background-color: #E8E8E8;
}

#activity-calendar p {
    height: 80px;
    line-height: 80px;
    color: var(--EARTH, #513537);
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    gap: 20px;
    align-items: center;
}


/* İçerik + Harita */

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 4 sütun */
    gap: 40px;
    padding: 40px 0;
}

.content-map iframe,
.content-map img {
    width: 100%;
    border-radius: 12px;
}


/* Ekipmanlar */

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 4 sütun */
    gap: 30px;
    padding: 40px 0;
}

.items-grid h4 {
    font-weight: 100;
    margin-bottom: 10px;
    font-size: 12px;
    color: #3a2c2c;
}

.items-grid p {
    color: var(--EARTH, #513537);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.a-content {
    color: var(--EARTH, #513537);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
    min-height: 200px;
}

.no-mb {
    margin-bottom: 0 !important;
}

.meta-grid>div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.meta-grid>div svg {
    width: 48px;
}

.a-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #fff;
}

.meta-grid .label {
    display: block;
    font-size: 11px;
}

.meta-grid strong {
    font-size: 20px;
    font-weight: 600;
}

#activity-meta .btn-primary {
    background-color: #fff;
    color: #4B2C20;
}

#activity-meta .btn-primary:hover {
    color: #fff;
    background-color: #4B2C20;
}

#activity-promo.no-mb {
    height: 60vh;
}

#activity-promo.no-mb .container {
    height: 60vh;
}

#activity-promo.no-mb .container .icon {
    position: absolute;
    left: 0;
    top: 40px;
}

#footer-bottom {
    background: #222;
    /* koyu gri arka plan */
    color: #aaa;
    /* metin rengi */
    padding: 20px 0;
    font-size: 14px;
}

#footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* mobilde alta kayabilsin */
    gap: 10px;
}

#footer-bottom p {
    margin: 0;
    color: #ccc;
}

#footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

#footer-bottom ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer-bottom ul li a:hover {
    color: #fff;
    /* hover’da beyaz */
}


/* Rehber Liste */

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* sabit 4 sütun */
    gap: 30px;
    margin: 40px 0;
}


/* Rehber Kartı */

.guide-card {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.guide-card .guide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.guide-card .guide-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.guide-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #3a2c2c;
}

.guide-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}


/* CTA butonu */

.btn-cta-small {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: #4B2C20;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-cta-small:hover {
    background: #6a3c2d;
}


/* Rehber Detay */


/* Rehber Detay */

#guide-detail {
    padding: 60px 0;
}

#guide-detail .row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.guide-left {
    flex: 1;
    /* 1/3 */
    max-width: 300px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.guide-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
}

.guide-left h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3a2c2c;
}

.guide-left .summary {
    font-size: 15px;
    color: #555;
}

.guide-right {
    flex: 2;
    /* 2/3 */
}

.guide-right .guide-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}


/* CTA alanı */

.guide-cta {
    margin-top: 40px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.guide-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3a2c2c;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: #4B2C20;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background: #6a3c2d;
}


/*** Üyelikler ****/


/* Auth background */

.auth-bg {
    background: url('/dev/assets/images/bg-activity.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Blur container */

.auth-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-align: center;
}


/* Logo */

.auth-logo {
    margin-bottom: 20px;
}

.auth-logo img {
    max-height: 70px;
}


/* Logo sol üst */

.auth-logo-top {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 10;
}

.auth-logo-top img {
    height: 120px;
}


/* Başlık */

.auth-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}


/* Form */

.auth-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-container input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    color: #333;
}

.auth-container input::placeholder {
    color: #999;
}


/* Button */

.auth-container button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4B2C20;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-container button:hover {
    background: #6a3c2d;
}


/* Links */

.auth-container .alt-link,
.auth-container .back-link {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.auth-container .alt-link:hover,
.auth-container .back-link:hover {
    color: #ddd;
}


/*** TALEP ***/


/* Tur Talep Formu */

.request-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-form .form-row {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.request-form label {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #3a2c2c;
}

.request-form input,
.request-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.request-form textarea {
    resize: vertical;
}


/** profile ***/


/* Profile Page */

#profile-detail {
    padding: 60px 0;
}

#profile-detail .row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


/* Sol kolon */

.profile-left {
    flex: 1;
    max-width: 300px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.profile-left .profile-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.profile-left h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3a2c2c;
}

.profile-left .info {
    font-size: 14px;
    color: #555;
    margin: 4px 0;
}


/* Sağ kolon */

.profile-right {
    flex: 2;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.profile-right h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3a2c2c;
}


/* Rezervasyon */

#reservation .row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.res-left {
    flex: 1;
    max-width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.res-left img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.res-left h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.res-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.res-meta li {
    margin-bottom: 8px;
    font-size: 14px;
}

.res-right {
    flex: 2;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.res-right h3 {
    margin-bottom: 20px;
}

.res-form .form-row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.res-form label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.res-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.res-form .total {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Ödeme placeholder */

#payment-placeholder {
    margin-bottom: 60px;
}

#payment-placeholder h3 {
    margin-bottom: 15px;
}

.res-form input.error {
    border: 2px solid #e74c3c;
    /* kırmızı kenarlık */
    background: #ffecec;
}

#related-activities {
    margin: 60px 0;
}

#related-activities h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #3a2c2c;
}

#related-activities .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#related-activities .activity-card .card-bg {
    position: relative;
    height: 240px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#related-activities .activity-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

#related-activities .activity-card .card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

#related-activities .activity-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.contact-info h2 {
    color: #003366;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 8px 0;
    line-height: 1.6;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.contact-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


/* =========================
   RESERVATION / PAYMENT PATCH
   ========================= */


/* Form inputları her zaman tam genişlik */

.res-form input,
.res-form textarea,
.res-form select {
    width: 100%;
}


/* Yan yana alanlar (Ay/Yıl/CVC gibi) */

.res-form .form-row.inline {
    flex-direction: row;
    /* kritik düzeltme */
    gap: 10px;
    align-items: flex-start;
}

.res-form .form-row.inline .inline-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}


/* Toplam satırı: label solda, tutar sağda */

.res-form .total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.res-form .total label {
    margin: 0;
}


/* Ödeme alanındaki “kutular” arasında boşluk */

#payment-placeholder .container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Ödeme özet kutusu (inline style yerine class istersen hazır) */

.payment-summary {
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.payment-summary .line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.payment-summary .total-line {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 8px;
}


/* Mobilde rezervasyon 2 kolon alt alta gelsin */

@media (max-width: 768px) {
    #reservation .row {
        flex-direction: column;
    }
    .res-left,
    .res-right {
        max-width: 100%;
    }
    /* inline satır mobilde alt alta düşebilir (daha rahat) */
    .res-form .form-row.inline {
        flex-direction: column;
    }
}


/* Payment success button */

.btn-success-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    min-width: 220px;
    border-radius: 999px;
    background: #4B2C20;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-success-cta:hover {
    background: #6a3c2d;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-success-cta:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* Container alignment */

.payment-success-actions {
    margin-top: 22px;
    max-width: 250px;
    display: flex;
    margin: 22px auto 20px;
    justify-content: center;
}