/* ===== TAJ MAHAL DESTINATION PAGE STYLES ===== */

/* ===== HERO BANNER ===== */
.taj-hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taj-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.taj-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 900px;
}

/* Breadcrumb */
.taj-breadcrumb {
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.taj-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
}

.taj-breadcrumb a:hover {
    color: #f7921e;
}

.taj-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
    font-size: 10px;
}

.taj-breadcrumb-current {
    color: #f7921e;
    font-weight: 600;
}

.taj-hero-title {
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.taj-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.taj-hero-squiggle {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.taj-hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.taj-hero-meta-item {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.taj-hero-meta-item i {
    color: #f7921e;
    font-size: 14px;
}

/* ===== INTRODUCTION SECTION ===== */
.taj-intro-section {
    padding: 100px 0 80px;
    background: #f5f5f0;
}

.taj-intro-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.taj-intro-left {
    flex: 1;
    max-width: 520px;
}

.taj-intro-pin {
    margin-bottom: 10px;
}

.taj-intro-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.taj-intro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 24px;
}

.taj-intro-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 20px;
}

.taj-intro-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 550px;
}

.taj-intro-img-main {
    grid-column: span 2;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.taj-intro-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.taj-intro-img-main:hover img {
    transform: scale(1.05);
}

.taj-intro-img-secondary {
    grid-column: span 2;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.taj-intro-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.taj-intro-img-secondary:hover img {
    transform: scale(1.05);
}

/* ===== KEY HIGHLIGHTS ===== */
.taj-highlights-section {
    padding: 80px 0;
    background: #f0efe8;
}

.taj-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.taj-highlight-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.taj-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.taj-highlight-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.taj-highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.taj-highlight-card:hover .taj-highlight-img img {
    transform: scale(1.08);
}

.taj-highlight-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.taj-highlight-content {
    padding: 30px;
}

.taj-highlight-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.taj-highlight-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
}

/* ===== HISTORY TIMELINE ===== */
.taj-timeline-section {
    padding: 100px 0 80px;
    background: #f5f5f0;
    position: relative;
    overflow: hidden;
}

.taj-timeline-map-bg {
    position: absolute;
    inset: 0;
    background: url('https://advenx.wpengine.com/wp-content/uploads/2023/03/map-bg.png') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.taj-timeline-container {
    position: relative;
    z-index: 1;
}

.taj-timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.taj-timeline-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.taj-timeline-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin-bottom: 20px;
}

.taj-timeline-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.taj-timeline-slider-wrapper {
    overflow: hidden;
}

.taj-timeline-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.taj-timeline-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.taj-timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.taj-timeline-item-img {
    height: 200px;
    overflow: hidden;
}

.taj-timeline-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.taj-timeline-item:hover .taj-timeline-item-img img {
    transform: scale(1.08);
}

.taj-timeline-item-content {
    padding: 25px;
}

.taj-timeline-item-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #f7921e;
    margin-bottom: 12px;
    line-height: 1;
}

.taj-timeline-item-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* Timeline Navigation */
.taj-timeline-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.taj-timeline-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #333;
    background: transparent;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.taj-timeline-arrow:hover {
    background: #333;
    color: #fff;
}

/* ===== ACTIVITIES SECTION ===== */
.taj-activities-section {
    padding: 80px 0 60px;
    background: #f0efe8;
}

.taj-activities-header {
    text-align: center;
    margin-bottom: 50px;
}

.taj-activities-pin {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.taj-activities-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.taj-activities-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

.taj-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

/* ===== VISITOR INFORMATION ===== */
.taj-visitor-section {
    padding: 100px 0 80px;
    background: #f5f5f0;
}

.taj-visitor-header {
    text-align: center;
    margin-bottom: 50px;
}

.taj-visitor-pin {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.taj-visitor-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.taj-visitor-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

.taj-visitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.taj-visitor-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.taj-visitor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.taj-visitor-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(247, 146, 30, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.taj-visitor-card-icon i {
    font-size: 24px;
    color: #f7921e;
}

.taj-visitor-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.taj-visitor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.taj-visitor-list li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Open Sans', sans-serif;
}

.taj-visitor-list li:last-child {
    border-bottom: none;
}

.taj-visitor-list li strong {
    color: #333;
    font-weight: 600;
}

.taj-closed {
    color: #e74c3c;
    font-weight: 600;
}

/* ===== CTA BANNER ===== */
.taj-cta-banner {
    position: relative;
    padding: 200px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ===== PHOTO GALLERY ===== */
.taj-gallery-section {
    padding: 100px 0 80px;
    background: #f0efe8;
}

.taj-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.taj-gallery-pin {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.taj-gallery-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.taj-gallery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

.taj-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
}

.taj-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.taj-gallery-wide {
    grid-column: span 2;
}

.taj-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.taj-gallery-item:hover img {
    transform: scale(1.08);
}

.taj-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.taj-gallery-item:hover .taj-gallery-item-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.taj-gallery-item-overlay i {
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
}

.taj-gallery-item:hover .taj-gallery-item-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ===== LIGHTBOX ===== */
.taj-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.taj-lightbox.active {
    display: flex;
}

.taj-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.taj-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.taj-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taj-lightbox-close:hover {
    color: #f7921e;
}

.taj-lightbox-prev,
.taj-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
}

.taj-lightbox-prev {
    left: 20px;
}

.taj-lightbox-next {
    right: 20px;
}

.taj-lightbox-prev:hover,
.taj-lightbox-next:hover {
    background: #f7921e;
    border-color: #f7921e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .taj-hero-title {
        font-size: 60px;
        letter-spacing: 5px;
    }

    .taj-intro-container {
        gap: 40px;
    }

    .taj-intro-title {
        font-size: 42px;
    }

    .taj-highlights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .taj-timeline-item {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }

    .taj-activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .taj-visitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .taj-timeline-title,
    .taj-activities-title,
    .taj-visitor-title,
    .taj-gallery-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .taj-hero {
        height: 70vh;
        min-height: 450px;
    }

    .taj-hero-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .taj-hero-subtitle {
        font-size: 22px;
    }

    .taj-hero-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .taj-intro-container {
        flex-direction: column;
        gap: 40px;
    }

    .taj-intro-left {
        max-width: 100%;
        text-align: center;
    }

    .taj-intro-right {
        max-width: 100%;
    }

    .taj-intro-title {
        font-size: 38px;
    }

    .taj-highlights-grid {
        grid-template-columns: 1fr;
    }

    .taj-highlight-img {
        height: 220px;
    }

    .taj-timeline-item {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }

    .taj-activities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .taj-visitor-grid {
        grid-template-columns: 1fr;
    }

    .taj-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .taj-gallery-wide {
        grid-column: span 2;
    }

    .taj-timeline-title,
    .taj-activities-title,
    .taj-visitor-title,
    .taj-gallery-title {
        font-size: 34px;
    }

    .taj-cta-banner {
        padding: 120px 0;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .taj-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .taj-hero-subtitle {
        font-size: 18px;
    }

    .taj-intro-title {
        font-size: 32px;
    }

    .taj-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .taj-gallery-wide {
        grid-column: span 1;
    }

    .taj-timeline-title,
    .taj-activities-title,
    .taj-visitor-title,
    .taj-gallery-title {
        font-size: 28px;
    }

    .taj-lightbox-prev {
        left: 10px;
    }

    .taj-lightbox-next {
        right: 10px;
    }
}