/* =====================================================
   travel-guide.css – Pushkar Adventure Desert Camp
   ===================================================== */

/* ====== Hero ====== */
.tg-hero {
    position: relative;
    height: 55vh;
    min-height: 360px;
    overflow: hidden;
    margin-top: 100px;
}
.tg-hero-image {
    position: absolute;
    inset: 0;
    background-image: url('../assets/camel_safari_1778739196416.png');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.05);
    transition: transform 8s ease;
    filter: brightness(0.5);
}
.tg-hero:hover .tg-hero-image { transform: scale(1); }
.tg-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}
.tg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 14px;
    opacity: 0.85;
}
.tg-breadcrumb a { color: white; text-decoration: none; }
.tg-breadcrumb a:hover { opacity: 0.7; }
.tg-breadcrumb .separator { font-size: 0.7rem; opacity: 0.6; }
.tg-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.tg-hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    line-height: 1.6;
}

/* ====== Section Shared ====== */
.tg-section {
    padding: 80px 0;
}
.tg-section-header {
    margin-bottom: 48px;
}
.tg-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ====== Quick Info Strip ====== */
.tg-info-strip {
    background: var(--footer-bg);
    padding: 22px 0;
}
.tg-info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 44px;
}
.tg-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.92);
    font-size: 0.9rem;
    font-weight: 500;
}
.tg-info-item i {
    color: #f4a35a;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ====== Overview / About Pushkar ====== */
.tg-overview {
    background: var(--primary-color);
}
.tg-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.tg-overview-text h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--footer-bg);
    margin-bottom: 18px;
}
.tg-overview-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}
.tg-overview-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    position: relative;
}
.tg-overview-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.tg-overview-image:hover img {
    transform: scale(1.04);
}

/* ====== How to Reach ====== */
.tg-reach {
    background: var(--secondary-color);
}
.tg-reach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tg-reach-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 22px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.tg-reach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}
.tg-reach-icon {
    width: 68px;
    height: 68px;
    background: rgba(211,84,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-color);
    margin: 0 auto 18px;
}
.tg-reach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--footer-bg);
    margin-bottom: 10px;
}
.tg-reach-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ====== Top Attractions ====== */
.tg-attractions {
    background: var(--primary-color);
}
.tg-attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tg-attraction-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 22px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tg-attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.12);
}
.tg-attraction-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.tg-attraction-card:hover .tg-attraction-img {
    transform: scale(1.05);
}
.tg-attraction-img-wrapper {
    overflow: hidden;
}
.tg-attraction-body {
    padding: 24px 22px;
}
.tg-attraction-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--footer-bg);
    margin-bottom: 8px;
}
.tg-attraction-body p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.6;
}
.tg-attraction-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(211,84,0,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* ====== Best Time to Visit ====== */
.tg-best-time {
    background: var(--secondary-color);
}
.tg-seasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tg-season-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 22px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}
.tg-season-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}
.tg-season-card--best {
    border-color: var(--accent-color);
    box-shadow: 0 8px 36px rgba(211,84,0,0.15);
}
.tg-season-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(211,84,0,0.3);
}
.tg-season-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}
.tg-season-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--footer-bg);
    margin-bottom: 6px;
}
.tg-season-card .tg-season-months {
    font-size: 0.82rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}
.tg-season-card p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ====== Travel Tips ====== */
.tg-tips {
    background: var(--primary-color);
}
.tg-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.tg-tip-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tg-tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}
.tg-tip-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(211,84,0,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
}
.tg-tip-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--footer-bg);
    margin-bottom: 6px;
}
.tg-tip-content p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ====== CTA ====== */
.tg-cta {
    background-image: url('../assets/folk_dance_bonfire_1778739230115.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    color: white;
}
.tg-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,51,32,0.9), rgba(44,30,19,0.96));
}
.tg-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.tg-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: white;
    margin-bottom: 16px;
}
.tg-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}
.tg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
}
.tg-cta-btn:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}
.tg-cta-btn i { font-size: 1.3rem; }

/* ====== Responsive ====== */
@media (max-width: 1100px) {
    .tg-reach-grid,
    .tg-attractions-grid,
    .tg-seasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .tg-hero { height: 45vh; min-height: 280px; }
    .tg-hero-content h1 { font-size: 2.2rem; }
    .tg-overview-grid { grid-template-columns: 1fr; }
    .tg-overview-image img { height: 300px; }
    .tg-reach-grid,
    .tg-attractions-grid,
    .tg-seasons-grid { grid-template-columns: 1fr; }
    .tg-tips-grid { grid-template-columns: 1fr; }
    .tg-cta-content h2 { font-size: 1.9rem; }
}
@media (max-width: 480px) {
    .tg-hero-content h1 { font-size: 1.8rem; }
    .tg-section { padding: 50px 0; }
}
