/* Global CSS for गठजोड़ा Matrimony Website */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Typography */
.font_50 {
    font-size: 50px;
    font-weight: 700;
}

.font_13 {
    font-size: 13px;
}

.logo {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
}

/* Buttons */
.button {
    background: linear-gradient(135deg, #FF8C00 0%, #DC143C 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand:hover {
    text-decoration: none;
}

/* Form Controls */
.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

.form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Backgrounds */
.bg_back {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 100%), url('../image/1.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg_light {
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

/* Utilities */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.rounded_left {
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}

.rounded_right {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.rounded-3 {
    border-radius: 15px !important;
}

.rounded-4 {
    border-radius: 20px !important;
}

/* Lines */
.line {
    height: 3px;
    background: linear-gradient(135deg, #FF8C00 0%, #DC143C 100%);
    border: none;
    width: 60px;
    margin: 15px auto;
}

/* Contact Icons */
.cont_icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
.drop_1 {
    border: 2px solid #FFD700 !important;
    border-radius: 10px !important;
    margin-top: 10px !important;
}

.drop_border {
    position: relative;
}

.drop_log {
    min-width: 200px;
}

/* Offcanvas */
.offcanvas-nav {
    background: linear-gradient(135deg, #FF8C00 0%, #DC143C 100%) !important;
}

.offcanvas-nav-btn {
    border: none;
    background: transparent;
}

/* Profile Cards */
.profile-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF8C00 0%, #DC143C 100%);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,140,0,0.3);
    border-color: #DC143C;
}

.profile-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #FF8C00;
    transition: transform 0.3s ease;
}

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

/* Pricing */
.pricing_2_left {
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.pricing_2_lefto {
    border-color: #FF8C00;
}

.pricing_2_left:hover {
    border-color: #DC143C;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .font_50 {
        font-size: 32px;
    }
    
    .container-xl {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .profile-card {
        margin-bottom: 20px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Success/Error States */
.alert {
    border-radius: 10px;
    border: none;
    padding: 12px 20px;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}
