/*
Theme Name: EventsWeb Custom
Theme URI: https://eventsweb.in/
Author: EventsWeb Architecture Team
Author URI: https://eventsweb.in/
Description: Ultra-lightweight, high-performance, mobile-first custom WordPress theme engineered specifically for EventsWeb corporate event management and luxury destination weddings. Zero page-builder dependencies.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: Proprietary
Text Domain: eventsweb-custom
*/

/* Reset & CSS Variables */
:root {
  --primary: #0f2b48;
  --primary-dark: #091a2c;
  --primary-light: #1b4b7c;
  --secondary: #d4af37;
  --secondary-hover: #b89320;
  --accent: #e65c00;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --bg-dark: #0b1523;
  --border-color: #e5e7eb;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max: 1240px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.35rem; }
  h3 { font-size: 1.75rem; }
}

p {
  margin-bottom: 1.25rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* --- PHASE 6 SEO & CONTEXTUAL LINKING STYLES --- */
.breadcrumbs-wrapper {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.6rem 0;
    font-size: 0.85rem;
}
.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}
.breadcrumb-item a {
    color: #4b5563;
    text-decoration: none;
}
.breadcrumb-item a:hover {
    color: #0284c7;
    text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding-right: 0.4rem;
    color: #9ca3af;
}
.breadcrumb-item.active {
    color: #1f2937;
    font-weight: 600;
}

/* Contextual Links Module */
.contextual-links-section {
    padding: 3rem 0;
    background: #f1f5f9;
}
.contextual-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.contextual-title {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.contextual-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.contextual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.context-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 9999px;
    font-size: 0.88rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}
.context-pill:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    transform: translateY(-1px);
}
.context-pill.highlight {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}
.context-pill.highlight:hover {
    background: #0284c7;
    border-color: #0284c7;
}

/* Conversion CTA Section */
.conversion-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
}
.cta-box {
    max-width: 800px;
    margin: 0 auto;
}
.cta-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}
.cta-subheading {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
}
.btn-whatsapp:hover {
    background: #1eb954;
    color: #ffffff;
}
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.btn-outline:hover {
    background: #ffffff;
    color: #0f172a;
}


/* --- PHASE 7 FAQ & COMMERCIAL PROCESS STYLES --- */
.faq-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.faq-question:hover {
    background: #f1f5f9;
}
.faq-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: #0284c7;
    margin-left: 1rem;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}
.faq-answer p {
    padding-bottom: 1.2rem;
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

/* Process Cards */
.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #0284c7;
    color: #ffffff;
    font-weight: 800;
    border-radius: 50%;
    font-size: 1.1rem;
}
.process-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px -4px rgba(0,0,0,0.08);
}


/* --- PHASE 8 EDITORIAL & TOPIC CLUSTER STYLES --- */
.editorial-author-box {
    background: #f8fafc;
    border-left: 4px solid #0284c7;
}
.author-badge {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.topic-cluster-box {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.cluster-card {
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}
.cluster-card:hover {
    transform: translateY(-2px);
    border-color: #0284c7;
}
.cluster-card ul li {
    margin-bottom: 0.4rem;
}
.cluster-card ul li a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
}
.cluster-card ul li a:hover {
    color: #0284c7;
    text-decoration: underline;
}
