/* CSS Custom Properties for Theming */
:root {
  /* Pink and fluffy theme colors */
  --primary-color: #EC4899;
  --secondary-color: #BE185D;
  --accent-color: #F472B6;
  --success-color: #FB7185;
  --warning-color: #FBBF24;
  --error-color: #F87171;
  
  /* Neutral colors */
  --white: #FFFBFF;
  --gray-50: #FDF2F8;
  --gray-100: #FCE7F3;
  --gray-200: #FBCFE8;
  --gray-300: #F9A8D4;
  --gray-400: #F472B6;
  --gray-500: #EC4899;
  --gray-600: #DB2777;
  --gray-700: #BE185D;
  --gray-800: #9D174D;
  --gray-900: #831843;
  
  /* Theme-specific variables */
  --bg-color: var(--white);
  --surface-color: var(--white);
  --text-primary: var(--gray-800);
  --text-secondary: var(--gray-700);
  --text-tertiary: var(--gray-600);
  --border-color: var(--gray-200);
  --shadow-light: 0 1px 3px 0 rgba(236, 72, 153, 0.15), 0 1px 2px 0 rgba(236, 72, 153, 0.1);
  --shadow-medium: 0 4px 6px -1px rgba(236, 72, 153, 0.15), 0 2px 4px -1px rgba(236, 72, 153, 0.1);
  --shadow-large: 0 10px 15px -3px rgba(236, 72, 153, 0.2), 0 4px 6px -2px rgba(236, 72, 153, 0.1);
}

/* Dark mode colors */
[data-theme="dark"] {
  --bg-color: #2D1B2E;
  --surface-color: #3D2A3E;
  --text-primary: #FCE7F3;
  --text-secondary: #F9A8D4;
  --text-tertiary: #F472B6;
  --border-color: #BE185D;
  --shadow-light: 0 1px 3px 0 rgba(236, 72, 153, 0.3), 0 1px 2px 0 rgba(236, 72, 153, 0.2);
  --shadow-medium: 0 4px 6px -1px rgba(236, 72, 153, 0.3), 0 2px 4px -1px rgba(236, 72, 153, 0.2);
  --shadow-large: 0 10px 15px -3px rgba(236, 72, 153, 0.4), 0 4px 6px -2px rgba(236, 72, 153, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Header */
.header {
  background-color: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: block;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo a:hover .logo-text {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 1px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.language-switcher:hover {
  border-color: var(--primary-color);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  border-color: var(--primary-color);
  background-color: var(--gray-50);
}

[data-theme="dark"] .theme-toggle:hover {
  background-color: var(--gray-700);
}

.theme-icon {
  font-size: 1.125rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background: linear-gradient(135deg, transparent 0%, rgba(236, 72, 153, 0.1) 100%);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 30%, #FBCFE8 60%, #F3E8FF 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '✨';
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

.hero::after {
  content: '🌸';
  position: absolute;
  top: 20%;
  right: 15%;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: float 4s ease-in-out infinite reverse;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #2D1B2E 0%, #3D2A3E 50%, #4D3A4E 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 60vh;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
  border: 4px solid rgba(236, 72, 153, 0.2);
  transition: all 0.3s ease;
  filter: brightness(1.05) contrast(1.1);
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(236, 72, 153, 0.4);
}

/* Page Hero */
.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '💖';
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 3rem;
  opacity: 0.2;
  animation: bounce 2s infinite;
}

.page-hero::after {
  content: '🦋';
  position: absolute;
  bottom: 20%;
  right: 10%;
  font-size: 2rem;
  opacity: 0.3;
  animation: flutter 3s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes flutter {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(5px) rotate(5deg); }
  75% { transform: translateX(-5px) rotate(-5deg); }
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.intro-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Quick Links Grid */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.quick-link-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.quick-link-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.quick-link-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.quick-link-card:hover::before {
  transform: scale(1);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(236, 72, 153, 0.3));
  transition: all 0.3s ease;
}

.quick-link-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.quick-link-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.quick-link-card p {
  color: var(--text-secondary);
  text-align: center;
}

/* Bio Section */
.bio-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
}

.bio-text h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.bio-text p {
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.about-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

/* Fun Facts Grid */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.fact-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.fact-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.fact-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Values Section */
.values-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

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

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

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

.subject-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 32px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.subject-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subject-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
  border-color: var(--primary-color);
}

.subject-card:hover::before {
  opacity: 1;
}

.subject-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
  transition: transform 0.3s ease;
}

.subject-card:hover .subject-icon {
  transform: scale(1.1) rotate(10deg);
}

.subject-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.highlight {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-800);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(236, 72, 153, 0.2);
  transition: all 0.2s ease;
}

.highlight:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  transform: scale(1.05);
}

