:root {
  --color-text: #343434;
  --color-text-light: #b6b5c2;
  --color-bg: #222222;
  /* Main highlight color - soft lavender blue */
  --color-highlight: #c6beff;
  /* Consolidated button and label colors */
  --color-accent: #c6beff;
  --color-accent-dark: #1a0f2e;
  --color-accent-border: #b7aff5;
  --color-button: #c6beff;
  --color-button-text: #1a0f2e;
  --color-label-bg: #beb6ff;
  --color-label-border: #b6aeff;
  --color-label-text: #2e1a5b;
  --content-padding: 2.8rem 2rem 2rem;
  --max-width: 1200px;

  --item-background: rgba(32, 32, 38, 0.6);
}

/* Base Styles */
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: raleway, sans-serif;
  color: var(--color-text-light);
  font-weight: 300;
  background-color: transparent;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .w3-large {
  font-family: raleway, sans-serif;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.5;
}

h2 {
  line-height: 1.2;
}

.w3-xlarge {
  font-weight: 600;
}

p {
  margin: 0.6em 0 1em;
  line-height: 1.5;
}

a {
  color: var(--color-highlight);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

i {
  font-weight: 300;
}

/* Background */
.bgimg {
  background-image: url('./img/bkgnd_smoke_tint.jpg');
  background-color: #2a2226;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(34, 34, 34, 0.3);
  backdrop-filter: blur(0px);
  min-height: 100vh;
}

/* Header */
.header {
  padding: 5rem 2rem 0;
  background: transparent;
}

.header-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Header Left Section */
.header-left {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  align-items: center;
}

.disrupt-brand {
  text-align: center;
}

.disrupt-brand-svg {
  max-width: 244px;
  width: 100%;
  height: auto;
  margin-left: 50px;
  color: var(--color-highlight);
}

.disrupt-brand-svg svg {
  width: 100%;
  height: 100%;
}

.contact-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

h1 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7rem;
  margin: 1.5rem 0;
  color: var(--color-text-light);
}

/* Main Content */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--content-padding);
}

/* Services Section */
.services {
  margin: 3rem 0;
}

.services-list {
  display: grid;
  gap: 0px;
  text-align: center;
}

.services-list div {
  padding: 0.25rem;
}

/* Work Grid */
.work-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.work-item {
  background: var(--item-background);
  border-radius: 0.8rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.work-item h3 {
  margin-top: 0;
  margin-bottom: 0rem;
}

.disrupt-work-detail {
  margin: 0rem 0 1rem;
  line-height: 1.4;
  font-size: 1rem;
  position: relative;
}
.disrupt-work-detail.first {
    margin-bottom: 0rem;
}
.disrupt-work-detail.last {
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
}

.disrupt-work-detail strong {
  color: var(--color-highlight);
  font-weight: 700;
}

.disrupt-work-link {
  margin-top: auto;
  display: block;
}

.disrupt-work-img {
  width: 100%;
  aspect-ratio: 40/21;
  height: auto;
  border-radius: 0.8rem;
  transition: transform 0.2s;
  margin-top: auto;
  display: block;
}

.disrupt-work-img:hover {
  transform: scale(1.02);
}

.disrupt-work-detail a {
  text-decoration: underline;
}

.disrupt-link-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  color: var(--color-highlight);
}

.warner-work .disrupt-link-icon {
  margin-left: 6px;
}

.disrupt-link-icon svg {
  width: 14px;
  height: 14px;
  vertical-align: baseline;
  position: relative;
  top: -1px;
}

.disrupt-label-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.disrupt-label {
  padding: 4px 10px;
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent-border);
  color: var(--color-accent-dark);
  font-weight: 600;
  border-radius: 14px;
  font-size: 0.7rem;
}

.disrupt-text-highlight {
  color: var(--color-highlight);
}

.disrupt-role-detail {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-highlight);
  margin: 0.5rem 0;
  line-height: 1.3;
}

.disrupt-profile-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0rem 0 0.5rem;
  line-height: 1.3;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 212, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 212, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 212, 255, 0);
  }
}

.disrupt-button {
  padding: 10px 20px;
  border: 0;
  background: var(--color-button);
  color: var(--color-button-text);
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 1rem;
  animation: buttonPulse 2s infinite;
}

.disrupt-button:hover {
  opacity: 0.7;
  animation: none;
}

/* Section Titles */
.section-title {
  font-size: 1.5rem;
  margin: 2.8rem 0 1rem;
  text-align: center;
}

/* Warner Music work items specific styles */
.warner-work .work-item {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .warner-work .work-item {
    height: 330px;
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  .header {
    padding: var(--content-padding);
    background: var(--item-background);
  }

  .disrupt-brand-svg {
    max-width: 260px;
    margin-left: 0px;
  }

  .header-left {
    align-items: flex-start;
    gap: 1.1rem;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
  }

  .disrupt-brand {
    text-align: left;
  }

  .disrupt-brand img {
    margin-left: 0;
  }

  .contact-info {
    text-align: right;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
  }

  h1 {
    text-align: left;
    font-size: 1.875rem;
    line-height: 1.925rem;
    margin: 0;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .section-title {
    text-align: left;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop and up */
@media (min-width: 1024px) {
  :root {
    --content-padding: 3.2rem 3rem 3rem;
  }

  .header-content {
    margin-top: 1.4rem;
  }
  
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
} 