/* Custom styles for PointSeven */

:root {
    /* Aligned with style.css – golden theme (photo 2), overrides Bootstrap blue #0d6efd */
    --primary-color: #c1a067;
    --bs-primary: #c1a067;
    --bs-primary-rgb: 193, 160, 103;
    --secondary-color: #1a1a1a;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Buttons: replace Bootstrap blue #0d6efd with golden #c1a067 everywhere */
.btn-primary {
    background-color: #c1a067 !important;
    border-color: #c1a067 !important;
    color: #fff !important;
}
.btn-primary:hover {
    background-color: #be9e5c !important;
    border-color: #be9e5c !important;
    color: #fff !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jumbotron {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

footer {
    margin-top: auto;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-link.active {
    font-weight: 600;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image placeholders */
.bg-light {
    background-color: #f8f9fa !important;
}
