/* =============================================
   SHARED FRONTEND STYLES
   Common styles for all public-facing pages
   Generated: 2025-09-08 23:33:22
   ============================================= */

/* Typography System */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Hero Sections */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--bs-primary);
}

/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}


/* =============================================
   UNIVERSAL BLOG STYLES
   Shared across all brand sites
   Merged: 2025-09-08 23:53:07
   ============================================= */

/* blog.css - Enhanced Blog Formatting */

/* Container */
.blog-section {
    padding: 4rem 0;
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Use Bootstrap's container classes instead */

/* App Download Icons - Global Sizing */
#apple_store_announcement_one img,
#google_play_announcement_one img,
img[src*="Apple-store-badge"],
img[src*="google-play-badge"] {
    height: 45px !important;
 width: auto !important;
 max-width: 150px !important;
 margin: 0.5rem 0.25rem !important;
 border-radius: 6px !important;
 box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
 transition: transform 0.3s ease !important;
}

#apple_store_announcement_one img:hover,
#google_play_announcement_one img:hover {
    transform: translateY(-2px) !important;
 box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* App download container */
#app_download_container {
    text-align: center !important;
 margin: 2rem 0 !important;
 padding: 1.5rem !important;
 background: rgba(15, 117, 189, 0.05) !important;
 border-radius: 12px !important;
 border: 1px solid rgba(15, 117, 189, 0.1) !important;
}

/* Enhanced Article Styling */
article {
    background-color: #ffffff;
 border: none;
 border-radius: 16px;
 padding: 3rem;
 margin-bottom: 3rem;
 box-shadow: 0 8px 32px rgba(0,0,0,0.08);
 position: relative;
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
    transform: translateY(-2px);
 box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

article::before {
    content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-secondary) 100%);
}

/* Fix for Bootstrap 5 Bootstrap conflicts */
article.post {
    width: 100%;
 max-width: 100%;
 box-sizing: border-box;
}

/* Fix inline styles conflicts */
article h1[style*="padding-top"],
article h2[style*="padding-top"],
article p[style*="padding-bottom"] {
    padding-top: 2rem !important;
 padding-bottom: 1rem !important;
}

/* Enhanced Typography */
article h1 {
    margin-top: 0;
 margin-bottom: 2rem;
 font-size: 2.75rem;
 font-weight: 800;
 line-height: 1.1;
 color: #1a1a1a;
 font-family: 'Raleway', sans-serif;
 background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-secondary) 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

article h2 {
    margin-top: 3rem;
 margin-bottom: 1.5rem;
 font-size: 2rem;
 font-weight: 700;
 color: #2c3e50;
 font-family: 'Raleway', sans-serif;
 position: relative;
 padding-bottom: 0.5rem;
}

article h2::after {
    content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 50px;
 height: 3px;
 background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-secondary) 100%);
 border-radius: 2px;
}

article h3 {
    margin-top: 2.5rem;
 margin-bottom: 1rem;
 font-size: 1.5rem;
 font-weight: 600;
 color: #34495e;
 font-family: 'Raleway', sans-serif;
}

/* Responsive typography */
@media (max-width: 768px) {
    article h1 {
 font-size: 2.25rem;
}

article h2 {
    font-size: 1.75rem;
}

article h3 {
    font-size: 1.25rem;
}

}

article header time {
    display: block;
 font-size: 0.9rem;
 color: #6c757d;
 margin-bottom: 1rem;
}

