Changed around line 1
+ :root {
+ --primary-color: #6C5B7B;
+ --secondary-color: #C06C84;
+ --accent-color: #F67280;
+ --background-color: #F8B195;
+ --text-color: #355C7D;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', sans-serif;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ .nav-links {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ .cta-button {
+ background-color: var(--accent-color);
+ padding: 0.5rem 1rem;
+ border-radius: 5px;
+ text-decoration: none;
+ color: white;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .primary-button {
+ background-color: var(--accent-color);
+ padding: 0.75rem 1.5rem;
+ border-radius: 5px;
+ text-decoration: none;
+ color: white;
+ font-size: 1.1rem;
+ }
+
+ .portfolio-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ padding: 2rem;
+ }
+
+ .portfolio-item img {
+ width: 100%;
+ border-radius: 10px;
+ transition: transform 0.3s ease;
+ }
+
+ .portfolio-item img:hover {
+ transform: scale(1.05);
+ }
+
+ .about, .contact {
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .contact-links {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ .footer-content {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links, .contact-links, .footer-links {
+ flex-direction: column;
+ align-items: center;
+ }
+ }