/*
Theme Name: Dr. Dahiru Mohammed
Description: Professional website for Dr. Dahiru Mohammed, Chairman of PICTT - The Connector
Version: 1.0
Author: Custom Development
Text Domain: dr-dahiru
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Custom Properties */
:root {
  --navy-900: #0f2a4a;
  --navy-800: #1e3a5f;
  --navy-100: #e6edf5;
  --gold-500: #d4af37;
  --gold-600: #c4a030;
  --green-500: #2e7d32;
  --green-600: #1b5e20;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

.tweet-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        box-sizing: border-box;
        padding: 1rem 0;
    }

    .tweet-wrapper blockquote.twitter-tweet {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        border-radius: 0.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        margin: 0 auto;
}
.tweet-center {
        text-align: center;
        padding: 1rem 0;
    }

    .tweet-center blockquote.twitter-tweet {
        display: inline-block;
        max-width: 100%;
        border-radius: 0.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
#scholarship-request input,
#scholarship-request textarea,
#scholarship-request select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.py-16 {
  padding: 4rem 0;
}

.py-20 {
  padding: 5rem 0;
}

.grid {
  display: grid;
}

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

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

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

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.bg-white {
  background-color: white;
}

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

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

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

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

.text-navy-900 {
  color: var(--navy-900);
}

.text-gold-500 {
  color: var(--gold-500);
}

.text-white {
  color: white;
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-all {
  transition: all 0.3s ease;
}

/* Header Styles */
.site-header {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  height: 4rem;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: bold;
  font-size: 1rem;
}

.site-logo:hover {
  color: var(--gold-500);
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold-500);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-900);
  cursor: pointer;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--navy-900);
  color: white;
}

.btn-primary:hover {
  background: var(--navy-800);
  color: white;
}

.btn-secondary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-secondary:hover {
  background: var(--gold-600);
  color: var(--navy-900);
}

.btn-outline {
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy-900);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white;
  padding: 5rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  color: var(--gold-500);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 500px;
  font-size: 1.1rem;
}

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

.hero-image {
  display: flex;
  justify-content: center;
}

.profile-image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 4px solid var(--gold-500);
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.section-divider {
  width: 6rem;
  height: 4px;
  background: var(--gold-500);
  margin: 0 auto 3rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #stickyNavMenu {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    transform: translateY(100%);
  }

  #stickyNavMenu.open {
    transform: translateY(0);
  }

  #stickyNavToggle {
    top: auto;
    bottom: 2rem;
    left: 1rem;
    border-radius: 50%;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 9999;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 10px 0;
}


/* Card Styles */
.card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--gray-200);
}


.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
} */
.card-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show 3 lines max */
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--gold-500);
}

.card-excerpt {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.card-category {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background: var(--navy-900);
  color: white;
}

.badge-secondary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.badge-outline {
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  background: white;
}

.badge-success {
  background: var(--green-500);
  color: white;
}

/* Press Release Styles */
.press-featured {
  border: 2px solid var(--gold-500);
  position: relative;
}

.press-featured::before {
  content: "Featured";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.press-card {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
}

.press-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Project Card Styles */
.project-card {
  position: relative;
}

.project-highlight {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Testimonial Styles */
.testimonial-card {
  background: var(--navy-800);
  color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray-300);
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-title {
  color: var(--gray-400);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  #stickyNavMenu {
    width: 100%;
    left: 0;
    top: auto;
    bottom: 0;
    transform: translateY(100%);
    border-radius: 0;
  }
}

/* Speaking Engagement Styles */
.speaking-item {
  border-left: 4px solid var(--gold-500);
  padding-left: 1rem;
  padding: 1rem 0 1rem 1rem;
}

.speaking-title {
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}

.speaking-event {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.speaking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Contact Form Styles */
.contact-form {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Footer Styles */
.site-footer {
  background: var(--navy-900);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--gold-500);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--gold-500);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--navy-900);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

/* Newsletter Signup */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  color: var(--navy-900);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

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

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

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

  .profile-image {
    width: 250px;
    height: 250px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .press-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .py-20 {
    padding: 3rem 0;
  }

  .py-16 {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .social-links {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .bg-navy-900,
  .bg-navy-800 {
    background: white !important;
    color: black !important;
    border: 1px solid black !important;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* WordPress Specific Styles */
.wp-block-image {
  margin: 2rem 0;
}

.wp-block-quote {
  border-left: 4px solid var(--gold-500);
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
}

.wp-block-pullquote {
  border-top: 4px solid var(--gold-500);
  border-bottom: 4px solid var(--gold-500);
  padding: 2rem 0;
  text-align: center;
  font-size: 1.25rem;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}


