/* 1. Global Branding & Colors */
:root {
    --primary-orange: #D35400;
    /* Your Brand Color */
    --dark-grey: #333333;
    --light-grey: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* 2. Navbar Styling */
.navbar {
    border-bottom: 2px solid var(--primary-orange);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-orange) !important;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 5px;
}

.btn-orange:hover {
    background-color: #A04000;
    color: var(--white);
}

/* 3. Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('../img/hero-bg.jpg') center/cover;
    padding-top: 80px;
}

.text-orange {
    color: var(--primary-orange);
}


/* 5. WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

