/* Global Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; background-color: #282828; color: #fff; overflow-x: hidden; } a { text-decoration: none; color: #fff; } header { background: linear-gradient(45deg, #e60023, #ff7a5c); padding: 30px 0; text-align: center; position: relative; } header .header-content { max-width: 1200px; margin: 0 auto; } header .logo { font-size: 3rem; font-weight: bold; color: #fff; text-transform: uppercase; letter-spacing: 2px; } header nav ul { list-style: none; display: flex; justify-content: center; margin-top: 20px; } header nav ul li { margin: 0 20px; } header nav ul li a { font-size: 1.2rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; } .hero-section { background: url('https://source.unsplash.com/1600x900/?artistic,texture') no-repeat center center/cover; padding: 80px 20px; text-align: center; color: #fff; position: relative; z-index: 1; } .hero-section h2 { font-size: 4rem; text-transform: uppercase; font-weight: bold; } .hero-section p { font-size: 1.5rem; margin-top: 20px; color: #ff7a5c; } .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 40px 20px; } .gallery-item { position: relative; overflow: hidden; border-radius: 10px; transition: transform 0.3s ease-in-out; } .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .gallery-item:hover img { transform: scale(1.1); } .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.7); color: #fff; padding: 20px; opacity: 0; transition: opacity 0.3s ease; } .gallery-item:hover .gallery-overlay { opacity: 1; } .gallery-overlay h3 { font-size: 1.8rem; margin-bottom: 10px; } .gallery-overlay p { font-size: 1.2rem; line-height: 1.4; } .about { padding: 60px 20px; background-color: #222; text-align: center; } .about h2 { font-size: 2.5rem; margin-bottom: 20px; color: #ff7a5c; } .about p { font-size: 1.3rem; max-width: 800px; margin: 0 auto; line-height: 1.6; } footer { background-color: #333; padding: 20px; text-align: center; } footer p { font-size: 1rem; color: #fff; }