/* Reset and base styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; overflow-x: hidden; } a { text-decoration: none; color: inherit; } ul { list-style: none; } /* Header */ header { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .logo { font-size: 1.8rem; font-weight: bold; background: linear-gradient(135deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .nav-links { display: flex; list-style: none; gap: 2rem; } .nav-links li a { padding: 0.5rem 1rem; border-radius: 25px; transition: all 0.3s ease; } .nav-links li a:hover { background: rgba(102, 126, 234, 0.1); transform: translateY(-2px); } /* Hero Section */ .hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('/images/aero-bg.jpg') center/cover no-repeat; opacity: 0.3; z-index: -1; } .hero-content h1 { font-size: 4rem; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } .hero-content p { font-size: 1.5rem; margin-bottom: 2rem; opacity: 0.9; } .btn { display: inline-block; padding: 1rem 2rem; background: linear-gradient(135deg, #667eea, #764ba2); color: white; border-radius: 50px; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); } .btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4); } /* Main Content */ main { max-width: 1200px; margin: 5rem auto 2rem; padding: 0 2rem; } section { margin-bottom: 4rem; padding: 2rem; background: rgba(255, 255, 255, 0.9); border-radius: 20px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); backdrop-filter: blur(10px); } h2 { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; color: #667eea; } /* Gallery Grid */ .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; } .gallery-item { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .gallery-item:hover { transform: scale(1.05); } .gallery-item img { width: 100%; height: 200px; object-fit: cover; } .gallery-item h3 { padding: 1rem; color: #333; } .gallery-item p { padding: 0 1rem 1rem; color: #666; } /* Archive Search */ .search-form { display: flex; justify-content: center; margin-bottom: 2rem; } .search-input { padding: 1rem; border: none; border-radius: 50px 0 0 50px; width: 300px; font-size: 1rem; } .search-btn { padding: 1rem 2rem; border: none; background: linear-gradient(135deg, #667eea, #764ba2); color: white; border-radius: 0 50px 50px 0; cursor: pointer; transition: all 0.3s ease; } .search-btn:hover { transform: translateX(5px); } /* Footer */ footer { text-align: center; padding: 2rem; background: rgba(0, 0, 0, 0.1); color: #666; margin-top: 4rem; } /* Responsive Design */ @media (max-width: 768px) { .nav-links { display: none; /* Could add mobile menu here */ } .hero-content h1 { font-size: 2.5rem; } .hero-content p { font-size: 1.2rem; } .search-input { width: 200px; } section { padding: 1rem; } } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } section { animation: fadeInUp 0.6s ease forwards; } /* Additional aero-inspired effects */ .glass { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 15px; } .blur-bg { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); }