[data-theme="dark"] .highlight {
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
  color: var(--gray-200);
}

/* Academic Content */
.academic-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.project-item,
.award-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.project-item:hover,
.award-item:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.project-subject,
.award-year {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 12px;
}

/* Study Approach */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.approach-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.club-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  overflow: hidden;
}

.club-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 25px 25px 0 0;
}

.club-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
  border-color: var(--primary-color);
}

.club-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
  transition: transform 0.3s ease;
}

.club-card:hover .club-icon {
  transform: scale(1.1) rotate(-10deg);
}

.club-role {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
  transition: all 0.3s ease;
}

.club-card:hover .club-role {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

/* RG Section */
.rg-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
}

.rg-achievements {
  background-color: var(--gray-50);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

[data-theme="dark"] .rg-achievements {
  background-color: var(--gray-800);
}

.rg-achievements ul {
  list-style: none;
  padding-left: 0;
}

.rg-achievements li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 24px;
}

.rg-achievements li:before {
  content: '🏆';
  position: absolute;
  left: 0;
}

.rg-achievements li:last-child {
  border-bottom: none;
}

.rg-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
  border: 3px solid rgba(236, 72, 153, 0.2);
  transition: all 0.3s ease;
}

.rg-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.4);
}

/* Leadership Section */
.leadership-content {
  display: grid;
  gap: 32px;
}

.leadership-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.leadership-item:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

/* Time Management */
.balance-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.balance-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.tip-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.project-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
}

.project-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 25px 25px 0 0;
}

.project-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

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

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

.project-content {
  padding: 24px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  background-color: var(--gray-100);
  color: var(--gray-700);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
}

[data-theme="dark"] .tag {
  background-color: var(--gray-700);
  color: var(--gray-300);
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.skill-category {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
}

.skills-list {
  list-style: none;
  padding-left: 0;
}

.skills-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 24px;
}

.skills-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

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

/* Current Projects */
.current-projects-content {
  display: grid;
  gap: 32px;
}