article img {
    display: block;
 height: 420px;
 width: auto;
 max-width: 100%; /* Prevents image from exceeding container width */
 margin: 0 auto 1rem auto; /* Centers the image and adds bottom margin */
 object-fit: cover;
 border-radius: 0.25rem;
 box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

article p {
    line-height: 1.7;
 margin-bottom: 2rem;
 font-size: 1.125rem;
 color: #4a5568;
 text-align: left;
 font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

article p:first-of-type {
    font-size: 1.25rem;
 color: #2d3748;
 font-weight: 500;
}

article p:last-of-type {
    margin-bottom: 0;
}

/* Fix for text alignment in blog articles */
article .text-center {
    text-align: left !important;
}

/* Additional fixes for narrow column issue */
.blog-section .text-center {
    text-align: inherit !important;
}

/* Fix the wrapper div that's causing narrow columns */
.blog-section #wrapper,
.blog-section #main {
    width: 100% !important;
 max-width: 100% !important;
}

/* Ensure article content has proper width */
.blog-section article.post {
    max-width: 900px !important;
 width: 100% !important;
 margin: 0 auto !important;
}

/* Override conflicting .post styles from brand_Blog.css */
.blog-section .post {
    max-width: 100% !important;
 width: 100% !important;
 padding: 3rem !important;
}

/* Fix the nested div structure */
.blog-section .text-center {
    width: 100% !important;
 max-width: 100% !important;
}

.blog-section .container {
    max-width: 1200px !important; /* Allow container to be wider */
}

/* Override text-center for all blog content except headings */
.blog-section .text-center p,
.blog-section .text-center ul,
.blog-section .text-center ol,
.blog-section .text-center div:not(.title) {
    text-align: left !important;
}

/* Improve figure and image styling */
article figure {
    margin: 2rem 0;
 text-align: center;
}

article .image.featured {
    display: block;
 text-align: center;
 margin: 2rem 0;
}

/* Fix for Bootstrap 5 row and column layout */
.blog-section .row {
    margin: 0;
}

.blog-section .container {
    padding: 0 1rem;
}

/* Footer Styling */
article footer {
    text-align: center;
}

article footer .btn {
    padding: 0.65rem 1.25rem;
 border-radius: 0.25rem;
 text-decoration: none; /* Removes underline from links */
 display: inline-block; /* Ensures proper padding and alignment */
 background-color: #007bff; /* Default button color */
 color: #fff; /* Button text color */
 transition: background-color 0.3s ease;
}

/* Button Hover Effect */
article footer .btn:hover,
article footer .btn:focus {
    background-color: #0056b3;
 color: #fff;
}

/* Blog Card Images */
.card-img-top {
    height: 400px !important;
 width: 100% !important;
 object-fit: contain !important;
 object-position: center !important;
 background-color: #f8f9fa !important;
 border-radius: 0.25rem 0.25rem 0 0 !important;
 transition: transform 0.3s ease;
}

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

/* Enhanced Blog Card Container */
.card {
    overflow: hidden;
 box-shadow: 0 6px 20px rgba(0,0,0,0.08);
 border: none;
 border-radius: 16px !important;
 transition: all 0.3s ease;
 margin-bottom: 2rem;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
 transform: translateY(-4px);
}

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

.card-title {
    font-size: 1.5rem !important;
 font-weight: 700 !important;
 line-height: 1.3 !important;
 margin-bottom: 1rem !important;
 color: #2d3748 !important;
 font-family: 'Raleway', sans-serif !important;
}

.card-text {
    font-size: 1rem !important;
 line-height: 1.6 !important;
 color: #4a5568 !important;
 margin-bottom: 1.5rem !important;
}

/* Blog grid spacing */
.blog-section .row > .col-lg-4,
.blog-section .row > .col-md-6 {
    margin-bottom: 2rem;
}

/* Blog Navigation Buttons */
.actions.pagination {
    display: flex;
 justify-content: space-between;
 align-items: center;
 list-style: none;
 padding: 2rem 0;
 margin: 2rem 0 0 0;
 border-top: 1px solid #dee2e6;
 flex-wrap: wrap;
 gap: 1rem;
}

/* Fix for mobile layout */
@media (max-width: 768px) {
    .actions.pagination {
 flex-direction: column;
 gap: 1rem;
}

.actions.pagination li {
    width: 100%;
 text-align: center !important;
}

}

.actions.pagination li {
    flex: 1;
}

.actions.pagination li:first-child {
    text-align: left;
}

.actions.pagination li:nth-child(2) {
    text-align: center;
}

.actions.pagination li:last-child {
    text-align: right;
}

.actions.pagination a {
    display: inline-block;
 padding: 0.75rem 1.5rem;
 border-radius: 0.375rem;
 text-decoration: none;
 font-weight: 500;
 transition: all 0.2s ease;
 position: relative;
}

/* Previous Article Button - Left Arrow */
.actions.pagination li:first-child a {
    background-color: #6c757d;
 color: #ffffff;
 padding-left: 2.5rem;
}

.actions.pagination li:first-child a:before {
    content: "←";
 position: absolute;
 left: 0.75rem;
 font-weight: bold;
}

.actions.pagination li:first-child a:hover {
    background-color: #5a6268;
 transform: translateX(-2px);
}

/* Blog Home Button - House Icon */
.actions.pagination li:nth-child(2) a {
    background-color: #007bff;
 color: #ffffff;
 padding-left: 2.5rem;
 padding-right: 1.5rem;
}

.actions.pagination li:nth-child(2) a:before {
    content: "⌂";
 position: absolute;
 left: 0.75rem;
 font-weight: bold;
}

.actions.pagination li:nth-child(2) a:hover {
    background-color: #0056b3;
 transform: translateY(-1px);
}

/* Next Article Button - Right Arrow */
.actions.pagination li:last-child a {
    background-color: #28a745;
 color: #ffffff;
 padding-right: 2.5rem;
}

.actions.pagination li:last-child a:after {
    content: "→";
 position: absolute;
 right: 0.75rem;
 font-weight: bold;
}

.actions.pagination li:last-child a:hover {
    background-color: #1e7e34;
 transform: translateX(2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    article img {
 height: auto; /* Allows images to resize naturally on smaller screens */
}

article {
    padding: 1.5rem; /* Reduces padding on smaller screens */
}

article footer .btn {
    padding: 0.5rem 1rem;
}

.card-img-top {
    height: 400px !important;
 object-fit: contain !important;
}

.actions.pagination {
    flex-direction: column;
 gap: 0.75rem;
}

.actions.pagination li {
    width: 100%;
 text-align: center !important;
}

.actions.pagination a {
    width: 100%;
 text-align: center;
 padding-left: 1.5rem !important;
 padding-right: 1.5rem !important;
}

.actions.pagination li:first-child a:before,
 .actions.pagination li:nth-child(2) a:before {
    position: static;
 margin-right: 0.5rem;
}

.actions.pagination li:last-child a:after {
    position: static;
 margin-left: 0.5rem;
}