/* --- VIBRANT RANI PINK THEME --- */
:root {
    --primary-color: #D81B60; 
    --accent-gold: #FFC107;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #666666;
}

body { font-family: 'Lato', sans-serif; background-color: #FAFAFA; color: var(--text-dark); }

/* Navbar & Logo */
.navbar { background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 8px 0; }
/* New SVG Logo styling */
.logo-container svg { height: 50px; width: auto; transition: transform 0.3s; }
.logo-container:hover svg { transform: scale(1.02); }
/* Removed old text brand styles */

.btn-register { background-color: var(--primary-color); color: white; border-radius: 50px; padding: 10px 30px; font-weight: 600; box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3); transition: all 0.3s; border: none; }
.btn-register:hover { background-color: #AD1457; color: white; transform: translateY(-2px); }

/* --- HERO SECTION FIXED FOR MOBILE --- */
.hero-section {
    min-height: 60vh;
    /* Default padding for desktop */
    padding-top: 120px; 
    padding-bottom: 80px;
    background: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?auto=format&fit=crop&w=1920&q=80') center/center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 5px solid var(--accent-gold);
}
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(216, 27, 96, 0.85), rgba(255, 193, 7, 0.6)); }
.hero-content { position: relative; z-index: 1; width: 100%; padding: 0 20px; }
.hero-section h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 10px; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.divider-gold { width: 60px; height: 4px; background: white; margin: 20px auto; border-radius: 2px; }

/* --- SPACING & FILTER CONTAINER FIX --- */
.content-section { 
    margin-top: -80px; /* Pulls content up over hero */
    position: relative; 
    z-index: 2; 
}

.filter-container { 
    background: white; 
    border-radius: 15px; 
    max-width: 600px; 
    /* Stronger shadow for better separation */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important; 
    border: none;
    /* More space below the filter box */
    margin-bottom: 4rem !important;
}

/* Buttons */
.btn-group { background: white; padding: 5px; border-radius: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); border: 1px solid #eee; display: inline-flex; flex-wrap: wrap; justify-content: center; }
.btn-outline-custom { border: none; color: var(--text-muted); padding: 12px 30px; border-radius: 50px; font-weight: 700; white-space: nowrap; }
.btn-check:checked + .btn-outline-custom { background-color: var(--primary-color); color: white; box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3); }

/* Profile Cards */
.profile-card { background: white; border-radius: 20px; overflow: hidden; transition: all 0.3s ease; border: 1px solid #f0f0f0; position: relative; }
.profile-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: var(--primary-color); }
.card-body { padding: 20px; text-align: center; }
.card-body h4 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary-color); margin-bottom: 5px; }

/* Heart Button */
.btn-heart { position: absolute; top: 15px; right: 15px; background: white; border: none; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 10; cursor: pointer; transition: 0.2s; color: #ccc; }
.btn-heart:hover { transform: scale(1.1); }
.btn-heart.active { color: #ff3b3b; }

.btn-view-more { width: 100%; background-color: #FFF0F5; color: var(--primary-color); border: none; border-radius: 10px; padding: 12px; font-weight: 700; transition: 0.3s; }
.btn-view-more:hover { background-color: var(--primary-color); color: white; }

/* Modal */
.modal-header { background: var(--primary-color); color: white; }
.section-title { color: var(--primary-color); text-transform: uppercase; font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 15px; display: inline-block; border-bottom: 2px solid var(--accent-gold); }
.contact-card { background: white; border: 2px solid #f0f0f0; padding: 25px; border-radius: 15px; margin-top: 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.btn-success { background-color: #25D366 !important; border: none !important; font-weight: bold; }
.text-primary { color: var(--primary-color) !important; }

.fade-up { animation: fadeUp 0.8s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
footer { background: white; color: #888; border-top: 5px solid var(--accent-gold); }

/* --- WATERMARK SECTION (No Blur) --- */
.card-img-wrapper, .modal-img-container, .gallery-thumb-wrapper {
    overflow: hidden; 
    position: relative; 
    display: block;
}
.card-img-wrapper { height: 260px; }
.modal-img-container { height: auto; min-height: 200px; }
.gallery-thumb-wrapper { width: 80px; height: 80px; border-radius: 10px; border: 2px solid white; cursor: pointer; transition: transform 0.2s; }

.card-img-wrapper img, .modal-img-container img, .gallery-thumb-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.profile-card:hover .card-img-wrapper img, .gallery-thumb-wrapper:hover { transform: scale(1.05); border-color: var(--primary-color); }

.card-img-wrapper::after, .modal-img-container::after, .gallery-thumb-wrapper::after {
    content: 'Kushwaha Matrimony';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 200%; padding: 10px 0;
    background: rgba(216, 27, 96, 0.2); 
    color: rgba(255, 255, 255, 0.6);
    text-align: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 800; letter-spacing: 2px; z-index: 5; pointer-events: none; text-transform: uppercase;
}
.gallery-thumb-wrapper::after { font-size: 0.5rem; padding: 5px 0; }

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 768px) { 
    .hero-section h1 { font-size: 2.2rem; } 
    /* Increase padding specifically for mobile to prevent headline cutoff */
    .hero-section { padding-top: 150px; min-height: 55vh; }
    /* Adjust logo size on smaller screens */
    .logo-container svg { height: 40px; }
    .filter-container { margin-bottom: 3rem !important; }
}