/* ============================================
   TEXTILE SHOWROOM ENHANCEMENTS
   Artistic, Gallery-Style Design
   ============================================ */

/* Fabric Texture Overlay with Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/tile_01.png');
    background-size: 400px 400px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    animation: subtleFloat 20s ease-in-out infinite;
}

/* Subtle floating animation for background */
@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(-5px);
    }
}

/* Ensure content is above texture */
.navbar,
main,
footer,
section {
    position: relative;
    z-index: 2;
}

/* Hero Section - More Artistic */
.carousel-item {
    min-height: 75vh;
}

.carousel-caption-custom {
    background: linear-gradient(135deg, rgba(193, 122, 92, 0.85) 0%, rgba(157, 93, 67, 0.9) 100%);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(61, 47, 42, 0.3);
}

.carousel-caption-custom h1 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-caption-custom p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Product Cards - Gallery Style with Animation */
.product-card {
    background: var(--fabric-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: 0 4px 20px rgba(61, 47, 42, 0.08);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(61, 47, 42, 0.15);
    border-color: var(--primary-color);
    animation: gentlePulse 2s ease-in-out infinite;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gentle pulse animation */
@keyframes gentlePulse {

    0%,
    100% {
        transform: translateY(-12px) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--fabric-beige);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-info {
    padding: var(--spacing-xl);
    background: linear-gradient(180deg, var(--fabric-cream) 0%, var(--bg-primary) 100%);
}

.product-info h3 {
    font-family: var(--font-display);
    color: var(--primary-dark);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Section Headings - More Artistic */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* Buttons - More Elegant */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(193, 122, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 122, 92, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 122, 92, 0.2);
}

/* About Section - More Spacious with Background Pattern */
.about-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--fabric-cream) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.about-content-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    color: white;
    box-shadow: 0 15px 40px rgba(193, 122, 92, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Testimonials - More Elegant */
.testimonial-card {
    background: var(--fabric-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 8px 30px rgba(61, 47, 42, 0.08);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: 0 15px 45px rgba(61, 47, 42, 0.12);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

/* FAQ - Softer Design */
.faq-item {
    background: var(--fabric-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(193, 122, 92, 0.1);
}

.faq-question {
    background: linear-gradient(90deg, var(--fabric-beige) 0%, var(--fabric-cream) 100%);
    padding: var(--spacing-lg);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

/* Contact Form - More Inviting */
.enquiry-form {
    background: var(--fabric-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 40px rgba(61, 47, 42, 0.08);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    background: white;
    transition: all var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 122, 92, 0.1);
    background: white;
}

/* Footer - Warm & Elegant */
footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #3d2f2a 100%);
    color: var(--fabric-cream);
}

footer a {
    color: var(--fabric-beige);
    transition: color var(--transition-base);
}

footer a:hover {
    color: var(--secondary-color);
}

/* Navbar - Subtle & Elegant */
.navbar {
    background: rgba(253, 251, 247, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 15px rgba(61, 47, 42, 0.05);
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.98) !important;
    box-shadow: 0 4px 20px rgba(61, 47, 42, 0.1);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* WhatsApp Button - Warm Tone */
.whatsapp-float {
    background: linear-gradient(135deg, #7a9b76 0%, #5d7a5a 100%);
    box-shadow: 0 4px 20px rgba(122, 155, 118, 0.4);
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #5d7a5a 0%, #7a9b76 100%);
    transform: scale(1.1);
}

/* Dark Mode Toggle - Elegant */
.dark-mode-toggle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(193, 122, 92, 0.3);
}

.dark-mode-toggle:hover {
    transform: scale(1.05);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .carousel-caption-custom h1 {
        font-size: 2rem;
    }

    .carousel-caption-custom p {
        font-size: 1.1rem;
    }
}