/* Premium Matrimony Custom Styles */

:root {
    --primary-color: #E63946;
    /* Vibrant Red/Pink */
    --primary-gradient: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    --secondary-color: #457B9D;
    --dark-color: #1D3557;
    --light-color: #F1FAEE;
    --bg-soft: #F8F9FA;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-color);
    background-color: var(--bg-soft);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #d62839;
    border-color: #d62839;
}

.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #DD2476 0%, #FF512F 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(221, 36, 118, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
    font-weight: 600;
}

/* Footer */
.footer-section {
    background-color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand h4 {
    color: var(--primary-color);
    font-weight: 800;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--primary-color);
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-gradient);
    color: white;
}

.app-btn {
    display: flex;
    align-items: center;
    background: #111;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.app-btn:hover {
    background: #333;
    color: white;
}

.app-btn i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}