:root {
  --primary: #d95b1a;
  --primary-dark: #b54610;
  --bg-main: #fef9f0;
  --bg-soft: #fff8f0;
  --text-dark: #2d2a24;
  --text-light: #5a4a3a;
  --border-soft: #ffe0bf;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f3f2f0, #fffdf8);
    color: var(--text-dark);
    line-height: 1.6;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
   padding: 140px 1.5rem 4rem;
   
}


.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 0.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c2571a, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* 🔥 IMPORTANT for Chrome */
    color: transparent;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.hero .tagline {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    margin-top: 30px;
}


/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-chip {
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-chip.active,
.filter-chip:hover {
    background: linear-gradient(135deg, var(--primary), #e67e22);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(217,91,26,0.2);
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e2f;
}

.section-sub {
    text-align: center;
    color: #7f6b58;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}


.festival-grid {
    display: grid;
   grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    margin-bottom: 4rem;
}

.festival-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #fff0e2;
    position: relative;
}

.festival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.festival-card:active {
    transform: scale(0.97);
}

/* subtle glow effect */
.festival-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    opacity: 0;
    transition: 0.3s;
    background: linear-gradient(
        120deg,
        rgba(217,91,26,0.08),
        transparent
    );
}

.festival-card:hover::after {
    opacity: 1;
}

.card-header {
    background: linear-gradient(135deg, #fff7ec, #fff);
    padding: 1.6rem;
    border-bottom: 1px solid #ffe0bf;
}

.festival-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1f2a22;
}

.festival-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #e67e22);
    color: white;
    padding: 0.25rem 0.9rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
}

.dest-place {
    color: #d95b1a;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.festival-desc {
    color: #4e443c;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.exp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.2rem;
}

.exp-tag {
    background: #fff3e6;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #b45a2b;
    transition: 0.2s;
}

.exp-tag:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    border: 1.5px solid var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), #e67e22);
    color: white;
}


/* Planner Card */
.planner-card {
    background: linear-gradient(135deg, #ffffff, #fff6ec);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin-bottom: 4rem;
    border: 1px solid #ffe2ca;
    text-align: center;
}

.planner-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.5rem;
}

.planner-card p {
    font-family: 'Poppins', sans-serif;
    color: #5e4b38;
}

.planner-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.planner-select {
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid #e2cdb5;
    background: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    min-width: 200px;
}

.btn-primary {
    background: #d95b1a;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #b54610;
}

.planner-output {
    margin-top: 1.5rem;
    background: #fef6e8;
    padding: 1.2rem;
    border-radius: 1.5rem;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    color: #4a3727;
}

/* Toolkit Grid */
.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-bottom: 4rem;
}

.toolkit-card {
    background: white;
    border-radius: 1.8rem;
    padding: 2rem;
   transition: all 0.3s ease;
    border: 1px solid #ffebdb;
    text-align: center;
}

.toolkit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.toolkit-icon {
     font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.toolkit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
}

.toolkit-card p {
    font-family: 'Poppins', sans-serif;
    color: #5f5348;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.toolkit-btn {
    background: transparent;
    border: 1.5px solid #d95b1a;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    color: #d95b1a;
    cursor: pointer;
    transition: 0.2s;
}

.toolkit-btn:hover {
    background: #d95b1a;
    color: white;
}

.whatsapp-cta {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.whatsapp-cta:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* CTA Section */
.cta-section {
     background: linear-gradient(135deg, #2c3e2f, #1e2b22);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    font-family: 'Poppins', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-wa {
    background: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    cursor: pointer;
    border: none;
}

.cta-chat {
    background: transparent;
    border: 1px solid white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    cursor: pointer;
}

.cta-wa:hover,
.cta-chat:hover {
    opacity: 0.9;
      transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 700px) {
    .container {
        padding: 100px 1rem 3rem;
        /* Slightly less padding on mobile */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .planner-card h3 {
        font-size: 1.4rem;
    }

    .cta-section h3 {
        font-size: 1.3rem;
    }

    .festival-grid,
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional fix for very tall headers */
@media (max-width: 480px) {
    .container {
        padding-top: 140px;
    }
}