/* ============================================
   OLIVE IT — Olivia Shipley
   Palette: Olive & Cream
   ============================================ */

:root {
  --cream:          #F5EFE0;
  --cream-dark:     #E8DFC8;
  --olive:          #6B7A3E;
  --olive-light:    #8A9E52;
  --olive-dark:     #4A5629;
  --gold:           #C9A84C;
  --charcoal:       #2C2A26;
  --charcoal-light: #6B6760;
  --white:          #FDFAF4;
  --shadow:         0 2px 16px rgba(44, 42, 38, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}


/* ============================================
   NAV
   ============================================ */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 224, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal-light);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--olive);
}


/* ============================================
   CONTACT BAR
   ============================================ */

.contact-bar {
  background: var(--olive);
  padding: 2.25rem 2rem;
}

.contact-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.3rem;
  transition: opacity 0.2s;
}

.contact-bar-item:hover {
  opacity: 0.75;
}

.contact-bar-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
}

.contact-bar-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.contact-bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(253, 250, 244, 0.2);
}


/* ============================================
   HERO
   ============================================ */

#hero {
  height: calc(100vh - 61px - 185px);
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.hero-text {
  flex: 1;
}

.hero-sub {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 46ch;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--olive);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--olive-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--olive);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--olive);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--olive);
  color: var(--white);
}

.hero-photo {
  flex-shrink: 0;
}

.hero-photo img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 50%;
  border: 4px solid var(--cream-dark);
  box-shadow: var(--shadow);
}



/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.4rem;
}

.section-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}


/* ============================================
   ABOUT
   ============================================ */

#about {
  background: var(--white);
}

.about-text {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  max-width: 62ch;
  line-height: 1.85;
}


/* ============================================
   EXPERIENCE
   ============================================ */

#experience {
  background: var(--cream);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.exp-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--olive-dark);
  margin-bottom: 2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--olive-light);
  letter-spacing: 0.02em;
}

/* hide placeholder logos until real ones are dropped in */
.exp-logo {
  display: none;
}

.exp-entry {
  position: relative;
  padding-left: 1.25rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--cream-dark);
}

.exp-entry::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
}

.exp-entry:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.exp-entry:last-child::before {
  background: var(--olive-light);
}

.exp-date {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.3rem;
  display: block;
}

.exp-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.exp-org {
  font-size: 0.88rem;
  color: var(--olive);
  font-weight: 500;
  display: block;
  margin-bottom: 0.65rem;
}

.exp-entry ul {
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.exp-entry ul li {
  margin-bottom: 0.35rem;
}

.exp-entry p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}


/* ============================================
   SKILLS
   ============================================ */

#skills {
  background: var(--white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
}

.skill-card h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive-dark);
  margin-bottom: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--charcoal);
  font-size: 0.8rem;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
}


/* ============================================
   FUN + BEAT (combined)
   ============================================ */

#fun {
  background: var(--olive-dark);
}

#fun .section-tag {
  color: var(--gold);
}

.pirata {
  font-family: 'Pirata One', cursive;
}

#fun h2 {
  color: var(--white);
}

.fun-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.fun-left,
.fun-right {
  flex: 1;
}

.fun-right h2 {
  font-family: 'Pirata One', cursive;
}

.fun-divider {
  width: 1px;
  background: rgba(253, 250, 244, 0.15);
  align-self: stretch;
  margin: 0 3rem;
}

.fun-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fun-card {
  background: transparent;
  border: 1.5px solid rgba(253, 250, 244, 0.3);
  color: var(--white);
  text-decoration: none;
  padding: 0.65rem 1.1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: border-color 0.2s, opacity 0.2s;
}

.fun-card:hover {
  border-color: var(--gold);
  opacity: 1;
  color: var(--gold);
}

.beat-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.beat-btns button {
  background: transparent;
  border: 1.5px solid rgba(253, 250, 244, 0.35);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.15s;
}

.beat-btns button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.beat-btns button:active {
  transform: scale(0.95);
}


/* ============================================
   FOOTER / CONTACT
   ============================================ */

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 2rem 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 1.05rem;
  color: var(--white);
  opacity: 0.6;
  max-width: 32ch;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.4;
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  opacity: 0.3;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 250, 244, 0.08);
}


/* ============================================
   CLOCK
   ============================================ */

.clock {
  position: fixed;
  top: 72px;
  right: 1.5rem;
  font-size: 0.72rem;
  color: var(--charcoal-light);
  opacity: 0.35;
  z-index: 99;
  pointer-events: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 800px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .hero-photo img {
    width: 220px;
    height: 220px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .section-inner {
    padding: 3.5rem 1.5rem;
  }

  .fun-inner {
    flex-direction: column;
  }

  .fun-divider {
    width: 100%;
    height: 1px;
    margin: 2rem 0;
  }
}
