/**
 * File Location: /assets/css/style.css
 * File Name: style.css
 * Function: Custom CSS styles for Menthamedia AG website
 * Version: 1.0.0
 * Last Modified: 2025-09-30
 * 
 * Change History:
 * v1.0.0 (2025-09-30) - Initial creation with Bootstrap 5 customization
 * 
 * Description: Custom styles complementing Bootstrap 5, including brand colors,
 * typography, animations, and responsive design enhancements.
 */

/* ============================================
   COLOR VARIABLES
   ============================================ */




/* montserrat-100 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/montserrat-v31-latin-100.woff2') format('woff2');
}

/* montserrat-100italic - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100;
    src: url('../fonts/montserrat-v31-latin-100italic.woff2') format('woff2');
}

/* montserrat-200 - latin */
@font-face {
    font-display: swap; 
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/montserrat-v31-latin-200.woff2') format('woff2');
}

/* montserrat-300 - latin */
@font-face {
    font-display: swap; 
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/montserrat-v31-latin-300.woff2') format('woff2');
}

/* montserrat-regular - latin */
@font-face {
    font-display: swap; 
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

/* montserrat-600 - latin */
@font-face {
    font-display: swap; 
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

/* montserrat-700 - latin */
@font-face {
    font-display: swap; 
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}





:root {
    --primary-color: #1a365d;
    --primary-light: #2d4a7a;
    --primary-dark: #0f2341;
    --secondary-color: #d35400;
    --secondary-light: #e67e22;
    --secondary-dark: #a04000;
    --accent-color: #2e7d32;
    --warning-color: #f59e0b;
    --light-bg: #f5f7fa;
    --dark-bg: #2d3748;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
}

/* Bootstrap Color Overrides */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.lead {
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header-main {
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(45, 74, 122, 0.9) 100%),
                url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.35) 0%, rgba(45, 74, 122, 0.3) 100%);
    z-index: 0;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.5rem;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */
.card {
    transition: all 0.3s ease;
    border: none;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.card-header {
    border: none;
}

.feature-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.hover-lift:hover .feature-icon {
    transform: scale(1.1);
}

/* ============================================
   ICONS
   ============================================ */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* ============================================
   FORMS
   ============================================ */
.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 54, 93, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stat-item h3 {
    color: var(--warning-color);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--primary-color) !important;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--warning-color) !important;
    padding-left: 5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .display-3 {
        font-size: 3rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.25rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.z-1 {
    z-index: 1;
}

.shadow-lg-custom {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================
   SCROLL BEHAVIOR
   ============================================ */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}