Changed around line 1
+ :root {
+ --primary: #2a2a2a;
+ --accent: #d4af37;
+ --text: #f5f5f5;
+ --bg: #0a0a0a;
+ }
+
+ * {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ font-size: 62.5%;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--bg);
+ overflow-x: hidden;
+ }
+
+ .hero {
+ height: 100vh;
+ background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(42,42,42,0.2)),
+ url('hero-bg.jpg') center/cover;
+ position: relative;
+ }
+
+ .nav {
+ padding: 2rem 5%;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ backdrop-filter: blur(10px);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 2.4rem;
+ font-weight: 700;
+ letter-spacing: -0.5px;
+ background: linear-gradient(to right, var(--accent), #fff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 3rem;
+ }
+
+ .nav-links a {
+ color: var(--text);
+ text-decoration: none;
+ font-size: 1.6rem;
+ transition: all 0.3s ease;
+ position: relative;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ bottom: -5px;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background: var(--accent);
+ transition: width 0.3s;
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ .hero-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 6.4rem;
+ margin-bottom: 2rem;
+ text-shadow: 0 4px 20px rgba(0,0,0,0.3);
+ }
+
+ .hero-content p {
+ font-size: 2rem;
+ max-width: 600px;
+ margin: 0 auto;
+ opacity: 0.9;
+ }
+
+ .grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 5%;
+ }
+
+ .card {
+ aspect-ratio: 1;
+ background-size: cover;
+ background-position: center;
+ border-radius: 1rem;
+ overflow: hidden;
+ position: relative;
+ transition: transform 0.3s ease;
+ }
+
+ .card::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.8));
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ .wide { grid-column: span 2; }
+ .tall { grid-row: span 2; }
+
+ .about {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 5rem;
+ padding: 8% 5%;
+ }
+
+ .profile img {
+ width: 100%;
+ height: 600px;
+ object-fit: cover;
+ border-radius: 1rem;
+ box-shadow: 0 20px 40px rgba(0,0,0,0.3);
+ }
+
+ .bio h2 {
+ font-size: 3.6rem;
+ margin-bottom: 3rem;
+ }
+
+ .bio p {
+ font-size: 1.8rem;
+ margin-bottom: 2rem;
+ line-height: 1.8;
+ }
+
+ .contact {
+ padding: 8% 5%;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .contact-form {
+ display: grid;
+ gap: 2rem;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 1.5rem;
+ background: rgba(255,255,255,0.1);
+ border: 1px solid rgba(255,255,255,0.1);
+ color: var(--text);
+ font-size: 1.6rem;
+ border-radius: 0.5rem;
+ transition: all 0.3s ease;
+ }
+
+ .form-group input:focus,
+ .form-group textarea:focus {
+ outline: none;
+ border-color: var(--accent);
+ background: rgba(255,255,255,0.05);
+ }
+
+ .submit-btn {
+ background: var(--accent);
+ color: var(--primary);
+ padding: 1.5rem 3rem;
+ border: none;
+ border-radius: 0.5rem;
+ font-size: 1.6rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .submit-btn:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(212,175,55,0.3);
+ }
+
+ footer {
+ padding: 5%;
+ text-align: center;
+ border-top: 1px solid rgba(255,255,255,0.1);
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 3rem;
+ margin-bottom: 3rem;
+ }
+
+ .social-links a {
+ color: var(--text);
+ text-decoration: none;
+ font-size: 1.6rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 4.8rem;
+ }
+
+ .about {
+ grid-template-columns: 1fr;
+ }
+
+ .grid {
+ grid-template-columns: 1fr;
+ }
+
+ .wide, .tall {
+ grid-column: unset;
+ grid-row: unset;
+ }
+
+ .menu-toggle {
+ display: block;
+ }
+ }