/* INVESTICE ZDARMA - Custom Styles */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #0865fe;
    --bg-white: #fff;
    --bg-light-blue: #f0f4ff;
    --bg-lighter-blue: #dde5ff;
    --bg-dark: #111a24;
    --text-dark: #333;
    --text-light: #666;
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inconsolata', monospace;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Header Styles */
.navbar {
    background-color: var(--bg-dark) !important;
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-lighter-blue) 100%);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #0654d3;
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    color: white;
}

.hero-icons {
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.hero-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--hover-shadow);
}

.hero-phone {
 width: 100%;
    height: auto;
}

/* Page Header for Secondary Pages */
.page-header {
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-lighter-blue) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: var(--bg-light-blue);
}

/* Card Styles */
.card-custom {
    background: white;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    /* height: 100%; */
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.card-custom .card-body {
    padding: 2rem;
}

.card-custom .card-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-custom .card-text {
    color: var(--text-light);
}

/* Direction Cards */
.direction-card {
    background: white;
    border: 2px solid var(--bg-lighter-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.direction-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.direction-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
    text-align: center;
    margin-bottom: 2rem;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    box-shadow: var(--box-shadow);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
}

.testimonial-photo {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    margin: 0 auto 1rem;
    box-shadow: var(--box-shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.blog-title:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
}

.faq-question {
    background: var(--bg-light-blue);
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-lighter-blue);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--text-light);
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Form Styles */
.form-custom .form-control {
    border: 2px solid var(--bg-lighter-blue);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-family: 'Inconsolata', monospace;
    transition: var(--transition);
}

.form-custom .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(8, 101, 254, 0.25);
}

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

/* Contact Info */
.contact-info {
    background: var(--bg-light-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.contact-text {
    color: var(--text-dark);
    font-weight: 500;
}

/* Training Layout */
.training-block {
    margin-bottom: 4rem;
}

.training-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: white;
    padding: 1rem;
    z-index: 1050;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin-bottom: 1rem;
    color: #ccc;
}

.cookie-banner .btn {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-icons {
        margin-top: 2rem;
    }
    
    .hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
    }
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

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

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