:root {
            --wood: #7a4a2e;
            --wood-dark: #3b2416;
			--dark:#000000;
            --bg-light: #f5f5f5;
        }

        body {
            scroll-behavior: smooth;
        }

        section {
            padding: 80px 0;
        }

        /* NAV */
        .navbar {
            background: rgba(0,0,0,0.8);
        }

        /* SLIDER */
        .carousel,
        .carousel-inner,
        .carousel-item {
            height: 100vh;
        }

        .carousel-item {
            background-size: cover;
            background-position: center;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .icon-box {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
        }

        footer {
            background: var(--dark);
            color: #fff;
            padding: 30px 0;
        }
		
		.bg-wood {
            background: var(--dark);
            color: #fff;
            padding: 30px 0;
        }