/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}
/* assets/css/style.css - Add these styles */

/* Search Results Section */
.search-results-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.search-header {
    margin-bottom: 30px;
}

.login-prompt {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--wedding-light);
    padding: 10px 15px;
    border-radius: 10px;
}

.login-prompt p {
    margin: 0;
    color: var(--wedding-dark);
    font-weight: 500;
}
/* assets/css/style.css - Add these styles */

/* User Profile Summary */
.user-profile-summary .card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
}

.user-profile-summary .card-body {
    padding: 20px;
}

.user-profile-summary img {
    border: 3px solid var(--wedding-light);
} 
/* Header Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
    color: #e91e63 !important;
    font-size: 1.5rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #e91e63 !important;
}

/* Hero Section with Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #e91e63;
    border-color: #e91e63;
    padding: 10px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #d81b60;
    border-color: #d81b60;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e91e63;
}

/* About Section */
.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

/* Form Styles */
.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.card-text {
    color: #666;
    margin-bottom: 20px;
}

/* Profile Card */
.profile-card {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.profile-img {
    height: 250px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.profile-details {
    margin-bottom: 5px;
    color: #666;
}

/* Filter Sidebar */
.filter-sidebar {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e91e63;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e91e63;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #e91e63;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Admin Panel Styles */
.admin-sidebar {
    background-color: #343a40;
    min-height: 100vh;
    padding-top: 20px;
}

.admin-sidebar .nav-link {
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 0;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: #e91e63;
    color: #fff !important;
}

.admin-content {
    padding: 30px;
}

.admin-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    margin-bottom: 30px;
}

.admin-card .card-header {
    background-color: #343a40;
    color: #fff;
    border-radius: 10px 10px 0 0 !important;
    padding: 15px 20px;
}

.admin-card .card-body {
    padding: 20px;
}

.btn-action {
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
}

.btn-edit {
    background-color: #17a2b8;
    color: #fff;
}

.btn-delete {
    background-color: #dc3545;
    color: #fff;
}

.btn-approve {
    background-color: #28a745;
    color: #fff;
}

.btn-disapprove {
    background-color: #ffc107;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .admin-sidebar {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}