/* Custom CSS für MyGarten24 */

:root {
    --primary-green: #198754;
    --light-green: #20c997;
    --dark-green: #146c43;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.navbar-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-scrolled .navbar-brand img {
    height: 35px !important;
    transition: height 0.3s ease;
}

.navbar.navbar-scrolled .navbar-brand span {
    font-size: 1.1rem !important;
    transition: font-size 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green) !important;
}

.navbar-nav .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white"><polygon points="0,100 1000,0 1000,100"/></svg>') no-repeat bottom;
    background-size: 100% 50px;
    opacity: 0.1;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-section .btn {
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section .card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.services-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-section .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.services-section .btn {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.services-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.counter-item {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.counter-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Testimonials */
.testimonials-section {
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.blockquote {
    position: relative;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-section .btn {
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

.footer .social-links a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    color: var(--primary-green) !important;
    transform: translateY(-3px);
}

.footer .contact-info a:hover {
    color: var(--light-green) !important;
}

/* Footer bottom links - make them lighter */
.footer .text-muted {
    color: #adb5bd !important;
}

.footer .text-muted:hover {
    color: #ced4da !important;
}

/* Back to Top Button */
#backToTop {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(25, 135, 84, 0.3);
}

/* Utilities */
.text-success {
    color: var(--primary-green) !important;
}

.bg-success {
    background-color: var(--primary-green) !important;
}

.btn-success {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-success:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-outline-success {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-success:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 0.5rem 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .display-4 {
        font-size: 2.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .counter-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem !important;
    }

    .services-section .card-img-top {
        height: 150px;
    }
}