/* 
 * Vrtmt-etd - Custom Styles
 * Theme: Handcrafted Artisan
 * Layout: Diagonal Sections
 */


:root {
    
    --primary-brown: #8B5A2B;
    --primary-terracotta: #CD5C5C;
    --primary-olive: #556B2F;
    
    
    --secondary-beige: #F5F5DC;
    --secondary-ochre: #DAA520;
    --secondary-rust: #A52A2A;
    
    
    --bg-cream: #FFF8E1;
    --bg-antique-white: #FAEBD7;
    --bg-pale-gray: #F8F9FA;
    
    
    --accent-blue: #1E3A8A;
    --accent-orange: #FF7F50;
    --accent-green: #2E8B57;
    
    
    --bs-primary: var(--primary-olive);
    --bs-primary-rgb: 85, 107, 47;
    --bs-secondary: var(--primary-brown);
    --bs-secondary-rgb: 139, 90, 43;
    --bs-success: var(--accent-green);
    --bs-info: var(--accent-blue);
    --bs-warning: var(--secondary-ochre);
    --bs-danger: var(--secondary-rust);
    --bs-light: var(--bg-pale-gray);
    --bs-dark: #343a40;
}

body {
    font-family: 'Epilogue', sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary-olive);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-brown);
    text-decoration: underline;
}


.iti {
    width: 100%;
}




.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.navbar-brand img {
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
}

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

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


.diagonal-section {
    position: relative;
    padding: 5rem 0;
    margin-top: 5rem;
    background-color: var(--bg-cream);
    z-index: 1;
}

.diagonal-section:before,
.diagonal-section:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: var(--bg-cream);
    z-index: -1;
    opacity: 40%;
}

.diagonal-section:before {
    top: -50px;
    transform: skewY(-3deg);
}

.diagonal-section:after {
    bottom: -50px;
    transform: skewY(-3deg);
}

.diagonal-section.bg-light:before,
.diagonal-section.bg-light:after {
    background-color: var(--bg-pale-gray);
}


.banner-section, .page-banner {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.banner-image {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.banner-image:hover {
    transform: perspective(1000px) rotateY(0);
}


.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-terracotta);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}


.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
}


.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(85, 107, 47, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}


.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: darken(var(--primary-olive), 10%);
    border-color: darken(var(--primary-olive), 10%);
}

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

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


footer {
    position: relative;
    background-color: #343a40;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}




.typed-container {
    min-height: 2.5rem;
    margin: 1rem 0;
}


.tsparticles-container {
    height: 300px;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
}

canvas {
  height: 300px !important;
}


.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background-color: var(--primary-olive);
    color: white;
}


.step-content {
    display: none;
    padding: 1.5rem 0;
}

.step-content.active {
    display: block;
}


.payment-process-steps,
.esim-activation-steps {
    padding: 2rem;
}


.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-olive);
    background-color: rgba(85, 107, 47, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(85, 107, 47, 0.25);
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
}


.contact-form-section {
    position: relative;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.form-control:focus {
    border-color: rgba(85, 107, 47, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.25);
}


.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}


.article-card {
    height: 100%;
}

.article-meta {
    font-size: 0.875rem;
}

.article-content {
    padding-top: 80px;
}

.article-header {
    margin-bottom: 2rem;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-brown);
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-olive);
}

.article-body p, .article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    color: #444;
}

.article-body ul, .article-body ol {
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-share {
    margin: 3rem 0;
}


.comment {
    margin-bottom: 2rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.comment-avatar.admin {
    background-color: var(--primary-terracotta);
}

.comment-reply {
    margin-left: 2rem;
    padding-left: 1rem;
    border-left: 2px solid #e9ecef;
}


.legal-content {
    padding: 2rem 0;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-brown);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-olive);
}


.thank-you-container {
    padding: 4rem 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 1.5rem 0;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .banner-section, .page-banner {
        padding: 7rem 0 3rem;
    }
    
    .banner-image {
        margin-top: 2rem;
        transform: none;
    }
    
    .diagonal-section {
        padding: 4rem 0;
    }
    
    .diagonal-section:before {
        top: -30px;
        height: 60px;
    }
    
    .diagonal-section:after {
        bottom: -30px;
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .banner-section, .page-banner {
        padding: 6rem 0 2rem;
    }
    
    .diagonal-section {
        padding: 3rem 0;
    }
    
    .tsparticles-container {
        height: 200px;
    }

    canvas {
      height: 200px !important;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 0.95rem;
    }
    
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
    }
    
    .banner-section, .page-banner {
        padding: 5.5rem 0 1.5rem;
    }
    
    .section-header h2:after {
        width: 60px;
    }
    
    .step-indicator {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
    
    .payment-process-steps,
    .esim-activation-steps {
        padding: 1.5rem;
    }
    
    .cookie-content h3 {
        font-size: 1.25rem;
    }
}