/* ConvenuPAY Custom Styles */

:root {
    --primary-green: #7ba428;
    --dark-gray: #4a4a4a;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

/* Logo */
.logo-img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

.login-form-nav {
    min-width: 400px;
}

.login-form-nav input {
    width: 120px;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    width: 100%;
}

.hero-title {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    line-height: 1.2;
}

/* Content Section */
.content-section {
    background-color: white;
}

.section-title {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-box {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.contact-number {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.contact-digits {
    color: var(--medium-gray);
    font-size: 1rem;
    letter-spacing: 8px;
    margin: 0;
}

/* Features Section */
.features-section {
    background-color: var(--dark-gray);
}

.feature-box {
    display: block;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-box p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.feature-box-1 {
    background-color: #5a5a5a;
}

.feature-box-2 {
    background-color: #4a4a4a;
}

.feature-box-3 {
    background-color: #3a3a3a;
}

.feature-box:hover {
    background-color: var(--primary-green);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    border-top: 1px solid #dee2e6;
}

.footer img {
    max-width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    background-color: var(--light-gray);
    border-bottom: 3px solid var(--primary-green);
}

.page-header h1 {
    color: var(--dark-gray);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* Works Page Header */
.works-header {
    background: url('../images/works-header.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

/* Why Page Header */
.why-header {
    background: url('../images/why-header.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

/* About Page Header */
.about-header {
    background: url('../images/about-header2.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

/* Contact Page Header */
.contact-header {
    background: url('../images/contact-header.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

/* Contact Form */
.card {
    border: none;
}

.btn-success {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-success:hover {
    background-color: #6a9320;
    border-color: #6a9320;
}

/* Responsive Design */
@media (max-width: 991px) {
    .login-form-nav {
        min-width: 100%;
        margin-top: 1rem;
    }
    
    .login-form-nav input {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .feature-box {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

