/* =========================================================
   PUNJABI BBQ & CAFE - THEME & SECTION STYLES
   Dark Luxury / Dark Glassmorphic Theme matching UI
   ========================================================== */

:root {
  --bg-main: #0B0A0C;
  --bg-card: rgba(23, 20, 26, 0.75);
  --bg-card-hover: rgba(35, 30, 40, 0.85);
  --bg-light: rgba(255, 255, 255, 0.03);
  --accent-gold: #E5A83B;
  --accent-gold-hover: #C88E28;
  --text-white: #FFFFFF;
  --text-muted: #A39FA8;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* Base Body Alignment */
body {
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Hierarchy */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-white);
  margin-top: 0;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Section Wrapper Styling */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-light {
  background: radial-gradient(circle at 50% 0%, rgba(229, 168, 59, 0.05) 0%, rgba(11, 10, 12, 1) 70%);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-title h2 {
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.section-title h2 em, 
.section-title h2 i {
  font-style: italic;
  color: var(--accent-gold);
  font-family: var(--font-serif);
}

.content {
  max-width: 900px;
  margin: 0 auto;
}

/* Breadcrumb Bar */
.breadcrumb {
  background: var(--bg-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb strong {
  color: var(--accent-gold);
}

/* Action Buttons */
.btn-group {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-white);
}

/* Category Grid & Glassmorphism Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 168, 59, 0.4);
  background: var(--bg-card-hover);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.card a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.card a:hover {
  gap: 10px;
}

/* Dish Grid Items */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.dish {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.3s ease;
}

.dish:hover {
  border-color: var(--accent-gold);
}

.dish h3 {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.dish p {
  font-size: 0.9rem;
  margin: 0;
}

/* Location Box Section */
.local-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.local-box p strong {
  color: var(--text-white);
}

/* FAQ Accordion Layout */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Footer Block */
.cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-main) 0%, rgba(229, 168, 59, 0.1) 100%);
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 32px auto;
  font-size: 1.1rem;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  
  h2, .section-title h2 {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 2.25rem;
  }

  .cards, .dish-grid {
    grid-template-columns: 1fr;
  }
}


/* blogs */

.blog-section-container {
    background-color: #111111;
    color: #ffffff;
    padding: 100px 20px;
    min-height: 400px;
}

.blog-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header-box .sub-badge {
    color: #439A1A;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-header-box .main-blog-title {
    font-size: 2.5rem;
    margin: 10px 0;
    font-weight: 400;
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: #439A1A;
    margin: 0 auto;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #439A1A;
}

.blog-card-img-holder {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #222;
}

.blog-card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-holder img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #aaaaaa;
    margin-bottom: 12px;
}

.blog-card-meta-line .category {
    color: #439A1A;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.25rem;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-weight: 200;
    color: #ffffff;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 15px;
    font-size: 0.85rem;
}

.read-more-link {
    color: #439A1A;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease forwards;
}

.hidden {
    display: none !important;
}

.back-to-blogs-btn {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.back-to-blogs-btn:hover {
    background-color: #439A1A;
    border-color: #439A1A;
    color: #fff;
}

.article-header {
    margin-bottom: 25px;
}

.article-category {
    color: #439A1A;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.8rem;
    margin: 15px 0;
    line-height: 1.2;
}

.article-meta {
    color: #aaaaaa;
    font-size: 0.9rem;
}

.article-hero-image-wrapper {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 40px;
}

.article-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 300;
    border-left: 4px solid #439A1A;
    padding-left: 20px;
}

.article-body-inline-image-box {
    margin: 40px 0;
    border: 1px solid #2a2a2a;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 4px;
}

.article-body-inline-image-box img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 2px;
}

.article-body-inline-image-box .image-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaaaaa;
    font-style: italic;
    text-align: center;
}

#view-body-extended p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #dddddd;
    margin-bottom: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
