/* Mene Callings LLC - Custom Styles */

:root {
    --primary-color: #4A5FC7;      /* Serene Blue */
    --secondary-color: #7C8FE3;    /* Soft Lavender */
    --accent-color: #FFB84D;       /* Warm Gold */
    --text-dark: #2C3E50;          /* Deep Navy */
    --text-light: #718096;
    --bg-light: #F5F7FA;           /* Cloud White */
    --white: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(74, 95, 199, 0.05);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(74, 95, 199, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: var(--white);
    padding: 6rem 0 7rem 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.375rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: var(--white);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 95, 199, 0.15);
}

.card-body {
    padding: 2.5rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.feature-card {
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(to bottom right, var(--white), rgba(124, 143, 227, 0.02));
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 12px;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(74, 95, 199, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 95, 199, 0.4);
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 143, 227, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-control {
    border-radius: 10px;
    border: 2px solid rgba(124, 143, 227, 0.2);
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(74, 95, 199, 0.1);
    outline: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a2332 100%);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 6rem;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.footer a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Utility Classes */
.bg-light-custom {
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.text-primary-custom {
    color: var(--primary-color);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 5rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .card-body {
        padding: 1.75rem;
    }

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

    .navbar-logo {
        height: 32px;
    }
}

/* Privacy Policy specific styles */
.privacy-content h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin-bottom: 1rem;
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
