Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --accent-color: #e74c3c;
+ --text-color: #2c3e50;
+ --background-color: #f9f9f9;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ /* Header & Navigation */
+ header {
+ background: white;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ .main-nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem var(--spacing);
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: white;
+ padding: var(--spacing);
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease-out;
+ }
+
+ .hero p {
+ font-size: 1.5rem;
+ opacity: 0.9;
+ animation: fadeInUp 1s ease-out 0.2s;
+ }
+
+ /* Research Areas */
+ .research-areas {
+ padding: var(--spacing);
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .research-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .research-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .research-card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Team Section */
+ .team-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: var(--spacing);
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .team-member {
+ text-align: center;
+ }
+
+ .member-photo {
+ width: 200px;
+ height: 200px;
+ border-radius: 50%;
+ background: #ddd;
+ margin: 0 auto 1rem;
+ }
+
+ /* Publications */
+ .publications {
+ background: white;
+ padding: var(--spacing);
+ }
+
+ .pub-list {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .pub-item {
+ padding: 1rem 0;
+ border-bottom: 1px solid #eee;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: var(--spacing);
+ background: var(--primary-color);
+ color: white;
+ }
+
+ .contact-info {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 2rem var(--spacing);
+ }
+
+ /* Animations */
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu {
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--primary-color);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ }
+ }