/* Custom Premium Styles */
:root {
    --primary: #f03e65;
    /* Vibrant pink/red for matrimonial theme */
    --secondary: #6e41b0;
    --dark: #2d2a32;
    --light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(45, 42, 50, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Navbar overrides */
.navbar-custom {
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
    position: relative;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 62, 101, 0.3);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 25px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    /*background: linear-gradient(rgba(45, 42, 50, 0.6), rgba(45, 42, 50, 0.8)), url('../images/H2.jpg') center/cover;*/
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Cards */
.profile-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: white;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body-custom {
    padding: 20px;
}

.profile-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-details {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Detail page styling */
.detail-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    padding: 80px 0 100px;
}

.detail-img-wrap {
    margin-top: -80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
}

.info-box {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.info-title {
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--primary);
}

.list-item-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin-bottom: 10px;
}

.item-label {
    font-weight: 600;
    color: #555;
    text-transform: capitalize;
}

/* Custom form */
.form-control-custom {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control-custom:focus {
    box-shadow: 0 0 0 3px rgba(240, 62, 101, 0.2);
    border-color: var(--primary);
}

/* Generic Utilities */
.text-primary-color {
    color: var(--primary) !important;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.mt-n5 {
    margin-top: -3rem !important;
}

/* Mobile Responsive - Navbar */
@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
    }

    .navbar-nav {
        gap: 0.75rem;
    }

    .navbar-nav .nav-item {
        margin-left: 0 !important;
    }

    .navbar-nav .ms-2 {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }

    .navbar-nav .btn {
        width: 100%;
        text-align: center;
        padding: 10px 12px;
    }

    .btn-outline-custom,
    .btn-primary-custom {
        font-size: 0.9rem;
    }
}

/* Notification Icon */
.notification-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), #e91e63);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(240, 62, 101, 0.4);
    animation: pulse-notification 2s infinite;
}

@keyframes pulse-notification {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(240, 62, 101, 0.4);
    }
    50% {
        box-shadow: 0 2px 12px rgba(240, 62, 101, 0.8);
    }
}