/* public/css/style.css (COMPLETE AND UPDATED) */

/* ================== */
/* == Global Setup == */
/* ================== */
:root {
    /* --- NEW SAGE MATRIMONY PALETTE --- */
    --primary-color: #32624e; /* The deep sage green from your logo */
    --cta-color: #B99767;     /* A sophisticated muted gold for accents */
    --background-color: #FFFBF5; /* A warm, inviting off-white */
    --vip-bg: #F7F4EF;        /* A slightly darker cream for contrast */
    --vip-button: #32624e;    /* Using primary green for consistency */
    
    --text-dark: #333;
    --text-light: #6c757d;
    --heading-font: 'Merriweather', serif;
    --body-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
}
.homepage-body {
    background-color: var(--background-color); /* Applied new warm background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

.section-title {
    font-weight: 900;
    color: var(--primary-color);
}

.text-primary-green {
    color: var(--primary-color);
}


/* ================== */
/* ===== Header ===== */
/* ================== */
.navbar { box-shadow: 0 2px 4px rgba(0,0,0,0.05); background-color: #fff; }
.navbar-brand { font-family: var(--heading-font); font-weight: 900; color: var(--primary-color) !important; }
.header-profile-img { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; margin-left: 15px; border: 2px solid #eee; }
.btn-login-dropdown {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 20px;
    padding: 0.375rem 1.25rem;
    color: var(--text-dark);
    transition: all 0.2s ease-in-out;
}
.btn-login-dropdown:hover, .btn-login-dropdown:focus {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}
.navbar-logo {
    height: 65px; /* <-- This is the key! Adjust this value as needed. */
    width: 65px;  /* This maintains the logo's original shape. */
}

/* OPTIONAL BUT RECOMMENDED: Remove default padding from the logo's link container for better alignment */
.navbar .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

/* ================================== */
/* == HERO SECTION WITH SLIDER BG === */
/* ================================== */
.hero-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 800px;
    background-color: #333; /* Fallback color */
    overflow: hidden; /* Hide parts of slides that might stick out */
}
.hero-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slider-background .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeAnimation 15s infinite;
}
/* Animation delays for sequencing the slides */
.hero-slider-background .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider-background .slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeAnimation {
    0% { opacity: 0; }
    20% { opacity: 1; } /* Fade in */
    33% { opacity: 1; } /* Hold */
    53% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 2; /* Sits on top of the images but below the content */
}
.hero-content-section, .social-proof-bar {
    position: relative; /* Changed from absolute */
    z-index: 3; /* Sits on top of the overlay */
}
.hero-content-section { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.btn-cta { background-color: var(--cta-color); border-color: var(--cta-color); color: #fff; font-weight: 500; transition: all 0.2s ease-in-out; }
.btn-cta:hover { background-color: #a5885c; border-color: #a5885c; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

.social-proof-bar { background-color: rgba(0, 0, 0, 0.2); padding: 1rem 0; font-size: 0.9rem; color: #fff; text-align: center; flex-shrink: 0; }

/* ========================= */
/* == Experience Section === */
/* ========================= */
.experience-section {
    background-color: var(--background-color); /* Updated background */
}
.feature-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #eaf3ee; /* Light green to match primary */
    color: var(--primary-color);
}

/* ================================= */
/* == NEW $1 Membership CTA Section == */
/* ================================= */
.one-dollar-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #264a3b 100%); /* New green gradient */
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.2);
}

/* ================================= */
/* ===== NEW App Download Section ===== */
/* ================================= */
.app-download-section {
    background-color: #fff;
}
.app-features-list li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.app-mockup-img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}


/* ========================= */
/* ====== VIP Banner ======= */
/* ========================= */
.vip-banner-section {
    background-color: var(--background-color);
}
.vip-banner {
    background-color: var(--vip-bg);
}
.vip-logo {
    height: 50px;
    width: auto;
}
.btn-vip {
    background-color: var(--vip-button);
    color: #fff;
}
.btn-vip:hover {
    background-color: #264a3b; /* Darker shade of primary */
    color: #fff;
}

/* ========================= */
/* == Testimonials Section = */
/* ========================= */
.testimonials-section {
    background-color: var(--background-color);
}
.btn-cta-outline {
    color: var(--cta-color);
    border-color: var(--cta-color);
}
.btn-cta-outline:hover {
    background-color: var(--cta-color);
    color: #fff;
}
.testimonial-slider-container {
    position: relative;
}
.testimonial-slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.testimonial-slider::-webkit-scrollbar {
    display: none;
}
.testimonial-card {
    flex: 0 0 80%;
    max-width: 320px;
    margin-right: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.slider-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}
.btn-slider-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-left: 0.5rem;
    transition: all 0.2s;
}
.btn-slider-nav:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}


/* ================== */
/* == Footer Section == */
/* ================== */
.main-footer {
    background-color: #fff;
}
.main-footer a {
    text-decoration: none;
    transition: color 0.2s;
}
.main-footer a:hover {
    color: var(--primary-color) !important;
}
.main-footer .social-icons i {
    font-size: 1.5rem;
}
.copyright-bar {
    background-color: #e9ecef;
}

