/* Global Styles */

/* ─── FontAwesome font-display override ─────────────────────────────────────
   Local FA fonts don't set font-display, causing a 10 ms FOIT.
   Override here to use 'swap' so text renders immediately with fallback.      */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../vendor/fontawesome/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../vendor/fontawesome/webfonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../vendor/fontawesome/webfonts/fa-brands-400.woff2') format('woff2');
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #c1272d;
    --dark-color: #1c1e21;
    --light-color: #fff5ee;
    --gold-color: #ffd700;
    --marathi-orange: #ff9933;
    --cultural-red: #cc0000;
}

body {
    line-height: 1.6;
    background: linear-gradient(135deg, #fff5ee 0%, #ffe4e1 25%, #ffefd5 50%, #fff8dc 100%);
    color: var(--dark-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background-color: #fff;
    padding: 80px 0;
}

.hero-section h1 {
    margin-left: 180px;
}

.hero-section .lead {
    color: #666;
    font-size: 1.2rem;
}

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

.features-section .card {
    transition: transform 0.3s ease;
}

.features-section .card:hover {
    transform: translateY(-5px);
}

.features-section .fas {
    color: var(--primary-color);
}

/* Login Page Styles */
.login-left-content {
    max-width: 500px;
}

.login-form-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
    padding: 20px;
}

.form-control {
    font-size: 17px;
    padding: 14px 16px;
    border-radius: 6px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    padding: 0 16px;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #166fe5;
    border-color: #166fe5;
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-size: 17px;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 6px;
}

.btn-success:hover {
    background-color: #36a420;
    border-color: #36a420;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Profile Cards */
.profile-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card img {
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    height: 200px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .features-section .card {
        margin-bottom: 1rem;
    }
    
    .login-left-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .login-form-container {
        margin: 0 auto;
    }
}

/* Authentication Forms */
.auth-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Profile Page */
.profile-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
}

/* Search Filters */
.search-filters {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.profile-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}


.verified-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    z-index: 10;
    background-color: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .verified-badge {
        width: 30px;
        height: 30px;
        top: 0;
        right: 0;
        transform: none;
    }
    .verified-badge img {
        width: 100%;
        height: 100%;
    }
}