/* ========== MARKETING & SOCIAL MEDIA PORTFOLIO STYLES ========== */

/* Common Section Headers */
.section-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem 3rem;
  text-align: left;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.section-description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 800px;
  margin-top: 1.5rem;
  font-weight: 300;
}

/* ========== 4. MY MARKETING WORK ========== */
.marketing-work {
  background: var(--bg);
  padding-bottom: 6rem;
}

.work-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 99, 255, 0.35);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.12);
}

.work-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #0d1017;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

/* Premium Placeholder Style */
.placeholder-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 80%;
  height: 80%;
  border: 2px dashed rgba(108, 99, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(108, 99, 255, 0.02);
  transition: all 0.4s var(--ease);
}

.work-card:hover .placeholder-overlay {
  border-color: var(--accent);
  background: rgba(108, 99, 255, 0.06);
  transform: scale(1.03);
}

.placeholder-icon {
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(108, 99, 255, 0.4);
}

.placeholder-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  text-align: center;
}

.work-card__content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.pill--sm {
  font-size: 0.65rem;
  padding: 0.2rem 0.65rem;
  width: fit-content;
}

.work-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1.3;
}

.work-card__objective,
.work-card__role {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.work-card__objective strong,
.work-card__role strong {
  color: var(--text);
  font-weight: 500;
}

.work-card__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  font-weight: 300;
  flex: 1;
}

.work-card__footer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-soft);
}

.work-card__metrics {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-2);
  letter-spacing: 0.05em;
}

/* ========== 5. PAID ADVERTISING SECTION ========== */
.paid-advertising {
  background: var(--bg-alt);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding: 2rem 0 8rem;
  position: relative;
  z-index: 6;
  margin-top: -3%;
}

.dashboard-mockup {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.dashboard-mockup__header {
  background: #141822;
  border: 1px solid var(--border);
  border-bottom: none;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.dot-buttons {
  display: flex;
  gap: 6px;
}

.dot-buttons span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  display: inline-block;
}

.dot-buttons span:nth-child(1) { background: #ff5f56; }
.dot-buttons span:nth-child(2) { background: #ffbd2e; }
.dot-buttons span:nth-child(3) { background: #27c93f; }

.dashboard-mockup__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-mockup__body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  padding: 2.5rem;
}

.dashboard-mockup__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dashboard-mockup__grid {
    grid-template-columns: 45% 55%;
  }
}

.campaign-detail__meta {
  margin-bottom: 1.5rem;
}

.campaign-detail__meta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
}

.campaign-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.campaign-detail__list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.placeholder-field {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: rgba(108, 99, 255, 0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px dashed rgba(108, 99, 255, 0.2);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.metric-box {
  background: rgba(6, 7, 10, 0.5);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.metric-box:hover {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.05);
}

.metric-box__title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.metric-box__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-box__subtext {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.dashboard-mockup__footer {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eab308;
  box-shadow: 0 0 8px #eab308;
  display: inline-block;
}

/* ========== 6. SEO SECTION ========== */
.seo-section {
  background: var(--bg);
  padding-bottom: 6rem;
}

.seo-grid {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .seo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-feature-card {
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.seo-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
}

.seo-feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.seo-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.seo-feature-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
  font-weight: 300;
}

/* SEO Projects Showcase list */
.seo-projects-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.seo-projects-list__title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.seo-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .seo-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: border-color 0.3s;
}

.seo-project-card:hover {
  border-color: var(--accent);
}

.seo-project-card__info h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.seo-project-card__info p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
  font-weight: 300;
}

.placeholder-file-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(6, 7, 10, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.seo-project-card:hover .placeholder-file-btn {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(108, 99, 255, 0.05);
}

/* ========== 7. GALLERY SECTION (SHOWCASE) ========== */
.gallery-section {
  background: var(--bg-alt);
  clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
  padding: 2rem 0 8rem;
  margin-top: -2%;
  position: relative;
  z-index: 5;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.gallery-filter-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-soft);
  border: 1px solid var(--border-soft);
  background: rgba(6, 7, 10, 0.2);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.gallery-filter-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

.gallery-filter-btn.active {
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 550px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 950px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), opacity 0.4s var(--ease);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  display: none;
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent);
}

.gallery-item__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  width: 90%;
  height: 90%;
}

.gallery-item__placeholder span {
  font-size: 1.8rem;
  opacity: 0.5;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-item__placeholder span {
  transform: translateY(-4px) scale(1.1);
  opacity: 1;
}

.gallery-item__placeholder p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 10, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 2;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.gallery-item__overlay p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-2);
}

/* ========== 8. EXPERIENCE ADJUSTMENTS ========== */
.company-sub {
  color: var(--accent-2) !important;
  margin-top: 0.3rem;
  font-size: 0.85rem !important;
}

.timeline__responsibilities {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.timeline__responsibilities li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
}

.timeline__responsibilities li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ========== 9. PROJECTS (SUBTITLE DESC) ========== */
.projects__subtitle-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
  font-weight: 300;
}

/* ========== 10. TOOLS SECTION ========== */
.tools-section {
  background: var(--bg);
  padding-bottom: 8rem;
}

.tools-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.tool-item {
  background: var(--gradient-subtle);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.tool-item:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 99, 255, 0.3);
  box-shadow: 0 16px 36px rgba(108, 99, 255, 0.08);
}

.tool-item__logo-container {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: color 0.3s;
}

.tool-item:hover .tool-item__logo-container {
  color: var(--accent-2);
}

.tool-item__svg {
  width: 100%;
  height: 100%;
}

.tool-item h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.tool-item:hover h4 {
  color: var(--text);
}

/* ========== 11. CASE STUDY SYSTEM ========== */
.case-studies-section {
  background: var(--bg-alt);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding: 2rem 0 8rem;
  margin-top: -3%;
  position: relative;
  z-index: 6;
}

.case-study-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(6, 7, 10, 0.4);
}

.case-study-card__header {
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 2rem;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .case-study-card__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.case-study-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0;
}

.case-study-project-title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-soft);
}

.case-study-project-title strong {
  color: var(--text);
}

.case-study-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.case-study-card__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .case-study-card__body {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study-column h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(108, 99, 255, 0.15);
  padding-bottom: 0.5rem;
  width: fit-content;
}

.case-study-column p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 300;
}

.case-study-column p strong {
  color: var(--text);
  font-weight: 500;
}