/* ================== */
/* == Dashboard Specific Styles == */
/* ================== */
/* This section will inherit the new color scheme via CSS variables */
.btn-primary { background-color: var(--primary-color); border-color: var(--primary-color); }
.btn-primary:hover { background-color: #264a3b; border-color: #264a3b; }
.profile-card { transition: transform 0.2s; }
.profile-card:hover { transform: translateY(-5px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.profile-card-img { height: 200px; background-color: #eee; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 1.2rem; }
.super-interest { color: #ff4d6d; }
.shortlisted { color: #ffc107; }
.profile-card-clickable {
    cursor: pointer;
}

/* ========================= */
/* == Welcome Popup Modal == */
/* ========================= */
.welcome-modal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.welcome-modal .modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.welcome-modal .modal-header .btn-close {
    background-color: #e9ecef;
    border-radius: 50%;
    padding: 0.5rem;
}

.welcome-slider {
    min-height: 400px; 
}

/* ################### */
/* ### THE FIX IS HERE ### */
/* ################### */
/* We only apply flexbox to the ACTIVE item, allowing inactive items to be hidden by Bootstrap's default CSS. */
.welcome-slider .carousel-item.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* This rule applies to ALL slides, setting up basic structure without forcing them to be visible. */
.welcome-slider .carousel-item {
    padding: 2rem 3rem 4rem 3rem;
    text-align: center;
    min-height: 400px;
    width: 100%;
}


.welcome-slider .welcome-icon {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.welcome-slider h3 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    max-width: 90%;
}

.welcome-slider p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 450px;
    line-height: 1.6;
}

.welcome-modal .carousel-indicators {
    margin-bottom: 1.5rem;
}

.welcome-modal .carousel-indicators [data-bs-target] {
    background-color: #ccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.welcome-modal .carousel-indicators .active {
    background-color: var(--primary-color);
}

.welcome-modal .carousel-control-prev-icon,
.welcome-modal .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 1.2rem;
    background-size: 50%;
}

.welcome-modal .modal-footer {
    background-color: #f8f9fa;
}

.welcome-modal .btn-link {
    text-decoration: none;
}

/* ======================================= */
/* == Dashboard Layout & UI Enhancements == */
/* ======================================= */

/* FIX: Profile Icon Placeholder in Header */
.header-profile-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    border: 2px solid #dee2e6;
    font-size: 1.1rem;
    margin-left: 15px; /* Matches original .header-profile-img */

    /* Flexbox to perfectly center the icon */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* FIX: "Complete Your Profile" Prompt Card */
.profile-prompt-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

#profile-feed-container {
    max-width: 480px; /* Constrains the width on large screens for a mobile feel */
}

.profile-feed-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.profile-image-wrapper {
    position: relative;
    padding-top: 125%; /* Creates a 4:5 aspect ratio */
    background-color: #f0f3f5;
}

.profile-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.profile-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none; /* Allows clicks to go through to elements behind if needed */
}

.profile-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.profile-info-overlay h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.verified-badge {
    font-size: 1.25rem;
    vertical-align: middle;
}

.profile-details-list {
    font-family: var(--body-font);
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
}

.profile-details-list li {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.profile-actions {
    display: flex;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.profile-actions .action-item {
    flex: 1 1 0; /* Distributes space equally */
    text-align: center;
    border-right: 1px solid #f0f0f0;
}
.profile-actions .action-item:last-child {
    border-right: none;
}
.profile-actions .action-item .btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: none;
    border: none;
    color: var(--text-light);
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
.profile-actions .action-item .btn-action:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}
.profile-actions .action-item .btn-action:disabled {
    background-color: #f8f9fa;
    color: #ced4da;
    cursor: not-allowed;
}

.profile-actions .btn-action i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.profile-actions .btn-action span {
    font-size: 0.8rem;
    font-weight: 500;
}
.profile-actions .super-interest {
    color: #ff4d6d; /* Custom color for super interest icon */
}

/* ======================================= */
/* == Dashboard Sidebar Styles (FIXED) == */
/* ======================================= */

/* Main Sidebar Container & Sticky Behavior */
.sidebar {
    position: sticky;
    top: 88px; /* Offset for the new, taller header (~72px) + a 16px gap */
    align-self: flex-start;
    
    /* FIX: Removed max-height and overflow-y to eliminate the scrollbar */

    padding: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Profile Completeness Card */
.profile-completeness {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}
.profile-completeness .progress-bar {
    background-color: var(--primary-color);
}

/* Navigation Links */
.sidebar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-nav .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--text-dark);
}

/* Active State for Links */
.sidebar-nav .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3);
}

.sidebar-nav .nav-link.active i {
    color: #fff;
}

.sidebar-nav .nav-link i {
    font-size: 1.1rem;
    color: #adb5bd;
    transition: color 0.2s ease;
}

.sidebar-nav .nav-link:hover i {
    color: var(--text-dark);
}

