Changed around line 1
+ :root {
+ --primary: #1a1a1a;
+ --secondary: #f0f0f0;
+ --accent: #ff3366;
+ --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--primary);
+ background: var(--secondary);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ letter-spacing: 0.2em;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--primary);
+ position: relative;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ width: 0;
+ height: 2px;
+ bottom: -4px;
+ left: 0;
+ background: var(--accent);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .mirror-text {
+ font-size: 8vw;
+ font-weight: 900;
+ display: flex;
+ gap: 0.5rem;
+ }
+
+ .mirror-text span {
+ display: inline-block;
+ animation: float 3s ease-in-out infinite;
+ }
+
+ .mirror-text span:nth-child(2) { animation-delay: 0.2s; }
+ .mirror-text span:nth-child(3) { animation-delay: 0.4s; }
+ .mirror-text span:nth-child(4) { animation-delay: 0.6s; }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ /* Content Sections */
+ .content-section {
+ padding: 6rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .mirror-container {
+ height: 400px;
+ position: relative;
+ overflow: hidden;
+ background: linear-gradient(45deg, var(--primary), var(--accent));
+ border-radius: 1rem;
+ }
+
+ .reflection-text {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ font-size: 4rem;
+ color: white;
+ text-shadow: 0 0 20px rgba(255,255,255,0.5);
+ }
+
+ .grid {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ gap: 2rem;
+ padding: 2rem 0;
+ }
+
+ .grid-item {
+ aspect-ratio: 1;
+ background: var(--primary);
+ border-radius: 1rem;
+ transition: var(--transition);
+ }
+
+ .grid-item:hover {
+ transform: scale(1.05);
+ background: var(--accent);
+ }
+
+ /* Contact Form */
+ .contact-form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ padding: 1rem;
+ border: 2px solid var(--primary);
+ border-radius: 0.5rem;
+ background: transparent;
+ transition: var(--transition);
+ }
+
+ .contact-form input:focus,
+ .contact-form textarea:focus {
+ outline: none;
+ border-color: var(--accent);
+ }
+
+ .contact-form button {
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: var(--secondary);
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .contact-form button:hover {
+ background: var(--accent);
+ transform: translateY(-2px);
+ }
+
+ /* Footer */
+ footer {
+ padding: 2rem;
+ text-align: center;
+ background: var(--primary);
+ color: var(--secondary);
+ }
+
+ /* Mobile Responsiveness */
+ .menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 6px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 30px;
+ height: 3px;
+ background: var(--primary);
+ transition: var(--transition);
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: white;
+ flex-direction: column;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .mirror-text {
+ font-size: 12vw;
+ }
+
+ .grid {
+ grid-template-columns: 1fr;
+ }
+ }