Changed around line 1
+ :root {
+ --primary: #2D3436;
+ --accent: #00B894;
+ --light: #F5F6FA;
+ --gradient: linear-gradient(135deg, #00B894, #00CEC9);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--primary);
+ background: var(--light);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: white;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: var(--gradient);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--primary);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: var(--gradient);
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .search-bar {
+ margin-top: 2rem;
+ display: flex;
+ gap: 0.5rem;
+ width: 100%;
+ max-width: 600px;
+ }
+
+ .search-bar input {
+ flex: 1;
+ padding: 1rem;
+ border: none;
+ border-radius: 50px;
+ font-size: 1rem;
+ }
+
+ .search-bar button {
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 50px;
+ background: var(--primary);
+ color: white;
+ cursor: pointer;
+ transition: transform 0.2s ease;
+ }
+
+ .search-bar button:hover {
+ transform: scale(1.05);
+ }
+
+ .gallery {
+ padding: 5rem 5%;
+ }
+
+ .image-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .image-card {
+ background: white;
+ border-radius: 15px;
+ overflow: hidden;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .image-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .image-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ }
+
+ .image-info {
+ padding: 1rem;
+ }
+
+ .load-more {
+ display: block;
+ margin: 3rem auto;
+ padding: 1rem 2rem;
+ background: var(--gradient);
+ border: none;
+ border-radius: 50px;
+ color: white;
+ cursor: pointer;
+ transition: transform 0.2s ease;
+ }
+
+ .load-more:hover {
+ transform: scale(1.05);
+ }
+
+ .about {
+ padding: 5rem 5%;
+ background: white;
+ }
+
+ .about-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .stats {
+ display: flex;
+ justify-content: space-around;
+ margin-top: 3rem;
+ }
+
+ .stat {
+ text-align: center;
+ }
+
+ .number {
+ display: block;
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--accent);
+ }
+
+ footer {
+ background: var(--primary);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .stats {
+ flex-direction: column;
+ gap: 2rem;
+ }
+ }