/* 
   LEADERSHIP EVENT LANDING PAGE STYLES 
   ------------------------------------
   This file defines the core Design Tokens (Colors, Fonts).
   Layout and Spacing are handled by Tailwind CSS classes in the HTML.
*/

/* 1. Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* 2. Design Tokens (CSS Variables) */
:root {
  /* Brand Colors */
  --color-primary: #2C4A6B;       /* Deep Blue */
  --color-primary-dark: #1a2c42;  /* Darker Blue for gradients */
  --color-accent: #C09853;        /* Gold */
  --color-accent-light: #d4a866;  /* Light Gold */
  --color-cream: #F4F1E8;         /* Background Cream */
  --color-soft-green: #8B9D7A;    /* Soft Green for accents */
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #666666;
}

/* 3. Base Reset & Typography */
body {
  background-color: var(--color-cream);
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* 4. Utility Classes for WordPress 
   (If you need to use these colors in standard WP blocks) 
*/
.text-primary { color: var(--color-primary); }
.bg-primary { background-color: var(--color-primary); }

.text-accent { color: var(--color-accent); }
.bg-accent { background-color: var(--color-accent); }

.bg-cream { background-color: var(--color-cream); }

/* 5. Selection Highlight */
::selection {
  background-color: rgba(192, 152, 83, 0.3);
  color: var(--color-primary);
}

/* 6. Interactive Elements */
.btn-register {
  transition: all 0.3s ease;
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(44, 74, 107, 0.2);
}

/* ==================================
   INSTRUCTOR BIO SECTION
   ================================== */

.instructor-bio-section {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e7eb;
}

.instructor-bio-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.instructor-bio-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .instructor-bio-content {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Image/Avatar Container */
.instructor-bio-image {
  flex-shrink: 0;
}

.instructor-photo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-cream);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .instructor-photo {
    width: 8rem;
    height: 8rem;
  }
}

.instructor-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  border: 4px solid var(--color-cream);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .instructor-avatar {
    width: 8rem;
    height: 8rem;
    font-size: 2.5rem;
  }
}

/* Bio Text Content */
.instructor-bio-text {
  flex: 1;
}

.instructor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.instructor-title {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.instructor-description {
  color: var(--text-medium);
  line-height: 1.625;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .instructor-description {
    font-size: 1rem;
  }
}

.instructor-description p {
  margin-bottom: 1rem;
}

.instructor-description p:last-child {
  margin-bottom: 0;
}