.current-project {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.current-project:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.project-status {
  margin-left: auto;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-badge.in-progress {
  background-color: var(--warning-color);
  color: var(--white);
}

.status-badge.planning {
  background-color: var(--gray-400);
  color: var(--white);
}

.status-badge.upcoming {
  background-color: var(--success-color);
  color: var(--white);
}

/* Creative Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4);
}

.process-step:hover .step-number::before {
  opacity: 1;
}

/* Blog Styles */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.post-preview {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.post-preview:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.post-preview:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 24px;
}

.post-category {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
}

.post-content h3 {
  margin-bottom: 12px;
}

.post-content h3 a {
  color: var(--text-primary);
  text-decoration: none;
}

.post-content h3 a:hover {
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 16px;
}

/* Blog Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.category-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.post-count {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
}

[data-theme="dark"] .post-count {
  background-color: var(--gray-700);
  color: var(--gray-300);
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter-signup::before {
  content: '💌';
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 3rem;
  opacity: 0.2;
  animation: pulse 2s infinite;
}

.newsletter-signup::after {
  content: '✨';
  position: absolute;
  bottom: 20%;
  right: 15%;
  font-size: 2rem;
  opacity: 0.3;
  animation: twinkle 3s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.4; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: rotate(0deg); }
  50% { opacity: 0.6; transform: rotate(180deg); }
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2,
.newsletter-content p {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
  transform: scale(1.02);
}

/* Blog Post Styles */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px;
}

.post-header {
  text-align: center;
  margin-bottom: 48px;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.post-content {
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.post-content h3 {
  font-size: 1.375rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.post-content p {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.post-content ul,
.post-content ol {
  margin: 24px 0;
  margin-left: 32px;
}

.post-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.post-intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding: 24px;
  background-color: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

[data-theme="dark"] .post-intro {
  background-color: var(--gray-800);
}

.post-image {
  margin: 32px 0;
  text-align: center;
}

.post-image img {
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.post-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* Gallery Styles */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  font-weight: 500;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.photo-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid rgba(236, 72, 153, 0.2);
}

.photo-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
  border-color: var(--primary-color);
}

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

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

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.photo-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

/* PDF Link Styling */
.project-link {
  margin-top: 12px;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.pdf-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
  color: var(--white);
}

.project-gallery {
  margin-top: 16px;
}

.project-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .project-image {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .project-image:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.award-gallery {
  margin-bottom: 16px;
}

.award-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .award-image {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .award-image:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Photo Albums */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.album-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.album-cover {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.album-card:hover .album-cover img {
  transform: scale(1.05);
}

.album-info {
  padding: 24px;
}

.photo-count {
  background-color: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 12px;
}

[data-theme="dark"] .photo-count {
  background-color: var(--gray-700);
  color: var(--gray-300);
}

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

[data-theme="dark"] .photography-story {
  background-color: var(--gray-800);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Contact Form */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}

.contact-form-element {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  font-size: 1rem;
  background-color: var(--surface-color);
  color: var(--text-primary);
  transition: border-color 0.2s ease;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
  transform: scale(1.02);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.method-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-method h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-method a {
  color: var(--primary-color);
  font-weight: 500;
}

.response-info {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border-radius: 20px;
  padding: 24px;
  margin-top: 32px;
  border: 2px solid rgba(236, 72, 153, 0.1);
  position: relative;
  overflow: hidden;
}

.response-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 20px 20px 0 0;
}

[data-theme="dark"] .response-info {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
}

/* Contact Reasons */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.reason-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* Contact Guidelines */
.guidelines-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.guideline-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

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

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--text-secondary);
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .bio-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .rg-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .academic-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero {
    min-height: 70vh;
    padding: 40px 0;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .page-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  section {
    padding: 48px 0;
  }
  
  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .post-navigation {
    flex-direction: column;
  }
  
  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
  }
  
  .subjects-grid,
  .clubs-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(244, 114, 182, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Fluffy hover effects for all cards */
.quick-link-card,
.fact-card,
.subject-card,
.club-card,
.project-item,
.post-preview,
.album-card,
.reason-card {
  position: relative;
}

.quick-link-card:hover,
.fact-card:hover,
.subject-card:hover,
.club-card:hover,
.project-item:hover,
.post-preview:hover,
.album-card:hover,
.reason-card:hover {
  animation: gentle-bounce 0.6s ease;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}

/* Sparkle effect on hover */
.btn:hover,
.quick-link-card:hover,
.fact-card:hover {
  position: relative;
}

.btn:hover::after,
.quick-link-card:hover::after,
.fact-card:hover::after {
  content: '✨';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1rem;
  animation: sparkle 1s ease-in-out;
  pointer-events: none;
}

@keyframes sparkle {
  0% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
  100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

/* Design Page Styles */
.design-intro {
  padding: 80px 0;
  background-color: var(--gray-50);
}

[data-theme="dark"] .design-intro {
  background-color: var(--gray-800);
}

.design-gallery {
  padding: 80px 0;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.design-item {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

[data-theme="dark"] .design-item {
  background-color: var(--gray-800);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.design-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .design-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.design-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.design-item:hover .design-image img {
  transform: scale(1.05);
}

.design-content {
  padding: 24px;
}

.design-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.design-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.design-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.design-process {
  padding: 80px 0;
  background-color: var(--gray-50);
}

[data-theme="dark"] .design-process {
  background-color: var(--gray-800);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .hero-actions,
  .btn,
  .newsletter-signup,
  .gallery-filters {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
  
  .page-hero {
    background: none;
    color: #000;
    padding: 24px 0;
  }
  
  .design-grid {
    grid-template-columns: 1fr;
  }
}