Files
2026-07-03 12:26:01 +02:00

208 lines
3.4 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, #e85d04 0%, #faedcd 100%);
min-height: 100vh;
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 5%;
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: #e85d04;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
text-decoration: none;
color: #333;
font-weight: 600;
transition: color 0.3s;
}
.nav-links a:hover {
color: #e85d04;
}
/* Buttons */
.btn-primary {
background: #e85d04;
color: white;
border: none;
padding: 0.7rem 1.5rem;
border-radius: 25px;
cursor: pointer;
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(232, 93, 4, 0.3);
}
.btn-large {
background: #fff;
color: #e85d04;
border: 2px solid #e85d04;
padding: 1rem 2.5rem;
font-size: 1.1rem;
border-radius: 30px;
cursor: pointer;
font-weight: 700;
margin-top: 1rem;
transition: all 0.3s;
}
.btn-large:hover {
background: #e85d04;
color: white;
}
/* Hero */
.hero {
margin-top: 70px;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1595435934249-5df7ed86e1c0?w=1920');
background-size: cover;
background-position: center;
color: white;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
}
/* Features */
.features {
padding: 5rem 5%;
background: white;
}
.features h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #e85d04;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.feature-card {
background: #faf3e0;
padding: 2rem;
border-radius: 15px;
text-align: center;
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-10px);
}
.icon {
font-size: 3rem;
margin-bottom: 1rem;
}
/* Modal */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
}
.modal-content {
background: white;
margin: 5% auto;
padding: 2rem;
border-radius: 15px;
width: 90%;
max-width: 400px;
position: relative;
}
.close {
position: absolute;
right: 1rem;
top: 1rem;
font-size: 1.5rem;
cursor: pointer;
}
.auth-form input {
width: 100%;
padding: 0.8rem;
margin: 0.5rem 0;
border: 1px solid #ddd;
border-radius: 8px;
font-family: inherit;
}
.auth-form h2 {
color: #e85d04;
margin-bottom: 1.5rem;
text-align: center;
}
.auth-form a {
color: #e85d04;
}
/* Footer */
.footer {
background: #333;
color: white;
text-align: center;
padding: 2rem;
margin-top: 3rem;
}
.footer p {
margin: 0.5rem 0;
}