/* MTIM XXII - Static HTML/CSS Version */
/* Black, Pink, White Color Scheme */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Design System */
:root {
  /* Core Brand Colors - HSL */
  --background: 0 0% 100%;
  --foreground: 0 0% 8%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 8%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 8%;
  
  /* Primary - Pink/Coral Red */
  --primary: 347 89% 61%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 347 89% 71%;
  
  /* Secondary - Deep Black */
  --secondary: 0 0% 8%;
  --secondary-foreground: 0 0% 100%;
  
  /* Muted - Light Gray */
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  
  /* Accent - Bright Pink */
  --accent: 330 81% 60%;
  --accent-foreground: 0 0% 100%;
  
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 0 0% 90%;
  --input: 0 0% 94%;
  --ring: 347 89% 61%;
  --radius: 0.75rem;
  
  /* Custom MTIM Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  --gradient-hero: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(347 89% 20%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(0 0% 98%) 100%);
  
  /* Custom Shadows */
  --shadow-elegant: 0 20px 60px -10px hsl(var(--primary) / 0.3);
  --shadow-card: 0 4px 20px -2px hsl(0 0% 0% / 0.1);
  --shadow-glow: 0 0 40px hsl(var(--primary) / 0.4);
  
  /* Animation Variables */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --background: 0 0% 8%;
    --foreground: 0 0% 100%;
    --card: 0 0% 8%;
    --card-foreground: 0 0% 100%;
    --popover: 0 0% 8%;
    --popover-foreground: 0 0% 100%;
    --primary: 347 89% 61%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 15%;
    --secondary-foreground: 0 0% 100%;
    --muted: 0 0% 15%;
    --muted-foreground: 0 0% 65%;
    --accent: 330 81% 60%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 62.8% 50%;
    --destructive-foreground: 0 0% 100%;
    --border: 0 0% 20%;
    --input: 0 0% 15%;
    --ring: 347 89% 61%;
    --gradient-hero: linear-gradient(135deg, hsl(0 0% 8%) 0%, hsl(347 89% 15%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0 0% 10%) 0%, hsl(0 0% 8%) 100%);
  }
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Custom Fonts */
.font-olde-english {
  font-family: 'UnifrakturMaguntia', cursive;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  border-bottom: 1px solid hsl(var(--border));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  color: inherit;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-container {
  background: var(--gradient-primary);
  padding: 0.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-glow);
}

.logo-img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  /*filter: brightness(0) invert(1);*/
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-text h1 {
  color: hsl(var(--primary));
}

.logo-text p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-primary);
  width: 0;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: hsl(var(--primary));
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  background-color: hsl(var(--primary) / 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: block;
  overflow: hidden;
  transition: var(--transition-bounce);
  max-height: 0;
  opacity: 0;
}

.mobile-nav.open {
  max-height: 16rem;
  opacity: 1;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav-content {
  background-color: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.mobile-nav-link {
  display: block;
  text-decoration: none;
  color: hsl(var(--foreground));
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  margin-bottom: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}


/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-elegant);
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 0.75rem 1.5rem;
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  color: hsl(var(--foreground));
  padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
  background-color: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-college-name {
  color: white;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.hero-department {
  margin-bottom: 2rem;
}

.hero-department p:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.hero-department p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-modern {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-modern .m-letter {
  color: hsl(var(--primary));
}

.hero-modern .other-letters {
  color: white;
}

.hero-trends {
  color: white;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero-chapter {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  letter-spacing: 0.2em;
  font-weight: 300;
}

.hero-date {
  color: white;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.hero-cta {
  margin-bottom: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0.125rem;
  margin-top: 0.5rem;
}

/* Card Styles */
.card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card:hover {
  box-shadow: var(--shadow-elegant);
  transform: scale(1.02);
}

.card-content {
  padding: 2rem;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
}

.badge-primary {
  background: var(--gradient-primary);
  color: white;
}

.badge-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.badge-outline {
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  color: hsl(var(--foreground));
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background: var(--gradient-primary);
  border-radius: 9999px;
  margin: 1.5rem auto 0;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.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); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Background Colors */
.bg-muted {
  background-color: hsl(var(--muted) / 0.3);
}

.bg-hero {
  background: var(--gradient-hero);
}

.bg-card {
  background: var(--gradient-card);
}

/* Text Colors */
.text-primary { color: hsl(var(--primary)); }
.text-secondary { color: hsl(var(--secondary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-white { color: white; }

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.form-textarea {
  resize: none;
  min-height: 6rem;
}

/* Avatar Styles */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.avatar-lg {
  width: 5rem;
  height: 5rem;
  font-size: 1.25rem;
}

/* Footer Styles */
.footer {
  background-color: hsl(var(--secondary));
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand-icon {
  background: var(--gradient-primary);
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-glow);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-links a.active {
  color: hsl(var(--primary));
  transform: translateX(0.25rem);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: hsl(var(--primary));
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.footer-powered span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: hsl(var(--primary));
  border-radius: 50%;
}

.footer-badge span {
  color: hsl(var(--primary));
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Animation Classes */
.animate-fade-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Stagger animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.leading-relaxed { line-height: 1.625; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hidden { display: none; }

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:text-3xl { font-size: 1.875rem; }
}

@media (min-width: 768px) {
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: 3rem; }
}

/* Icon Styles */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary-glow));
}

#sponbox{
  background:linear-gradient(135deg, #15b3f7, #ff8c00);
}

@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr !important;
    }

    .aspect-square {
        width: 100%;
    }

    .aspect-square img {
        max-width: 100%;
        height: auto;
    }
}

/* Base styling: make sure images have a reasonable max size */
.marquee img {
    max-height: 100px;
    margin: 0 1rem;
    height: auto;
    width: auto;
}

/* Media query for small screens */
@media (max-width: 640px) {
    .marquee img {
        max-height: 60px; /* Reduce image height on small screens */
        margin: 0 0.5rem;
    }
}

/* Default font sizes (for reference, can be your current setup) */
#about .card-content p,
#about .card.bg-hero .card-content p,
#about .card .text-muted {
    font-size: 1rem; /* 16px */
}

/* Responsive adjustments */

/* Tablets and small screens */
@media (max-width: 768px) {
    #about .card-content p,
    #about .card.bg-hero .card-content p,
    #about .card .text-muted {
        font-size: 0.85rem; /* Smaller text */
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    #about .card-content p,
    #about .card.bg-hero .card-content p,
    #about .card .text-muted {
        font-size: 0.75rem; /* Even smaller for narrow screens */
    }
}
