/* The Evolution of Thought - Main Styles */

:root {
  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --accent-purple: #9b59b6;
  --accent-blue: #3498db;
  --accent-red: #e74c3c;
  --gradient: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-red));
  --border-color: #333333;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo img {
  height: 40px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--accent-purple);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle .arrow {
  font-size: 10px;
  margin-left: 3px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 10px 0;
  min-width: 150px;
  z-index: 1001;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--bg-card);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.hero .logo-large {
  max-width: 500px;
  width: 90%;
  margin-bottom: 30px;
  border-radius: 10px;
}

.hero .headshot {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 40% 36%;
  margin-bottom: 30px;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
              var(--gradient) border-box;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero .bio {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 750px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.quick-links a {
  padding: 12px 25px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
}

/* Page Header */
.page-header {
  min-height: auto;
  padding: 120px 20px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-header .tagline {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--bg-section);
}

section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card .content {
  padding: 25px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.card .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent-purple);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.card a:hover {
  color: var(--accent-blue);
}

/* List Items */
.list-section {
  max-width: 900px;
  margin: 0 auto;
}

.list-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--border-color);
}

.list-item:last-child {
  border-bottom: none;
}

.list-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.list-item .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.list-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.list-item a {
  color: var(--accent-purple);
  text-decoration: none;
}

.list-item a:hover {
  text-decoration: underline;
}

/* Resume Section */
.resume-section {
  margin-bottom: 60px;
}

.resume-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-purple);
  display: inline-block;
}

.resume-item {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 2px solid var(--border-color);
}

.resume-item h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.resume-item .company {
  color: var(--accent-purple);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.resume-item .date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.resume-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.resume-bullets {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.resume-bullets li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 15px;
  margin-bottom: 8px;
  position: relative;
}

.resume-bullets li::before {
  content: "•";
  color: var(--accent-purple);
  position: absolute;
  left: 0;
}

.certification-list {
  list-style: none;
  padding: 0;
}

.certification-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.certification-list li:last-child {
  border-bottom: none;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.skill-category h4 {
  color: var(--accent-purple);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.skill-category p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* Credits Table (Acting) */
.credits-table {
  max-width: 900px;
  margin: 0 auto;
}

.credit-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.credit-row:last-child {
  border-bottom: none;
}

.credit-title {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.credit-role {
  color: var(--accent-purple);
  font-size: 0.95rem;
}

.credit-venue {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 768px) {
  .credit-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 20px 0;
  }

  .credit-venue {
    text-align: left;
  }
}

/* Photo Gallery Preview */
.photo-gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.dprk-gallery {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .photo-gallery-preview {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Section Intro */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* External Link Card */
.external-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.external-link-card:hover {
  border-color: var(--accent-purple);
}

.external-link-card a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.external-link-card a:hover {
  color: var(--accent-purple);
}

/* Contact Section */
.contact-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info .social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.contact-info .social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.contact-info .social-links a:hover {
  color: var(--accent-purple);
}

.contact-info .email {
  margin-top: 30px;
}

.contact-info .email a {
  color: var(--accent-purple);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-info .email a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--bg-dark);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

footer .social-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: var(--accent-purple);
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 2px solid var(--accent-purple);
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent-purple);
  color: var(--bg-dark);
}

/* Placeholder content */
.placeholder {
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
  font-style: italic;
}

/* Calendar Events */
.events-list {
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card .event-details {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.event-card .event-role {
  color: var(--accent-purple);
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.event-card .event-dates {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.event-card .event-time {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 15px;
}

.event-card .event-venue {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-card .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card .event-image img {
    height: 250px;
  }

  .event-card .event-details {
    padding: 25px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    border: none;
    background: transparent;
    padding: 10px 0 0 20px;
    margin-top: 10px;
    min-width: auto;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active:hover .dropdown-menu {
    display: flex;
  }

  .dropdown-menu li a {
    padding: 8px 0;
  }

  .dropdown-menu li a:hover {
    background: transparent;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero .headshot {
    width: 180px;
    height: 180px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

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

  .quick-links {
    flex-direction: column;
    align-items: center;
  }

  .quick-links a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}
