/* Custom styles for GRM Partners LLC */

:root {
    --primary-color: #1e40af;
    --secondary-color: #fefce8;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --background-color: #ffffff;
    --dark-color: #1f2937;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    color: #ffffff !important;
}

.hero-section .lead {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    color: #ffffff !important;
}

/* Removed decorative pattern for cleaner professional look */

/* Removed floating animation for professional appearance */

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: var(--primary-color) !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Background colors for sections */
#about {
    background-color: var(--background-color);
}

#services {
    background-color: var(--secondary-color);
}

#contact {
    background-color: var(--background-color);
}

.feature-box {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-2px);
}

.feature-box h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.card-title {
    color: var(--text-color);
    font-weight: 600;
}

/* Contact Section */
.contact-info {
    padding: 2rem 1rem;
    text-align: center;
}

.contact-info h5 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.btn-outline-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-light {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white !important;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.btn-light:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

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

/* Subtle fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

