Inital Commit

This commit is contained in:
root
2025-06-24 15:43:32 +02:00
commit 23341b8abb
4657 changed files with 549083 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
.footer {
background-color: #2c3e50;
color: #ecf0f1;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}
.footer a {
color: #ecf0f1;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.footer p {
margin: 0;
font-size: 14px;
}

View File

@@ -0,0 +1,45 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
form {
display: flex;
flex-direction: column;
max-width: 600px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
label {
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #45a049;
}

View File

@@ -0,0 +1,98 @@
/* Header Component Styles - Updated to match Gallery page */
header {
padding: 1.5rem 0;
background: rgba(232, 233, 234, 0.95); /* Match gallery page background */
backdrop-filter: blur(8px);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
}
.logo-img {
height: 40px;
width: auto;
margin-right: 10px;
}
.logo h1 {
font-size: 1.8rem;
font-weight: 700;
margin: 0;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
filter: brightness(0.9);
}
.main-nav ul {
display: flex;
list-style: none;
padding: 0;
margin: 0;
gap: 1.5rem;
}
.main-nav a {
color: var(--text-dark);
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 0.5px;
padding: 0.5rem 0.8rem;
position: relative;
transition: color 0.3s ease;
}
.main-nav a:hover, .main-nav a.active {
color: var(--primary-color);
}
.main-nav a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background: var(--gradient-primary);
transition: width 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after {
width: 100%;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.main-nav {
display: none;
position: fixed;
top: 76px;
left: 0;
width: 100%;
height: auto;
max-height: calc(100vh - 76px);
overflow-y: auto;
background: rgba(232, 233, 234, 0.95); /* Changed to match the header background */
padding: 1rem 0;
z-index: 1000;
}
}

View File

@@ -0,0 +1,38 @@
.hero {
background-image: url('../assets/images/hero-background.jpg');
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
padding: 20px;
}
.hero h1 {
font-size: 3rem;
margin: 0;
}
.hero p {
font-size: 1.5rem;
margin: 10px 0 20px;
}
.hero .cta-button {
background-color: #ffcc00;
color: #333;
padding: 15px 30px;
border: none;
border-radius: 5px;
font-size: 1.2rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
.hero .cta-button:hover {
background-color: #e6b800;
}

View File

@@ -0,0 +1,70 @@
/* Mobile navigation styles */
/* Mobile toggle button */
.mobile-toggle {
display: none;
font-size: 1.75rem;
color: var(--primary-color);
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
z-index: 1000;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.mobile-toggle {
display: block; /* Show on mobile */
}
.main-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: var(--bg-light);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
z-index: 999;
border-radius: 0 0 10px 10px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.main-nav.active {
display: block;
}
.main-nav ul {
flex-direction: column;
width: 100%;
padding: 1rem 0;
gap: 0;
}
.main-nav li {
margin: 0;
width: 100%;
text-align: center;
}
.main-nav a {
display: block;
padding: 0.75rem;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
width: 100%;
}
.main-nav a:hover::after,
.main-nav a.active::after {
display: none;
}
/* Ensure footer copyright is visible and properly formatted on mobile */
footer .container p {
text-align: center;
font-size: 0.9rem;
margin: 0;
padding: 1rem 0;
}
}