/* Add to your existing style.css */

/* Logo styles */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1rem;
}

.navbar-brand img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 0.9;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Admin bar adjustment */
.admin-bar .navbar.sticky {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar.sticky {
        top: 46px;
    }
}

/* Logo customization preview */
.customize-partial-edit-shortcut button {
    left: 0;
}


/* Add to your existing style.css */

/* Carpet Introduction Section */
.carpet-intro {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.carpet-intro h2 {
    color: #2c3e50;
    font-weight: 600;
}

/* Investment Section */
.investment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-icon {
    font-size: 3rem;
    line-height: 1;
}

.investment-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

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

.investment-section .card h3 {
    color: #2c3e50;
    font-weight: 600;
    margin: 1rem 0;
}

/* Technical Section */
.technical-section {
    background: #fff;
}

.technical-details {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #2c3e50;
}

.technical-details h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.technical-details ul li {
    padding: 0.25rem 0;
    color: #495057;
}

/* Featured Carpets Section */
.featured-carpets {
    background: #fff;
}

.blog-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

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

.card-img-top-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top-wrapper img {
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img-top-wrapper img {
    transform: scale(1.1);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1a1e24 0%, #2c3e50 100%);
}

.newsletter-section .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px 0 0 30px;
}

.newsletter-section .btn-primary {
    background: #c49a6c;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0 30px 30px 0;
    transition: background 0.3s ease;
}

.newsletter-section .btn-primary:hover {
    background: #b3864d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carpet-intro h2 {
        font-size: 2rem;
    }
    
    .technical-details {
        padding: 1.5rem;
    }
    
    .investment-section .card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carpet-intro,
.investment-section,
.technical-section,
.featured-carpets {
    animation: fadeInUp 0.6s ease-out;
}

/* Hero Section with Dynamic Image */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero .btn {
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #c49a6c;
    border-color: #c49a6c;
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: #b3864d;
    border-color: #b3864d;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 400px !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .btn {
        padding: 0.75rem 2rem !important;
        font-size: 1rem;
    }
}

 .blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .blog-meta {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }
        
        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }
        
        .blog-content h2 {
            font-size: 2rem;
            font-weight: 600;
            margin: 2.5rem 0 1.5rem;
            color: #2c3e50;
            border-bottom: 2px solid #c49a6c;
            padding-bottom: 0.5rem;
        }
        
        .blog-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: #34495e;
        }
        
        .blog-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .blog-content strong {
            color: #c49a6c;
            font-weight: 600;
        }
        
        .placeholder-image {
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            margin: 30px 0;
            border: 2px dashed #c49a6c;
            position: relative;
            overflow: hidden;
        }
        
        .placeholder-image::before {
            content: "🖼️";
            font-size: 3rem;
            display: block;
            margin-bottom: 10px;
        }
        
        .placeholder-caption {
            color: #666;
            font-style: italic;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .specs-table {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            border-left: 4px solid #c49a6c;
        }
        
        .specs-table table {
            width: 100%;
        }
        
        .specs-table td {
            padding: 12px 0;
            border-bottom: 1px solid #dee2e6;
        }
        
        .specs-table td:first-child {
            font-weight: 600;
            width: 40%;
            color: #2c3e50;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .certification-badge {
            background: #c49a6c;
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            display: inline-block;
            font-weight: 600;
            margin: 10px 0;
        }
        
        .regional-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #e0e0e0;
        }
        
        .regional-card h4 {
            color: #c49a6c;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .motif-icon {
            display: inline-block;
            font-size: 2rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        
        .maintenance-tip {
            background: #e8f4f8;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #3498db;
        }
        
        .investment-note {
            background: #f1e8d9;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #c49a6c;
            position: relative;
        }
        
        .investment-note::before {
            content: "💰";
            font-size: 2rem;
            position: absolute;
            top: -15px;
            left: 20px;
            background: white;
            padding: 0 10px;
        }
        
        .share-buttons {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #dee2e6;
        }
        
        .share-button {
            display: inline-block;
            padding: 10px 20px;
            margin-right: 10px;
            border-radius: 5px;
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .share-button:hover {
            opacity: 0.8;
        }
        
        .twitter { background: #1DA1F2; }
        .facebook { background: #4267B2; }
        .pinterest { background: #BD081C; }
        
        @media (max-width: 768px) {
            .blog-title {
                font-size: 2rem;
            }
            
            .blog-content h2 {
                font-size: 1.75rem;
            }
            
            .blog-content h3 {
                font-size: 1.3rem;
            }
        }