/* ====== Kalbeliya Folk Dance Page Styles ====== */

/* ====== Page Hero ====== */
.kd-hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.kd-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/kalbeliya_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 12s ease;
}

.kd-hero:hover .kd-hero-image {
    transform: scale(1.05);
}

.kd-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 15, 8, 0.95) 0%, rgba(44, 30, 19, 0.5) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.kd-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px 60px;
    max-width: 950px;
    animation: fadeIn 1s ease-out;
}

.kd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-weight: 400;
}

.kd-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.kd-breadcrumb a:hover {
    color: var(--accent-hover);
}

.kd-breadcrumb .separator {
    font-size: 0.75rem;
    opacity: 0.5;
}

.kd-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: white;
    margin-bottom: 18px;
    line-height: 1.15;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.kd-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

/* ====== Intro Section ====== */
.kd-intro {
    padding: 80px 0 60px;
    background: var(--primary-color);
}

.kd-intro-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.kd-intro-inner p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 15px;
}

/* ====== Highlights Grid ====== */
.kd-highlights {
    padding: 60px 0;
    background: var(--secondary-color);
}

.kd-highlights-header {
    text-align: center;
    margin-bottom: 45px;
}

.kd-highlights-header h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--footer-bg);
    margin-bottom: 10px;
}

.kd-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 950px;
    margin: 0 auto;
}

.kd-highlight-card {
    text-align: center;
    padding: 30px 22px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.kd-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.kd-highlight-card i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), rgba(230, 126, 34, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.kd-highlight-card:hover i {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: 0 6px 15px rgba(211, 84, 0, 0.3);
}

.kd-highlight-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--footer-bg);
}

/* ====== Experience Blocks ====== */
.kd-experiences {
    padding: 100px 0;
    background: var(--primary-color);
}

.kd-exp-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
}

.kd-exp-block:last-child {
    margin-bottom: 0;
}

.kd-exp-block.reversed {
    direction: rtl;
}

.kd-exp-block.reversed > * {
    direction: ltr;
}

.kd-exp-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 3;
}

.kd-exp-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kd-exp-image-wrap:hover img {
    transform: scale(1.06);
}

.kd-exp-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    z-index: 2;
}

.kd-exp-block.reversed .kd-exp-badge {
    left: auto;
    right: 20px;
}

.kd-exp-content {
    padding: 10px 0;
}

.kd-exp-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.kd-exp-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
    line-height: 1.2;
}

.kd-exp-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Safari Activities List */
.kd-activity-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.kd-activity-list li {
    padding: 8px 0;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.kd-activity-list li i {
    color: var(--accent-color);
    margin-top: 4px;
    min-width: 16px;
}

/* Evening Highlights */
.kd-evening-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.kd-evening-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(211, 84, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(211, 84, 0, 0.1);
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
}

.kd-evening-item:hover {
    transform: translateY(-2px);
    background: rgba(211, 84, 0, 0.1);
}

.kd-evening-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
    min-width: 18px;
}

/* Timing Tag */
.kd-timing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211, 84, 0, 0.06);
    border-left: 3px solid var(--accent-color);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    font-size: 0.92rem;
    color: var(--text-main);
    margin: 20px 0;
    font-weight: 500;
}

.kd-timing i {
    color: var(--accent-color);
}

/* ====== Special Dinner Section (Parallax) ====== */
.kd-dinner-section {
    background-image: url('../assets/desert_dinner_setup.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 120px 0;
    z-index: 1;
}

.kd-dinner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 51, 32, 0.88), rgba(30, 15, 8, 0.95));
    z-index: -1;
}

.kd-dinner-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kd-dinner-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.kd-dinner-inner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.kd-dinner-inner > p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ====== CTA Section ====== */
.kd-cta {
    text-align: center;
    padding: 90px 0;
    background: var(--secondary-color);
}

.kd-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
}

.kd-cta > .container > p {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.75;
}

.kd-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.kd-cta-buttons .btn-book {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.kd-cta-buttons .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 14px 35px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kd-cta-buttons .btn-call:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.25);
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .kd-hero {
        height: 55vh;
        min-height: 350px;
    }

    .kd-hero-content h1 {
        font-size: 2.5rem;
    }

    .kd-exp-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .kd-exp-block.reversed {
        direction: ltr;
    }

    .kd-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kd-evening-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kd-hero {
        height: 50vh;
        min-height: 300px;
    }

    .kd-hero-content {
        padding-bottom: 40px;
    }

    .kd-hero-content h1 {
        font-size: 1.9rem;
    }

    .kd-hero-content p {
        font-size: 0.95rem;
    }

    .kd-intro {
        padding: 50px 0 40px;
    }

    .kd-experiences {
        padding: 60px 0;
    }

    .kd-exp-block {
        margin-bottom: 60px;
    }

    .kd-exp-content h2 {
        font-size: 1.6rem;
    }

    .kd-highlights-grid {
        grid-template-columns: 1fr;
    }

    .kd-dinner-section {
        padding: 80px 0;
    }

    .kd-dinner-inner {
        padding: 40px 20px;
    }

    .kd-dinner-inner h2 {
        font-size: 2rem;
    }

    .kd-cta {
        padding: 60px 0;
    }

    .kd-cta h2 {
        font-size: 2rem;
    }
}