/* Upgrade CTA Card */
.upgrade-cta {
    background: linear-gradient(135deg, #f3eefc, #e9ecef);
    padding: 1.5rem 1rem;
    border-radius: 8px;
}

/* ======================================= */
/* ======== NEW Modern Header Styles ======== */
/* ======================================= */
.main-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.main-header .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.header-icon-link {
    position: relative;
    font-size: 1.5rem;
    color: var(--text-light);
    padding: 0.5rem;
    transition: color 0.2s ease;
}
.header-icon-link:hover {
    color: var(--text-dark);
}

.header-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.6rem;
    padding: 0.2em 0.4em;
    border: 2px solid #fff;
}

.user-menu-dropdown {
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 25px;
    transition: background-color 0.2s ease;
}
.user-menu-dropdown:hover {
    background-color: #f8f9fa;
}

.user-menu-dropdown .user-name {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
}
.user-menu-dropdown .user-role {
    color: var(--text-light);
    font-size: 0.8rem;
}
.user-menu-dropdown .dropdown-caret {
    font-size: 0.8rem;
    color: #adb5bd;
}

/* ======================================= */
/* ====== NEW Main Navigation Links ====== */
/* ======================================= */

.main-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark) !important; /* Use important to override bootstrap defaults */
    margin: 0 0.5rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color) !important;
}

/* Optional: Style for an 'active' link if you implement it later */
.main-nav-link.active {
    background-color: rgba(217, 83, 79, 0.1);
    color: var(--primary-color) !important;
}

/* =============================== */
/* == NEW Edit Profile Page Styles == */
/* =============================== */

.profile-form-section {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.profile-form-section .card-header {
    background-color: #f8f9fa;
    font-weight: 500;
    color: var(--text-dark);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.photo-preview-wrapper {
    position: relative;
    padding-top: 100%; /* Creates a square aspect ratio */
}
.photo-preview-wrapper .img-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-wrapper .primary-badge {
    position: absolute;
    top: 8px;
    right: 8px;
}

.photo-preview-wrapper .set-primary-btn {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

/* =============================== */
/* == NEW Messages Page Styles == */
/* =============================== */

.messages-layout {
    height: calc(100vh - 120px); /* Adjust height to fit viewport */
    min-height: 600px;
}

/* Conversations Panel (Left) */
.conversations-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.conversations-panel .card-body {
    overflow-y: auto;
}
.conversation-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0 !important;
}
.conversation-item.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.conversation-item.active .convo-name,
.conversation-item.active .convo-time,
.conversation-item.active .convo-last-message {
    color: #fff !important;
}
.convo-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.convo-name {
    font-weight: 600;
}
.convo-last-message {
    font-size: 0.9rem;
    max-width: 150px; /* Prevent long messages from pushing out the badge */
}

/* Chat Panel (Right) */
.chat-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.chat-header {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
}
.chat-message-wrapper {
    margin-bottom: 1rem;
}
.chat-message {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 70%;
    word-break: break-word;
}
.message-sent {
    background-color: var(--primary-color);
    color: #fff;
    border-bottom-right-radius: 0;
}
.message-received {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-bottom-left-radius: 0;
}
.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.25rem;
    text-align: right;
}
.chat-input-form {
    background-color: #fff;
}
.chat-placeholder {
    background-color: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

/* =============================== */
/* == NEW Interests Page Styles == */
/* =============================== */

/* Modern Tab Styles */
.modern-tabs .nav-link {
    color: var(--text-light);
    font-weight: 500;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}
.modern-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom-color: var(--primary-color);
}

/* General Interest Card */
.interest-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.interest-avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* SPECIAL Super Interest Card */
.super-interest-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border: none;
}
.super-interest-card .super-interest-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    animation: rotateGlow 15s linear infinite;
}
@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.super-interest-card .card-body {
    position: relative; /* To keep content above the glow */
    z-index: 2;
}
.super-interest-card .interest-avatar {
    width: 60px;
    height: 60px;
}
.super-interest-card .card-text {
    opacity: 0.8;
}
.super-interest-badge {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 500;
}

/* ======================================= */
/* ====== NEW Static Page Styles ====== */
/* ======================================= */

.static-hero {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}
.static-content-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 2rem;
}
.static-content-card h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.static-content-card p {
    line-height: 1.8;
}

/* Success Story Card */
.story-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}
.story-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Pricing Card */
.pricing-card {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    padding: 1.5rem;
}
.pricing-card.border-primary {
    transform: scale(1.05);
    z-index: 1;
}
.pricing-card .card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.pricing-card ul li {
    margin-bottom: 0.75rem;
}
.pricing-card ul li .fa-check { color: #198754; }
.pricing-card ul li .fa-times { color: #dc3545; }
.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    transform: translateY(-50%);
}

/* ======================================= */
/* =========== Admin Panel Styles ======== */
/* ======================================= */

.card-sage {
    background-color: var(--primary-color); /* The Sage Green */
}

.card-cta {
    background-color: var(--cta-color); /* The Gold Accent */
}