/* Modern CSS Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Google Fonts */ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap'); body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #e0e0e0; background-color: #121212; background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px); background-size: 20px 20px; } /* Color Palette */ :root { --primary-color: #6c5ce7; --primary-dark: #5649c0; --secondary-color: #00cec9; --accent-color: #fd79a8; --dark-bg: #121212; --darker-bg: #0a0a0a; --card-bg: #1e1e1e; --text-primary: #e0e0e0; --text-secondary: #b0b0b0; --border-color: #333; --shadow-color: rgba(0, 0, 0, 0.3); } /* Header Styles */ header { background-color: var(--darker-bg); box-shadow: 0 2px 20px var(--shadow-color); position: fixed; width: 100%; z-index: 1000; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(10px); } .logo img { height: 50px; filter: brightness(0) invert(1); } nav ul { display: flex; list-style: none; } nav ul li { margin-left: 2rem; } nav ul li a { text-decoration: none; color: var(--text-primary); font-weight: 500; font-family: 'Poppins', sans-serif; transition: all 0.3s; position: relative; padding: 0.5rem 0; } nav ul li a:hover { color: var(--primary-color); } nav ul li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s; } nav ul li a:hover::after { width: 100%; } /* Hero Section and Slider */ .hero-section { padding-top: 80px; min-height: 100vh; display: flex; align-items: center; justify-content: center; background-color: var(--dark-bg); } .slider-container { position: relative; width: 100%; max-width: 1400px; margin: 0 auto; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px var(--shadow-color); } .slider { position: relative; height: 80vh; overflow: hidden; } .slide { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 1.5s ease-in-out; background-color: var(--card-bg); } .slide.active { opacity: 1; } .slide img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 5px; } .slide.portrait img { max-height: 85vh; } .slide.landscape img { max-width: 95vw; } .slide-content { position: absolute; bottom: 2rem; left: 2rem; background-color: rgba(0, 0, 0, 0.8); color: white; padding: 1.5rem; border-radius: 8px; max-width: 400px; backdrop-filter: blur(5px); border: 1px solid var(--border-color); } .slide-content h2 { font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary-color); } .slide-content p { font-size: 0.9rem; margin-bottom: 0.3rem; } .slider-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 2rem; } .slider-controls button { background-color: rgba(0, 0, 0, 0.6); color: white; border: 1px solid var(--border-color); padding: 1.5rem; font-size: 1.8rem; cursor: pointer; transition: all 0.3s; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; } .slider-controls button:hover { background-color: var(--primary-dark); transform: scale(1.1); } .slider-indicators { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.8rem; background-color: rgba(0, 0, 0, 0.5); padding: 0.5rem 1rem; border-radius: 25px; } .indicator { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.5); cursor: pointer; transition: all 0.3s; } .indicator.active { background-color: var(--primary-color); transform: scale(1.2); } /* Section Styles */ section { padding: 5rem 2rem; max-width: 1400px; margin: 0 auto; } section h2 { font-size: 3rem; margin-bottom: 2.5rem; color: var(--primary-color); font-family: 'Poppins', sans-serif; font-weight: 700; position: relative; display: inline-block; } section h2::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 50px; height: 3px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); } .about-content { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; background-color: var(--card-bg); padding: 3rem; border-radius: 10px; box-shadow: 0 5px 15px var(--shadow-color); } .about-text h3 { font-family: 'Poppins', sans-serif; color: var(--secondary-color); margin-bottom: 1.5rem; font-size: 1.8rem; } .about-text p { margin-bottom: 1rem; color: var(--text-secondary); } .contact-info { background-color: var(--darker-bg); padding: 2rem; border-radius: 8px; text-align: center; } .contact-info p { margin-bottom: 1rem; color: var(--text-primary); } .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; } .service { background-color: var(--card-bg); padding: 2.5rem; border-radius: 10px; box-shadow: 0 5px 15px var(--shadow-color); transition: all 0.3s; border: 1px solid var(--border-color); } .service:hover { transform: translateY(-5px); box-shadow: 0 10px 25px var(--shadow-color); } .service h3 { color: var(--primary-color); margin-bottom: 1.5rem; font-family: 'Poppins', sans-serif; font-size: 1.5rem; } .service p { color: var(--text-secondary); margin-bottom: 1rem; } .studio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); gap: 2rem; } .studio { background-color: var(--card-bg); padding: 2.5rem; border-radius: 10px; box-shadow: 0 5px 15px var(--shadow-color); border: 1px solid var(--border-color); } .studio h3 { color: var(--secondary-color); margin-bottom: 1.5rem; font-family: 'Poppins', sans-serif; } .project-filters { margin-bottom: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; } .filter-btn { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 0.8rem 1.5rem; margin-right: 0.5rem; cursor: pointer; border-radius: 25px; transition: all 0.3s; color: var(--text-secondary); font-family: 'Poppins', sans-serif; } .filter-btn:hover { background-color: var(--darker-bg); } .filter-btn.active { background-color: var(--primary-color); color: white; border-color: var(--primary-color); } .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; } .project { background-color: var(--card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px var(--shadow-color); transition: all 0.3s; border: 1px solid var(--border-color); } .project:hover { transform: translateY(-5px); box-shadow: 0 10px 25px var(--shadow-color); } .project img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.3s; } .project:hover img { transform: scale(1.05); } .project h3 { padding: 1.5rem; color: var(--primary-color); font-family: 'Poppins', sans-serif; } .contact-form { background-color: var(--card-bg); padding: 3rem; border-radius: 10px; box-shadow: 0 5px 15px var(--shadow-color); border: 1px solid var(--border-color); } .contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 1rem; margin-bottom: 1.5rem; border: 1px solid var(--border-color); border-radius: 5px; background-color: var(--darker-bg); color: var(--text-primary); font-family: 'Open Sans', sans-serif; transition: border-color 0.3s; } .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary-color); outline: none; } .contact-form textarea { height: 200px; resize: vertical; } .contact-form button { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: white; border: none; padding: 1rem 2rem; border-radius: 5px; cursor: pointer; transition: all 0.3s; font-family: 'Poppins', sans-serif; font-weight: 600; box-shadow: 0 4px 10px var(--shadow-color); } .contact-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 15px var(--shadow-color); } .contact-locations { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; } .location { background-color: var(--card-bg); padding: 2.5rem; border-radius: 10px; box-shadow: 0 5px 15px var(--shadow-color); border: 1px solid var(--border-color); } .location h3 { color: var(--secondary-color); margin-bottom: 1.5rem; font-family: 'Poppins', sans-serif; } /* Footer Styles */ footer { background-color: var(--darker-bg); color: var(--text-primary); padding: 3rem 2rem 2rem; margin-top: 3rem; } .footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 3rem; } .footer-logo img { height: 120px; filter: brightness(0) invert(1); } .footer-info p { margin-bottom: 0.8rem; color: var(--text-secondary); } .footer-legal { text-align: right; } .footer-legal a { color: var(--primary-color); text-decoration: none; transition: color 0.3s; } .footer-legal a:hover { color: var(--secondary-color); } .footer-legal p { margin-bottom: 0.8rem; color: var(--text-secondary); font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 1024px) { .about-content { grid-template-columns: 1fr; } } @media (max-width: 768px) { header { flex-direction: column; padding: 1rem; } nav ul { margin-top: 1rem; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 0 0.8rem; } .hero-section { padding-top: 100px; } .slider { height: 60vh; } .slider-controls { display: none; } .slide-content { position: static; margin-top: 1.5rem; background-color: rgba(0, 0, 0, 0.9); width: 100%; } .footer-content { grid-template-columns: 1fr; text-align: center; } .footer-legal { text-align: center; } } @media (max-width: 480px) { section { padding: 3rem 1.5rem; } section h2 { font-size: 2.2rem; } .slider { height: 50vh; } .slide-content { padding: 1.2rem; } } /* Scrollbar Styling */ ::-webkit-scrollbar { width: 10px; height: 10px; } ::-webkit-scrollbar-track { background: var(--dark-bg); } ::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }