Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --accent-color: #e74c3c;
+ --text-color: #333;
+ --background-color: #f9f9f9;
+ --spacing-unit: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .hero {
+ background-color: white;
+ padding: var(--spacing-unit);
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--primary-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: var(--spacing-unit);
+ padding: var(--spacing-unit);
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .gallery-item {
+ position: relative;
+ overflow: hidden;
+ border-radius: 8px;
+ transition: transform 0.3s ease;
+ }
+
+ .gallery-item:hover {
+ transform: scale(1.02);
+ }
+
+ .gallery-item img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ aspect-ratio: 1;
+ }
+
+ .about-section {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: var(--spacing-unit);
+ text-align: center;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-top: var(--spacing-unit);
+ }
+
+ .social-icon {
+ font-size: 1.5rem;
+ color: var(--primary-color);
+ transition: color 0.3s ease;
+ }
+
+ .social-icon:hover {
+ color: var(--accent-color);
+ }
+
+ footer {
+ background-color: white;
+ padding: var(--spacing-unit);
+ margin-top: var(--spacing-unit);
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .gallery-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }