/* Custom CSS for Ideal Furniture Bootstrap Website */

:root {
    --primary-color: #8B4513;
    --primary-light: #D2B48C;
    --primary-dark: #654321;
    --accent-color: #FFA500;
    --text-dark: #2C1810;
    --text-muted: #6C757D;
    --bg-light: #F8F9FA;
}

/* Override Bootstrap primary color */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Logo */
.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
   /* background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/hero-furniture.jpg');*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 75vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(101, 67, 33, 0.8));
}

.min-vh-75 {
    min-height: 75vh;
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
}

/* Product Cards */
.product-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.product-icon {
    width: 50px;
    height: 50px;
}

.product-btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.bullet-point {
    width: 8px;
    height: 8px;
}

/* Step circles */
.step-circle {
    width: 60px;
    height: 60px;
}

/* Value Cards */
.value-card:hover .value-icon {
    background-color: var(--primary-color) !important;
    color: white !important;
    transition: all 0.3s ease;
}

.value-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

/* Contact Icons */
.contact-icon {
    width: 40px;
    height: 40px;
}

/* Navigation */
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}
.navbar-nav .nav-link {
color:white;
}

/* Cards */
.card {
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px -10px rgba(139, 69, 19, 0.3) !important;
}

/* Form elements */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

/* Custom spacing */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Shadow utilities */
.shadow-warm {
    box-shadow: 0 10px 30px -10px rgba(139, 69, 19, 0.3);
}

/* Background variations */
.bg-wood-light {
    background-color: var(--primary-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

/* Animation for hero text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1,
.hero-section p,
.hero-section .btn,
#hmPg h1,
#hmPg p,
#hmPg .btn {
    animation: fadeInUp 0.8s ease-out;
}

.hero-section p,
#hmPg p{
    animation-delay: 0.2s;
}

.hero-section .btn
{
    animation-delay: 0.4s;
}

/* Custom button styles */
.btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.btn-warning:hover {
    background-color: #FF8C00;
    border-color: #FF8C00;
    color: #000;
}

/* Footer */
footer .logo-circle {
    background-color: var(--accent-color);
    color: #000;
}

 /* Define the background color */
    .custom-bg {
      background-color: #0a3c3f; /* Your desired color */
      color: white;
    }

    /* Optional: Make the hero section take full height */
    .hero-section {
      min-height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Ensure the text in the hero section is readable */
    .hero-section .container {
      z-index: 1;
    }
	.navbar-toggler {
      background-color: white; /* Change the icon to white */
    }




