Files
Frida---Fred/css/style.css

1465 lines
27 KiB
CSS

:root {
--primary-color: #2c2c2c;
--secondary-color: #C4B5A0;
--accent-color: #8B7355;
--light-bg: #F8F7F4;
--white: #ffffff;
--text-dark: #333333;
--text-light: #666666;
}
/* Font Awesome Icon Fonts */
@font-face {
font-family: 'FontAwesome';
src: url('../lib/webfonts/fa-solid-900.woff2') format('woff2'),
url('../lib/webfonts/fa-solid-900.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'FontAwesomeBrands';
src: url('../lib/webfonts/fa-brands-400.woff2') format('woff2'),
url('../lib/webfonts/fa-brands-400.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
/* Reset & Base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Lato', sans-serif;
color: #333;
line-height: 1.6;
font-size: 16px;
font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
color: var(--primary-color);
}
p {
color: var(--text-light);
margin-bottom: 1rem;
}
a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}
/* Top Bar */
.top-bar {
background: var(--primary-color);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
color: var(--white);
font-size: 0.85rem;
}
.top-bar .container-fluid {
display: flex;
gap: 28px;
align-items: center;
justify-content: flex-end;
padding: 8px 0;
}
.top-item {
display: inline-flex;
align-items: center;
gap: 8px;
white-space: nowrap;
}
.top-item i {
color: var(--accent-color);
}
.top-bar a.top-item:hover {
color: var(--secondary-color);
}
@media (max-width: 768px) {
.top-bar .container-fluid {
justify-content: center;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 10px 20px;
}
.top-bar {
font-size: 0.8rem;
}
}
@media (max-width: 480px) {
.top-bar .container-fluid {
gap: 8px;
}
}
/* Navigation */
.navbar {
background: var(--white);
border-bottom: 1px solid #e8e6e1;
padding: 1rem 0;
box-shadow: none;
}
.navbar .container-fluid {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-size: 0.8rem;
font-weight: 700;
color: var(--primary-color) !important;
letter-spacing: 1px;
margin: 0;
}
.brand-text {
display: inline-block;
color: var(--accent-color);
}
.navbar-collapse {
justify-content: center;
}
.nav-link {
color: var(--text-dark) !important;
font-weight: 400;
font-size: 0.95rem;
margin-left: 2rem;
position: relative;
transition: color 0.3s ease;
}
.navbar-nav {
align-items: center;
gap: 20px;
}
.navbar-nav.ms-auto {
margin-left: 0 !important;
}
.navbar-toggler {
margin-left: 8px;
}
@media (max-width: 768px) {
.navbar .container-fluid {
justify-content: space-between;
gap: 12px;
}
.navbar-collapse {
justify-content: center;
}
.navbar-nav {
gap: 12px;
}
.nav-link {
margin-left: 0;
}
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-color);
transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}
.nav-link:hover,
.nav-link.active {
color: var(--accent-color) !important;
}
/* Animation Keyframes */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 0px 20px;
background: linear-gradient(135deg, rgba(250, 249, 247, 0.85) 0%, rgba(243, 241, 237, 0.85) 100%),
url('../img/backgrounds/paralax02.jpg') center/cover no-repeat;
background-attachment: scroll;
position: relative;
overflow: hidden;
}
/* Responsive Background Images für Hero */
@media (min-width: 1921px) {
.hero {
background-image: linear-gradient(135deg, rgba(250, 249, 247, 0.85) 0%, rgba(243, 241, 237, 0.85) 100%),
url('../img/backgrounds/paralax02-large.jpg');
}
}
@media (max-width: 1920px) {
.hero {
background-image: linear-gradient(135deg, rgba(250, 249, 247, 0.85) 0%, rgba(243, 241, 237, 0.85) 100%),
url('../img/backgrounds/paralax02.jpg');
}
}
@media (max-width: 1024px) {
.hero {
background-image: linear-gradient(135deg, rgba(250, 249, 247, 0.85) 0%, rgba(243, 241, 237, 0.85) 100%),
url('../img/backgrounds/paralax02-medium.jpg');
}
}
@media (max-width: 768px) {
.hero {
background-image: linear-gradient(135deg, rgba(250, 249, 247, 0.85) 0%, rgba(243, 241, 237, 0.85) 100%),
url('../img/backgrounds/paralax02-small.jpg');
background-attachment: scroll;
}
}
@media (max-width: 480px) {
.hero {
background-image: linear-gradient(135deg, rgba(250, 249, 247, 0.85) 0%, rgba(243, 241, 237, 0.85) 100%),
url('../img/backgrounds/paralax02-mobile.jpg');
}
}
.hero-content {
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
justify-content: center;
text-align: center;
max-width: 615px;
position: relative;
z-index: 2;
}
.hero-text {
padding-left: 0;
order: 2;
}
.hero-title {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
font-weight: 900;
line-height: 1.2;
margin-bottom: 20px;
color: var(--primary-color);
opacity: 0;
animation: fadeInUp 0.8s ease-out 0.5s forwards;
}
.hero-subtitle {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 40px;
font-weight: 300;
opacity: 0;
animation: fadeInUp 0.8s ease-out 1s forwards;
}
.btn-cta {
display: inline-block;
padding: 14px 40px;
background-color: var(--primary-color);
color: var(--white);
font-weight: 500;
border-radius: 2px;
transition: all 0.3s ease;
text-transform: uppercase;
font-size: 0.85rem;
letter-spacing: 1px;
opacity: 0;
animation: fadeInUp 0.8s ease-out 1.5s forwards;
}
.btn-cta:hover {
background-color: var(--secondary-color);
color: var(--primary-color);
transform: translateY(-2px);
}
.hero-image {
display: flex;
justify-content: center;
align-items: center;
order: 1;
}
.hero-logo {
max-width: 300px;
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
background: transparent;
opacity: 0;
animation: fadeInUp 4s ease-out forwards;
}
.hero-logo:hover {
transform: scale(1.05);
box-shadow: none;
}
.hero-placeholder {
width: 400px;
height: 400px;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 8rem;
color: var(--white);
opacity: 0.8;
}
/* Sections */
section {
padding: 80px 0;
}
.section-heading {
font-family: 'Playfair Display', serif;
font-size: 2.8rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 0;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--text-light);
}
/* About Section */
.section-about {
background: var(--white);
}
.about-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.about-text p {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: var(--text-light);
}
.about-text strong {
color: var(--primary-color);
}
.about-location {
display: flex;
align-items: center;
gap: 10px;
margin-top: 30px;
font-weight: 500;
color: var(--primary-color);
}
.about-location i {
color: var(--secondary-color);
font-size: 1.2rem;
}
.about-image {
display: flex;
justify-content: center;
}
.about-img {
width: 100%;
max-width: 900px;
height: auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-img:hover {
transform: scale(1.03);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.image-placeholder {
width: 350px;
height: 350px;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 6rem;
color: var(--white);
opacity: 0.8;
}
/* Products Section */
.section-products {
background: linear-gradient(135deg, rgba(248, 247, 244, 0.9) 0%, rgba(243, 241, 237, 0.9) 100%),
url('../img/backgrounds/paralax03.jpg') center/cover no-repeat;
background-attachment: scroll;
position: relative;
padding: 80px 0;
}
/* Responsive Background Images für Products */
@media (min-width: 1921px) {
.section-products {
background-image: linear-gradient(135deg, rgba(248, 247, 244, 0.9) 0%, rgba(243, 241, 237, 0.9) 100%),
url('../img/backgrounds/paralax03-large.jpg');
}
}
@media (max-width: 1920px) {
.section-products {
background-image: linear-gradient(135deg, rgba(248, 247, 244, 0.9) 0%, rgba(243, 241, 237, 0.9) 100%),
url('../img/backgrounds/paralax03.jpg');
}
}
@media (max-width: 1024px) {
.section-products {
background-image: linear-gradient(135deg, rgba(248, 247, 244, 0.9) 0%, rgba(243, 241, 237, 0.9) 100%),
url('../img/backgrounds/paralax03-medium.jpg');
}
}
@media (max-width: 768px) {
.section-products {
background-image: linear-gradient(135deg, rgba(248, 247, 244, 0.9) 0%, rgba(243, 241, 237, 0.9) 100%),
url('../img/backgrounds/paralax03-small.jpg');
background-attachment: scroll;
}
}
@media (max-width: 480px) {
.section-products {
background-image: linear-gradient(135deg, rgba(248, 247, 244, 0.9) 0%, rgba(243, 241, 237, 0.9) 100%),
url('../img/backgrounds/paralax03-mobile.jpg');
}
}
.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
position: relative;
z-index: 2;
}
.product-item {
background: var(--white);
padding: 40px 30px;
border-radius: 4px;
text-align: center;
transition: all 0.3s ease;
box-shadow: none;
border: 1px solid #e8e6e1;
}
.product-item:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border-color: var(--secondary-color);
}
.product-icon {
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: 20px;
}
.product-item h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--primary-color);
}
.product-item p {
font-size: 0.95rem;
line-height: 1.7;
color: var(--text-light);
}
/* Services Section */
.section-services {
background: var(--white);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}
.service-card {
background: var(--light-bg);
padding: 40px;
border-radius: 4px;
transition: all 0.3s ease;
border-left: 4px solid transparent;
position: relative;
overflow: hidden;
min-height: 250px;
display: flex;
flex-direction: column;
gap: 16px;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: none;
z-index: 0;
}
.service-card > * {
position: relative;
z-index: 1;
}
.service-img {
width: 100%;
min-height: 180px;
border-radius: 4px;
background-image: var(--bg-image, none);
background-size: cover;
background-position: center;
}
.service-card:hover {
border-left-color: var(--accent-color);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
transform: translateX(8px);
}
.service-icon {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 20px;
}
.service-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--accent-color);
}
.service-card p {
font-size: 0.95rem;
line-height: 1.7;
color: var(--accent-color);
}
/* Events Section */
.section-events {
background: var(--light-bg);
padding: 80px 0;
}
.events-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
margin-top: 40px;
}
.events-info h3 {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 20px;
}
.events-info p {
font-size: 1.05rem;
line-height: 1.8;
color: var(--text-light);
margin-bottom: 30px;
}
.event-details {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
margin-top: 30px;
}
@media (max-width: 768px) {
.event-details {
grid-template-columns: 1fr;
}
}
.event-detail-item {
display: flex;
gap: 20px;
align-items: flex-start;
padding: 20px;
background: var(--light-bg);
border-radius: 4px;
border-left: 4px solid var(--secondary-color);
}
.event-detail-item i {
font-size: 1.5rem;
color: var(--secondary-color);
margin-top: 5px;
flex-shrink: 0;
}
.event-detail-item strong {
display: block;
color: var(--primary-color);
font-size: 1rem;
margin-bottom: 5px;
}
.event-detail-item p {
margin-bottom: 0;
font-size: 0.95rem;
line-height: 1.6;
}
.event-detail-item a {
color: var(--secondary-color);
font-weight: 500;
text-decoration: none;
}
.event-detail-item a:hover {
color: var(--primary-color);
}
.events-dates h3 {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 30px;
}
.dates-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 40px;
}
.date-card {
background: var(--light-bg);
padding: 20px;
border-radius: 4px;
display: flex;
align-items: center;
gap: 15px;
transition: all 0.3s ease;
border: 1px solid #e8e6e1;
}
.date-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
border-color: var(--secondary-color);
}
.date-icon {
font-size: 2rem;
color: var(--secondary-color);
flex-shrink: 0;
}
.date-info {
display: flex;
flex-direction: column;
}
.date-day {
font-size: 0.85rem;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.date-number {
font-size: 1.1rem;
color: var(--primary-color);
font-weight: 600;
margin-top: 2px;
}
.events-cta {
text-align: center;
}
/* Events Carousel Styling */
.events-carousel {
margin-top: 40px;
}
.events-carousel .carousel-inner {
padding: 40px 20px;
min-height: 500px;
background: var(--white);
border-radius: 8px;
}
.events-carousel .carousel-item {
transition: transform 0.6s ease-in-out;
}
.events-carousel .carousel-indicators {
margin-bottom: -30px;
}
.events-carousel .carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: var(--secondary-color);
opacity: 0.5;
border: none;
}
.events-carousel .carousel-indicators button.active {
opacity: 1;
}
.events-carousel .carousel-control-prev,
.events-carousel .carousel-control-next {
width: 50px;
height: 50px;
background-color: var(--secondary-color);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 0.8;
}
.events-carousel .carousel-control-prev {
left: -25px;
}
.events-carousel .carousel-control-next {
right: -25px;
}
.events-carousel .carousel-control-prev:hover,
.events-carousel .carousel-control-next:hover {
opacity: 1;
background-color: var(--primary-color);
}
.events-carousel .carousel-control-prev-icon,
.events-carousel .carousel-control-next-icon {
width: 20px;
height: 20px;
}
.events-carousel .events-info,
.events-carousel .event-details,
.events-carousel .events-dates {
max-width: 900px;
margin: 0 auto;
}
/* Suppliers Section */
.section-suppliers {
background: var(--light-bg);
}
.suppliers-grid {
display: grid;
grid-template-columns: repeat(4, minmax(250px, 1fr));
gap: 40px;
}
.supplier-card {
background: var(--white);
border-radius: 4px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid #e8e6e1;
display: flex;
flex-direction: column;
}
.supplier-image {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
}
.supplier-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
border-color: var(--secondary-color);
}
.supplier-icon {
font-size: 3rem;
color: var(--white);
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
padding: 40px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
min-height: 150px;
}
.supplier-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--primary-color);
padding: 0 25px;
padding-top: 25px;
}
.supplier-card p {
font-size: 0.95rem;
line-height: 1.7;
color: var(--text-light);
padding: 0 25px;
margin-bottom: 20px;
flex-grow: 1;
}
.link-arrow {
display: inline-block;
color: var(--secondary-color);
font-weight: 500;
padding: 0 25px 25px 25px;
transition: all 0.3s ease;
text-decoration: none;
font-size: 0.9rem;
}
.link-arrow:hover {
color: var(--primary-color);
padding-left: 30px;
}
.link-arrow::after {
content: ' →';
margin-left: 5px;
transition: margin-left 0.3s ease;
}
/* About Section */
#about {
background: white;
}
.about-content {
display: flex;
align-items: center;
gap: 50px;
}
.about-text h2 {
color: var(--primary-color);
font-weight: 700;
margin-bottom: 20px;
}
.about-text p {
color: #666;
line-height: 1.8;
margin-bottom: 15px;
font-size: 1.05rem;
}
.about-image {
/* background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); */
border-radius: 12px;
height: auto;
display: flex;
/* align-items: center; */
justify-content: center;
color: white;
font-size: 5rem;
}
/* Contact Section */
.section-contact {
background: var(--white);
}
.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: stretch;
}
.contact-column {
display: flex;
flex-direction: column;
gap: 30px;
}
.contact-card {
background: var(--light-bg);
padding: 35px;
border-radius: 4px;
border-left: 4px solid var(--secondary-color);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}
.contact-card:hover {
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
transform: translateX(8px);
}
.contact-card h3 {
font-size: 1.1rem;
margin-bottom: 15px;
color: var(--primary-color);
display: flex;
align-items: center;
gap: 10px;
}
.contact-card h3 i {
color: var(--secondary-color);
}
.contact-card p {
margin-bottom: 0;
color: var(--text-light);
}
.contact-card form.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
flex: 1;
}
.contact-card .btn-submit {
align-self: flex-start;
}
.map-embed {
width: 100%;
height: 100%;
flex: 1;
border-radius: 4px;
overflow: hidden;
background: #e8e6e1;
}
.map-embed iframe {
width: 100%;
height: 100%;
border: 0;
}
.contact-card a {
color: var(--secondary-color);
font-weight: 500;
}
.contact-card a:hover {
color: var(--primary-color);
}
.opening-hours {
width: 100%;
border-collapse: collapse;
}
.opening-hours tr {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.opening-hours td {
padding: 10px 0;
color: rgba(255, 255, 255, 0.8);
}
.opening-hours td:last-child {
text-align: right;
font-weight: 500;
color: rgba(255, 255, 255, 0.8)
}
/* Footer */
.site-footer {
background: var(--primary-color);
color: var(--white);
padding: 60px 0 20px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-column h4 {
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
color: var(--secondary-color);
margin-bottom: 20px;
font-weight: 700;
}
.footer-column p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 20px;
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 10px;
}
.footer-column a {
color: rgba(255, 255, 255, 0.8);
transition: color 0.3s ease;
font-size: 0.95rem;
}
.footer-column a:hover {
color: var(--secondary-color);
}
.social-links {
display: flex;
gap: 15px;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 2px;
color: var(--white);
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: var(--secondary-color);
color: var(--primary-color);
transform: translateY(-3px);
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
text-align: center;
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.hero-content {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-title {
font-size: 2.2rem;
}
.hero-logo {
max-width: 250px;
width: 90%;
}
.hero-placeholder {
width: 250px;
height: 250px;
font-size: 4rem;
}
.hero-text {
padding-left: 0;
}
.about-layout {
grid-template-columns: 1fr;
gap: 40px;
}
.image-placeholder {
width: 250px;
height: 250px;
font-size: 4rem;
}
.section-heading {
font-size: 2rem;
}
.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}
.nav-link {
margin-left: 0;
margin-top: 10px;
}
.container-fluid {
padding-left: 20px !important;
padding-right: 20px !important;
}
.products-grid,
.services-grid,
.suppliers-grid {
grid-template-columns: 1fr;
}
.events-content {
grid-template-columns: 1fr;
gap: 40px;
}
.dates-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 1.8rem;
}
.hero-logo {
max-width: 200px;
width: 85%;
}
.section-heading {
font-size: 1.5rem;
}
.hero-placeholder,
.image-placeholder {
width: 150px;
height: 150px;
font-size: 2rem;
}
.supplier-icon {
font-size: 2rem;
padding: 30px;
}
.dates-grid {
grid-template-columns: 1fr;
}
.event-details {
gap: 15px;
}
.event-detail-item {
padding: 15px;
}
}
/* iOS-spezifische Fixes */
@supports (-webkit-touch-callout: none) {
.hero-logo {
max-width: 100%;
width: auto;
height: auto;
}
.hero-image {
width: 100%;
max-width: 300px;
flex-shrink: 0;
}
@media (max-width: 768px) {
.hero-image {
max-width: 250px;
}
.hero-logo {
width: 100%;
}
}
@media (max-width: 480px) {
.hero-image {
max-width: 200px;
}
}
}
/* Contact Form Styles */
.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group label {
font-weight: 600;
margin-bottom: 8px;
color: var(--dark-color);
font-size: 0.95rem;
}
.form-control {
padding: 12px;
border: 1px solid #d4d2cd;
border-radius: 4px;
font-family: inherit;
font-size: 1rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
outline: none;
border-color: var(--secondary-color);
box-shadow: 0 0 0 3px rgba(196, 181, 160, 0.1);
}
.form-control:invalid:not(:placeholder-shown) {
border-color: var(--secondary-color);
}
textarea.form-control {
resize: vertical;
min-height: 120px;
font-family: inherit;
}
.btn-submit {
padding: 12px 30px;
background-color: var(--secondary-color);
color: var(--white);
border: none;
border-radius: 4px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
font-size: 1rem;
margin-top: 10px;
}
.btn-submit:hover {
background-color: #b39a85;
transform: translateY(-2px);
}
.btn-submit:active {
transform: translateY(0);
}
.btn-submit:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.form-message {
padding: 12px;
border-radius: 4px;
margin-top: 10px;
font-weight: 500;
}
.form-message.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.form-message.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background-color: var(--accent-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
text-decoration: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.3s ease;
z-index: 1000;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
background-color: var(--primary-color);
color: var(--white);
transform: translateY(-3px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.back-to-top i {
pointer-events: none;
}
@media (max-width: 768px) {
.back-to-top {
bottom: 20px;
right: 20px;
width: 45px;
height: 45px;
font-size: 1rem;
}
}
/* Impressum Section */
.section-impressum {
background-color: var(--white);
padding: 80px 0;
}
.impressum-content {
max-width: 900px;
margin: 0 auto;
line-height: 1.8;
}
.impressum-content h2,
.impressum-content h3,
.impressum-content h4 {
color: var(--primary-color);
margin-top: 2rem;
margin-bottom: 1rem;
}
.impressum-content h2 {
font-size: 1.8rem;
font-weight: 700;
}
.impressum-content h3 {
font-size: 1.4rem;
font-weight: 600;
}
.impressum-content h4 {
font-size: 1.2rem;
font-weight: 600;
}
.impressum-content p {
margin-bottom: 1rem;
color: var(--text-dark);
}
.impressum-content a {
color: var(--accent-color);
text-decoration: none;
transition: color 0.3s ease;
}
.impressum-content a:hover {
color: var(--primary-color);
}