/* Custom CSS for Bloom Naturel - Personal Development Website */

/* ========== Root Variables ========== */
:root {
    --primary-color: #1e76e9;
    --primary-dark: #1840c2;
    --primary-light: #c6bbf8;
    --secondary-color: #4d3ab7;
    --secondary-dark: #2d2fa8;
    --secondary-light: #d1c4e9;
    --accent-color: #ff5622;
    --accent-light: #ffccbc;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --dark-color: #263238;
    --light-color: #f5f5f5;
    --white-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    

    /* Spacing */
    --section-padding: 80px 0;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

        /* Typography */
        --font-family-primary: 'Nunito Sans', sans-serif;
        --font-weight-light: 300;
        --font-weight-normal: 400;
        --font-weight-medium: 500;
        --font-weight-semibold: 600;
        --font-weight-bold: 700;
        
}

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

body {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.section-padding {
    padding: var(--section-padding);
}

.container {
    max-width: 1200px;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: var(--font-weight-light);
    color: var(--gray-600);
}

/* ========== Custom Bootstrap Overrides ========== */
.btn {
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    text-transform: none;
    padding: 12px 30px;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
    color: var(--white-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}

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

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

.bg-light {
    background-color: var(--gray-100) !important;
}

/* ========== Header Styles ========== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all var(--transition-normal);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    color: var(--dark-color) !important;
    text-decoration: none;
}

.navbar-brand img {
    margin-right: 10px;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: var(--primary-light);
}
/* ========== Footer ========== */
.footer {
    background: var(--dark-color) !important;
    color: var(--gray-300) !important;
    padding: 3rem 0 1rem;
}

.footer h4, .footer h5 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-brand h4 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: all var(--transition-normal);
    text-decoration: none;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white-color);
}

/* ========== Cookie Popup ========== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-content h5 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* ========== Thank You Page ========== */
.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding);
}

.thank-you-content {
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon i {
    font-size: 5rem;
    color: var(--success-color);
}

.thank-you-title {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.next-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.step-icon {
    margin-bottom: 1rem;
}

.step-icon i {
    font-size: 2.5rem;
}

.next-step h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== Legal Pages ========== */
.main-content {
    padding-top: 100px;
    padding-bottom: 3rem;
}

.legal-content {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.browser-links ul {
    list-style: none;
    padding-left: 0;
}

.browser-links li {
    margin-bottom: 0.5rem;
}

.browser-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.browser-links a:hover {
    text-decoration: underline;
}

/* ========== Responsive Design ========== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

/* ========== Utility Classes ========== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.shadow-custom {
    box-shadow: var(--box-shadow);
}

.shadow-custom-lg {
    box-shadow: var(--box-shadow-lg);
}

.border-radius-custom {
    border-radius: var(--border-radius-lg);
}

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

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

.scale-on-hover {
    transition: transform var(--transition-normal);
}

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

/* ========== Print Styles ========== */
@media print {
    .navbar,
    .cookie-popup,
    .footer {
        display: none !important;
    }
    
    .main-content {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
    }
} 

/* new styles  */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 50, 56, 0.7);
    z-index: 1;
}

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

.hero-title {
    font-size: calc(2rem + 2vw);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: calc(1rem + 0.5vw);
    margin-bottom: 2rem;
    color: var(--gray-200);
    max-width: 700px;
}

.btn-bloom {
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary-bloom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 118, 233, 0.3);
    color: #fff;
}

.btn-secondary-bloom {
    background-color: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.btn-secondary-bloom:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}
/* Стилі для нових блоків */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 70px;
    background-color: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.content-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.direction-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.direction-image img {
    transition: transform 0.5s ease;
}

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

.advantage-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.advantage-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .direction-image {
        margin-bottom: 2rem;
    }
    
    .content-card {
        margin-bottom: 1.5rem;
    }
}
/* Стилі для нових блоків */
.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-300);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.pricing-header {
    padding: 2rem;
    background-color: var(--white-color);
    border-bottom: 1px solid var(--gray-300);
}

.pricing-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.pricing-body {
    padding: 2rem;
    background-color: var(--white-color);
}

.pricing-feature {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-feature:last-child {
    margin-bottom: 0;
}

.pricing-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}
.pricing-btn:hover {
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .process-step {
        padding-left: 70px;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}
/* Стилі для блоку контактів */
.contact-section {
    position: relative;
    background-color: var(--light-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-email:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.contact-email .material-icons {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.contact-form {
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(30, 118, 233, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
}

.contact-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 118, 233, 0.3);
}

@media (max-width: 768px) {
    .contact-info {
        text-align: center;
    }
}