/* ====================================
   SuperPatch Homepage - Professional CSS
   ==================================== */

/* 🎨 CSS Variables - Farby a nastavenia */
:root {
    --primary-color: #FF8C42;
    --primary-hover: #FFB84D;
    --secondary-color: #533E85;
    --accent-color: #FFEEDB;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #FFF3E0 0%, #FFE6CC 100%);
    --gradient-button: linear-gradient(135deg, #FF8C42 0%, #FFB84D 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 8px 30px rgba(83, 62, 133, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* 🔄 Reset a základné štýly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* 📦 Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 📝 Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* 🔘 Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
    display: inline-block;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-button);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-secondary .btn-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

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

.btn-secondary:hover .btn-logo {
    opacity: 1;
    transform: scale(1.1);
}

.btn-cta {
    background: var(--gradient-button);
    color: var(--white);
    padding: 24px 60px;
    font-size: 1.3rem;
    box-shadow: 0 15px 50px rgba(255, 140, 66, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.btn-cta .btn-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.5);
}

.btn-cta:hover .btn-logo {
    transform: scale(1.15) rotate(5deg);
    opacity: 0.95;
}

/* 🏠 1. Hero sekcia */
.hero-section {
    background: var(--gradient-hero);
    padding: 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    font-size: 1.5rem;
}

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

.hero-product-image {
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ℹ️ 2. Sekcia „O SuperPatch" */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.about-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 3rem 0;
    padding: 25px;
    background: var(--accent-color);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.about-subtitle {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    text-align: center;
}

.about-list {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ⚙️ 3. Sekcia „Ako to funguje" */
.how-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 4rem;
}

.how-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transition: var(--transition);
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(83, 62, 133, 0.2);
}

.how-card:hover::before {
    transform: scaleX(1);
}

.how-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.how-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.how-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* 🛍️ 4. Sekcia „Produkty" */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    justify-content: flex-start;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.25);
}

.product-image {
    width: 100%;
    height: 220px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    min-height: 60px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-price .price-range {
    color: var(--primary-color);
    font-weight: 700;
}

.product-card .btn-secondary {
    margin-top: auto;
}

.product-price del {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 8px;
}

.product-price ins {
    text-decoration: none;
    color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    white-space: nowrap;
    height: 32px;
}

.product-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.product-badge.out-of-stock {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 12px;
    left: 12px;
}

.product-badge.on-sale {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-badge.on-sale::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: badge-shine 3s linear infinite;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #FF8C42 0%, #FFB84D 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    position: absolute;
    top: 12px;
    right: 12px;
}

.product-badge.bestseller::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    animation: badge-shine 4s linear infinite;
}

.product-badge .badge-icon {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.product-badge .badge-discount {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.product-badge .badge-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.product-badge .badge-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 1;
}

@keyframes badge-shine {
    0% { transform: translate(-100%, -100%) rotate(0deg); }
    100% { transform: translate(100%, 100%) rotate(360deg); }
}

.product-rating {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-rating .star-rating {
    font-size: 1rem;
}

.no-products {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* 💡 5. Sekcia „Prečo SuperPatch" */
.why-section {
    padding: 100px 0;
    background: var(--gradient-hero);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 4rem;
}

.why-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.why-text {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* 💬 6. Sekcia „Skúsenosti používateľov" */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(83, 62, 133, 0.18);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

/* 📦 7. Sekcia „Ako používať" */
.usage-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.usage-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(83, 62, 133, 0.2);
    border: 8px solid var(--white);
    background: var(--white);
    transition: var(--transition);
}

.usage-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 80px rgba(83, 62, 133, 0.3);
}

.usage-content .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.usage-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-button);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);
}

.usage-step p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    padding-top: 8px;
}

/* ❓ 8. FAQ Sekcia */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.faq-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(83, 62, 133, 0.18);
    border-left-width: 6px;
}

.faq-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* 🧭 9. CTA sekcia */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6B52A3 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

/* 📞 9. Footer */
.footer {
    background: #2C2C2C;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #AAAAAA;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-links a {
    color: #AAAAAA;
    transition: var(--transition);
}

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

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-delivery h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.delivery-providers {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.delivery-provider {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.delivery-provider:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.delivery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-logo {
    max-width: 140px;
    height: auto;
    max-height: 35px;
    object-fit: contain;
    opacity: 0.95;
    transition: var(--transition);
}

.delivery-provider:hover .delivery-logo {
    opacity: 1;
    transform: scale(1.05);
}

.delivery-provider h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-from {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(255, 140, 66, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-list li {
    padding: 8px 0;
    color: #CCCCCC;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.delivery-list li:last-child {
    border-bottom: none;
}

.delivery-list li strong {
    color: var(--white);
    margin-right: 8px;
}

.delivery-list .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #AAAAAA;
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-grid,
    .usage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .usage-content .section-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

/* ✨ AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* 🎯 Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* 🚫 Disable Custom Cursor */
* {
    cursor: auto !important;
}

a, button, .btn-primary, .btn-secondary, .btn-cta, .product-card {
    cursor: pointer !important;
}

.custom-cursor {
    display: none !important;
}


/* ============================================================
   📰 Blog Preview Section (Homepage)
   ============================================================ */

.blog-preview-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-preview-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.1);
}

.blog-preview-content {
    padding: 25px;
}

.blog-preview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-preview-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-title a:hover {
    color: #FF8C42;
}

.blog-preview-excerpt {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-read-more-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FF8C42;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-read-more-small:hover {
    gap: 10px;
    color: #FFB84D;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}
