Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --dark-color: #2d3436;
+ --light-color: #f7f7f7;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--dark-color);
+ overflow-x: hidden;
+ }
+
+ .hero {
+ min-height: 100vh;
+ background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
+ padding: 1rem;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.1);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: white;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ .hero-section {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ min-height: 100vh;
+ color: white;
+ }
+
+ .hero-section h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .cta-buttons {
+ display: flex;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .primary-btn, .secondary-btn {
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ font-weight: bold;
+ transition: var(--transition);
+ }
+
+ .primary-btn {
+ background: white;
+ color: var(--primary-color);
+ }
+
+ .secondary-btn {
+ border: 2px solid white;
+ color: white;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 1rem;
+ padding: 2rem;
+ }
+
+ .gallery-item {
+ height: 300px;
+ background: var(--light-color);
+ border-radius: 10px;
+ overflow: hidden;
+ position: relative;
+ transition: var(--transition);
+ }
+
+ .gallery-item:hover {
+ transform: translateY(-10px);
+ }
+
+ .overlay {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ padding: 1rem;
+ background: rgba(0,0,0,0.7);
+ color: white;
+ transform: translateY(100%);
+ transition: var(--transition);
+ }
+
+ .gallery-item:hover .overlay {
+ transform: translateY(0);
+ }
+
+ .design-elements {
+ padding: 4rem 2rem;
+ background: var(--light-color);
+ }
+
+ .elements-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .element-card {
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .element-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 12px rgba(0,0,0,0.1);
+ }
+
+ .contact-section {
+ padding: 4rem 2rem;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ padding: 1rem;
+ border: none;
+ border-radius: 5px;
+ background: var(--light-color);
+ }
+
+ .contact-form button {
+ padding: 1rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ footer {
+ background: var(--dark-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-menu {
+ position: relative;
+ }
+
+ .menu-toggle {
+ display: block;
+ font-size: 1.5rem;
+ color: white;
+ cursor: pointer;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ right: 0;
+ background: white;
+ padding: 1rem;
+ border-radius: 5px;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .nav-links a {
+ color: var(--dark-color);
+ }
+
+ .hero-section h1 {
+ font-size: 2.5rem;
+ }
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }