/* Custom Styles for Pearl Bizna */

:root {
    --primary-orange: #f39200; /* Based on logo orange */
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.btn-orange {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #d68100;
    border-color: #d68100;
    color: white;
    transform: translateY(-2px);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

.hero-section {
    min-height: 80vh;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 146, 0, 0.1);
    border-radius: 10px;
}

#contactForm .form-control {
    padding: 12px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
}

#contactForm .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(243, 146, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    .hero-section .d-flex {
        justify-content: center;
    }
}
