/* styles.css */ /* Hero Section */ .hero { min-height: 100vh; background: linear-gradient(135deg, #007bff 0%, #00c4cc 100%); position: relative; display: flex; flex-direction: column; overflow: hidden; } .navbar { padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 0.1); } .logo h1 { color: var(--secondary-color); font-size: 1.5rem; } .nav-links { display: flex; list-style: none; } .nav-links li { margin-left: 2rem; } .nav-links a { color: var(--secondary-color); text-decoration: none; transition: color 0.3s ease; } .nav-links a:hover { color: #ffd700; } .hero-content { text-align: center; padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; } .hero-content h1 { color: var(--secondary-color); font-size: 3rem; margin-bottom: 1rem; animation: fadeIn 1s ease-in; } .subtitle { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; } /* Buttons */ .hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; } .btn { padding: 0.8rem 2rem; border: none; border-radius: 25px; cursor: pointer; font-size: 1rem; transition: transform 0.3s ease, box-shadow 0.3s ease; } .btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); } .primary-btn { background: var(--secondary-color); color: var(--primary-color); } .secondary-btn { background: transparent; border: 2px solid var(--secondary-color); color: var(--secondary-color); } .tertiary-btn { background: #ffd700; color: var(--text-color); } /* Animations */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Responsive Design */ @media (max-width: 768px) { .navbar { flex-direction: column; padding: 1rem; } .nav-links { margin-top: 1rem; } .hero-content h1 { font-size: 2rem; } .hero-buttons { flex-direction: column; align-items: center; } .btn { width: 80%; margin: 0.5rem 0; } } /* Performance optimizations */ img { max-width: 100%; height: auto; loading: lazy; }