/* Custom styles for StartTreuhandPlus */

/* General styles */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Custom background colors */
.bg-primary-light {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.bg-secondary-light {
    background-color: rgba(var(--bs-secondary-rgb), 0.1);
}

/* Custom gradients */
.bg-gradient-teal {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-success) 100%);
}

.bg-gradient-coral {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-danger) 100%);
}

/* Container fixes for mobile */
@media (max-width: 768px) {
    .container {
        padding-right: 15px !important;
        padding-left: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .col-md-4, .col-md-6, .col-lg-4, .col-lg-6 {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .card {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .card-body {
        padding: 1.5rem !important;
    }
}

/* Enhanced hover effects */
.hover-translate-y {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-translate-y:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(var(--bs-primary-rgb), 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Background effects */
.bg-gradient-dark {
    background: linear-gradient(45deg, var(--bs-dark) 0%, #5A6065 100%);
}

.transform-skew {
    transform: skew(-3deg);
}

@media (max-width: 768px) {
    .transform-skew {
        transform: none;
    }
}

/* Card styles */
.card {
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    box-shadow: 0 1rem 3rem rgba(var(--bs-primary-rgb), 0.15) !important;
}

.card.bg-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #7A8A7B 100%) !important;
}

.card.bg-secondary {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, #A89688 100%) !important;
}

/* Form styles */
.form-control {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
    background-color: var(--bs-light) !important;
}

/* Button styles */
.btn {
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--bs-secondary-rgb), 0.4);
}

/* Image styles */
.rounded-4 {
    border-radius: 1.5rem !important;
}

.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Opacity utilities */
.opacity-10 {
    opacity: 0.1;
}

/* Z-index utilities */
.z-1 {
    z-index: 1;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideInRight {
    animation: slideInRight 1s ease-out;
}

/* Text styles */
.text-gradient {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem !important;
    }
    
    .display-5 {
        font-size: 1.75rem !important;
    }

    .display-6 {
        font-size: 1.5rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }

    h1, .h1 {
        font-size: 1.75rem !important;
    }

    h2, .h2 {
        font-size: 1.5rem !important;
    }

    h3, .h3 {
        font-size: 1.25rem !important;
    }

    h4, .h4 {
        font-size: 1.125rem !important;
    }

    .p-5 {
        padding: 1.5rem !important;
    }

    .p-4 {
        padding: 1rem !important;
    }

    .mb-4 {
        margin-bottom: 1rem !important;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
    }

    .rounded-4 {
        border-radius: 1rem !important;
    }
}

/* Burger menu styles - white color for mobile */
.bg-dark .navbar-toggler,
.navbar-toggler {
    border: 1px solid #ffffff !important;
    background-color: transparent !important;
    outline: none !important;
    color: #ffffff !important;
}

.bg-dark .navbar-toggler:focus,
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5) !important;
    border-color: #ffffff !important;
}

.bg-dark .navbar-toggler:hover,
.navbar-toggler:hover {
    border-color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-dark .navbar-toggler-icon,
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em !important;
    height: 1.5em !important;
    filter: none !important;
}

/* Additional styles for mobile visibility */
@media (max-width: 991px) {
    .bg-dark .navbar-toggler,
    .navbar-toggler {
        border-color: #ffffff !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        padding: 0.5rem !important;
    }
    
    .bg-dark .navbar-toggler:hover,
    .navbar-toggler:hover {
        background-color: rgba(255, 255, 255, 0.2) !important;
        border-color: #ffffff !important;
    }
    
    .bg-dark .navbar-toggler-icon,
    .navbar-toggler-icon {
        filter: none !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
} 