Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #f4a261;
+ --text-color: #333;
+ --bg-color: #f8f8f8;
+ }
+
+ body {
+ font-family: 'Georgia', serif;
+ color: var(--text-color);
+ background-color: var(--bg-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin: 0.5rem 0;
+ }
+
+ #featured {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .glass-art {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .glass-art img {
+ width: 100%;
+ height: auto;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
+ }
+
+ .description {
+ font-style: italic;
+ margin-top: 1rem;
+ }
+
+ #portfolio-preview {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ margin: 2rem 0;
+ }
+
+ .art-item img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ border-radius: 5px;
+ transition: transform 0.3s ease;
+ }
+
+ .art-item img:hover {
+ transform: scale(1.05);
+ }
+
+ .btn {
+ display: inline-block;
+ padding: 0.8rem 1.5rem;
+ background-color: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: background-color 0.3s ease;
+ }
+
+ .btn:hover {
+ background-color: var(--secondary-color);
+ }
+
+ footer {
+ background-color: var(--text-color);
+ color: white;
+ text-align: center;
+ padding: 1rem;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .gallery {
+ grid-template-columns: 1fr;
+ }
+ }