Compare commits

1 Commits

Author SHA1 Message Date
AgentZero a8e7aa681c UI Updates: Improved fonts and color palette with modern dark theme 2026-03-20 09:35:48 +00:00
+339 -92
View File
@@ -5,17 +5,37 @@
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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-family: 'Open Sans', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f5f5f5;
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: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
background-color: var(--darker-bg);
box-shadow: 0 2px 20px var(--shadow-color);
position: fixed;
width: 100%;
z-index: 1000;
@@ -23,10 +43,12 @@ header {
display: flex;
justify-content: space-between;
align-items: center;
backdrop-filter: blur(10px);
}
.logo img {
height: 60px;
height: 50px;
filter: brightness(0) invert(1);
}
nav ul {
@@ -40,13 +62,31 @@ nav ul li {
nav ul li a {
text-decoration: none;
color: #333;
color: var(--text-primary);
font-weight: 500;
transition: color 0.3s;
font-family: 'Poppins', sans-serif;
transition: all 0.3s;
position: relative;
padding: 0.5rem 0;
}
nav ul li a:hover {
color: #007bff;
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 */
@@ -56,19 +96,22 @@ nav ul li a:hover {
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
background-color: var(--dark-bg);
}
.slider-container {
position: relative;
width: 100%;
max-width: 1200px;
max-width: 1400px;
margin: 0 auto;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px var(--shadow-color);
}
.slider {
position: relative;
height: 70vh;
height: 80vh;
overflow: hidden;
}
@@ -80,7 +123,8 @@ nav ul li a:hover {
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 1s ease-in-out;
transition: opacity 1.5s ease-in-out;
background-color: var(--card-bg);
}
.slide.active {
@@ -91,25 +135,40 @@ nav ul li a:hover {
max-width: 100%;
max-height: 100%;
object-fit: contain;
border-radius: 5px;
}
.slide.portrait img {
max-height: 80vh;
max-height: 85vh;
}
.slide.landscape img {
max-width: 90vw;
max-width: 95vw;
}
.slide-content {
position: absolute;
bottom: 2rem;
left: 2rem;
background-color: rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 0.8);
color: white;
padding: 1rem;
border-radius: 5px;
max-width: 300px;
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 {
@@ -119,20 +178,28 @@ nav ul li a:hover {
display: flex;
justify-content: space-between;
transform: translateY(-50%);
padding: 0 2rem;
}
.slider-controls button {
background-color: rgba(0, 0, 0, 0.5);
background-color: rgba(0, 0, 0, 0.6);
color: white;
border: none;
padding: 1rem;
font-size: 1.5rem;
border: 1px solid var(--border-color);
padding: 1.5rem;
font-size: 1.8rem;
cursor: pointer;
transition: background-color 0.3s;
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: rgba(0, 0, 0, 0.8);
background-color: var(--primary-dark);
transform: scale(1.1);
}
.slider-indicators {
@@ -141,7 +208,10 @@ nav ul li a:hover {
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 0.5rem;
gap: 0.8rem;
background-color: rgba(0, 0, 0, 0.5);
padding: 0.5rem 1rem;
border-radius: 25px;
}
.indicator {
@@ -150,174 +220,319 @@ nav ul li a:hover {
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: background-color 0.3s;
transition: all 0.3s;
}
.indicator.active {
background-color: white;
background-color: var(--primary-color);
transform: scale(1.2);
}
/* Section Styles */
section {
padding: 4rem 2rem;
max-width: 1200px;
padding: 5rem 2rem;
max-width: 1400px;
margin: 0 auto;
}
section h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: #007bff;
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: 2rem;
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(300px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
}
.service {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
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: #007bff;
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(300px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
gap: 2rem;
}
.studio {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
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: 2rem;
margin-bottom: 2.5rem;
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.filter-btn {
background-color: #f0f0f0;
border: none;
padding: 0.5rem 1rem;
background-color: var(--card-bg);
border: 1px solid var(--border-color);
padding: 0.8rem 1.5rem;
margin-right: 0.5rem;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s;
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: #007bff;
background-color: var(--primary-color);
color: white;
border-color: var(--primary-color);
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}
.project {
background-color: #fff;
border-radius: 8px;
background-color: var(--card-bg);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
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: 200px;
height: 250px;
object-fit: cover;
transition: transform 0.3s;
}
.project:hover img {
transform: scale(1.05);
}
.project h3 {
padding: 1rem;
padding: 1.5rem;
color: var(--primary-color);
font-family: 'Poppins', sans-serif;
}
.contact-form {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
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: 0.8rem;
margin-bottom: 1rem;
border: 1px solid #ddd;
border-radius: 4px;
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: 150px;
height: 200px;
resize: vertical;
}
.contact-form button {
background-color: #007bff;
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
color: white;
border: none;
padding: 0.8rem 1.5rem;
border-radius: 4px;
padding: 1rem 2rem;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
transition: all 0.3s;
font-family: 'Poppins', sans-serif;
font-weight: 600;
box-shadow: 0 4px 10px var(--shadow-color);
}
.contact-form button:hover {
background-color: #0056b3;
transform: translateY(-2px);
box-shadow: 0 6px 15px var(--shadow-color);
}
.contact-locations {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
margin-top: 2rem;
margin-top: 3rem;
}
.location {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
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: #333;
color: white;
padding: 2rem;
background-color: var(--darker-bg);
color: var(--text-primary);
padding: 3rem 2rem 2rem;
margin-top: 3rem;
}
.footer-content {
max-width: 1200px;
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 2fr 1fr;
gap: 2rem;
gap: 3rem;
}
.footer-logo img {
height: 100px;
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;
@@ -331,11 +546,15 @@ footer {
}
nav ul li {
margin: 0 0.5rem;
margin: 0 0.8rem;
}
.about-content {
grid-template-columns: 1fr;
.hero-section {
padding-top: 100px;
}
.slider {
height: 60vh;
}
.slider-controls {
@@ -344,26 +563,54 @@ footer {
.slide-content {
position: static;
margin-top: 1rem;
background-color: rgba(0, 0, 0, 0.8);
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: 2rem 1rem;
padding: 3rem 1.5rem;
}
.hero-section {
padding-top: 100px;
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);
}