Changed around line 1
+ :root {
+ --primary: #2a2c24;
+ --secondary: #e3dcd2;
+ --accent: #a38f6a;
+ --text: #3a362e;
+ }
+
+ * { box-sizing: border-box; margin: 0; padding: 0 }
+
+ body {
+ font-family: 'Georgia', serif;
+ line-height: 1.6;
+ color: var(--text);
+ scroll-behavior: smooth;
+ }
+
+ .hero {
+ height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
+ url(hero-bg.jpg) center/cover;
+ color: white;
+ position: relative;
+ clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ padding: 1.5rem 5%;
+ backdrop-filter: blur(5px);
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ letter-spacing: 2px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .cta-button {
+ padding: 0.8rem 1.5rem;
+ border: 2px solid var(--accent);
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--accent);
+ color: white;
+ }
+
+ .hero-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1.5rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
+ }
+
+ .primary-button {
+ padding: 1rem 2.5rem;
+ background: var(--accent);
+ color: white;
+ border: none;
+ font-size: 1.1rem;
+ margin-top: 2rem;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 3rem;
+ padding: 4rem 5%;
+ }
+
+ .feature-card {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .feature-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .gallery {
+ padding: 5rem 0;
+ background: var(--secondary);
+ }
+
+ .slider-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .slider-track {
+ display: flex;
+ transition: transform 0.5s ease;
+ }
+
+ .slider-container img {
+ width: 100%;
+ height: 500px;
+ object-fit: cover;
+ flex-shrink: 0;
+ }
+
+ button[class^="slider-"] {
+ position: absolute;
+ top: 50%;
+ transform: translateY(-50%);
+ background: rgba(255,255,255,0.8);
+ border: none;
+ padding: 1rem;
+ cursor: pointer;
+ font-size: 1.5rem;
+ transition: all 0.3s ease;
+ }
+
+ .slider-prev { left: 2rem }
+ .slider-next { right: 2rem }
+
+ .material-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 5%;
+ }
+
+ .material-card {
+ overflow: hidden;
+ border-radius: 10px;
+ position: relative;
+ }
+
+ .material-card img {
+ width: 100%;
+ height: 300px;
+ object-fit: cover;
+ transition: transform 0.5s ease;
+ }
+
+ .material-card:hover img {
+ transform: scale(1.1);
+ }
+
+ .contact {
+ background: var(--primary);
+ color: white;
+ padding: 4rem 5%;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px) }
+ to { opacity: 1; transform: translateY(0) }
+ }
+
+ .feature-card, .material-card {
+ animation: fadeIn 0.6s ease forwards;
+ }
+
+ ::-webkit-scrollbar {
+ width: 8px;
+ background: var(--secondary);
+ }
+
+ ::-webkit-scrollbar-thumb {
+ background: var(--accent);
+ border-radius: 4px;
+ }