/* style.css */
:root {
    --primary-red: #ff5b5b;
    --primary-red-hover: #e04545;
    --primary-orange: #d98518;
    --text-dark: #333;
    --text-light: #666;
    --premium-bg: #ed3854;
    --border-color: #ddd;
    --why-border: #28a745;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    font-size: 14px;
}

/* Header */
.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.logo {
    display: inline-block;
}

.logo-text {
    font-family: 'Playball', cursive, serif;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), -1px -1px 0 #cc5500, 1px -1px 0 #cc5500, -1px 1px 0 #cc5500, 1px 1px 0 #cc5500;
}

.logo-highlight {
    color: #ffaa00;
    /* yellowish */
}

.member-login {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../hero_bg.png');
    background-size: cover;
    background-position: left center;
    min-height: 500px;
    padding-top: 80px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
}

/* Premium Hero Card */
.premium-hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-height: auto;
    color: #fff;
    transition: transform 0.3s ease;
}

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

.hero-main-title {
    font-family: 'Playball', cursive, serif;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.25rem;
}

.hero-sub-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 95%;
}

.btn-premium-action {
    background: linear-gradient(135deg, var(--primary-red), #ff8a8a);
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(255, 91, 91, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium-action:hover {
    background: linear-gradient(135deg, #e04545, var(--primary-red));
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 91, 91, 0.6);
}

.hero-decoration i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Why Choose Section */
.why-choose-box {
    border: 2px solid var(--why-border);
    border-radius: 4px;
    padding: 15px 25px;
    background: #fff;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.why-list {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
    color: #555;
}

.why-list li {
    margin-bottom: 5px;
}

.why-list i {
    font-size: 0.8rem;
    margin-right: 5px;
}

.btn-register-outline {
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    border-radius: 20px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-register-outline:hover {
    background: var(--primary-red);
    color: #fff;
}

.btn-register-outline:hover .text-danger {
    color: #fff !important;
}

/* Browse Section */
.browse-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 5px;
}

.browse-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--why-border) 20%, var(--primary-orange) 100%);
}

.browse-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.browse-list li {
    margin-bottom: 6px;
}

.browse-list a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
}

.browse-list a:hover {
    text-decoration: underline;
    color: var(--primary-red);
}

/* Premium Memberships */
.premium-box {
    background-color: var(--premium-bg);
    border-radius: 8px;
    padding: 20px;
    color: #fff;
}

.premium-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.premium-text {
    font-size: 0.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.premium-options .form-check {
    margin-bottom: 8px;
}

.premium-options .form-check-label {
    font-size: 0.85rem;
}

.premium-radio:checked {
    background-color: #fff;
    border-color: #fff;
}

.premium-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.premium-link:hover {
    text-decoration: underline;
    color: #fff;
}

.premium-benefits {
    color: #000;
    text-decoration: none;
    font-size: 0.75rem;
}

.premium-benefits:hover {
    text-decoration: underline;
    color: #fff;
}

/* Trust Bar */
.trust-bar {
    background-color: #f6f6f6;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.text-orange {
    color: #f17a3a;
}

.trust-item {
    display: flex;
    align-items: center;
}

.trust-text {
    font-size: 1.1rem;
}

/* Footer */
.footer-custom {
    background-color: #e38917;
    color: #000;
}

.footer-title {
    color: #000;
    font-size: 0.95rem;
}

.footer-links a,
.footer-nav a {
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 5px;
}

.footer-links a:hover,
.footer-nav a:hover {
    text-decoration: underline;
}

.footer-desc {
    font-size: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Auth Pages Layout */
.bg-light-grey {
    background-color: #f8f9fa;
}

.auth-header {
    background-color: #ef7c10;
    padding: 10px 0;
}

.auth-header .logo-text {
    color: #fff;
}

.auth-header .logo-highlight {
    color: #fff;
}

.auth-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    width: 100%;
    max-width: 550px;
    margin: 50px auto;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.auth-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

.auth-label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.auth-info-icon {
    color: #ffb84d;
    font-size: 0.85rem;
    margin-left: 4px;
}

.auth-input {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 0.95rem;
    box-shadow: none;
    color: #555;
}

.auth-input::placeholder {
    color: #aaa;
}

.auth-input:focus {
    border-color: #ef7c10;
    box-shadow: 0 0 0 0.2rem rgba(239, 124, 16, 0.15);
}

.btn-auth-continue {
    background-color: #ff7f3f;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-auth-continue:hover {
    background-color: #e66a2e;
    color: #fff;
}

/* Search Results Page Layout */
.search-sidebar {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
}

.sidebar-heading {
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1rem;
    color: #000;
    margin: 0;
}

.bg-tan {
    background-color: #fceacc;
}

.bg-dark-tan {
    background-color: #e5b350;
    color: #000;
}

.sidebar-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.sidebar-list li {
    padding: 6px 15px;
}

.sidebar-list li a {
    text-decoration: none;
    color: #a05a2c;
    font-size: 0.85rem;
}

.sidebar-list li a:hover {
    text-decoration: underline;
}

.sidebar-icon {
    color: #4cae4c;
    margin-right: 8px;
}

.search-results-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.search-results-title {
    font-size: 1.4rem;
    color: #333;
    margin: 0;
    margin-left: 10px;
}

.pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.page-btn {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
}

.page-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.profile-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.profile-img-container {
    flex-shrink: 0;
}

.profile-img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.profile-img-placeholder {
    width: 120px;
    height: 150px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-details {
    flex-grow: 1;
}

.profile-id {
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
    margin-right: 10px;
}

.contact-info-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    text-decoration: none;
}

.profile-stats {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
    margin: 10px 0;
}

.view-profile-btn {
    color: #d32f2f;
    font-weight: bold;
    font-size: 0.85rem;
    text-decoration: none;
}

.view-profile-btn:hover {
    text-decoration: underline;
    color: #b71c1c;
}

/* Admin Panel Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: #2c3e50;
    color: #fff;
    flex-shrink: 0;
    transition: width 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.admin-sidebar.collapsed {
    width: 80px !important;
}

.admin-sidebar-brand {
    padding: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #1a252f;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    height: 70px;
}

.admin-sidebar.collapsed .admin-sidebar-brand {
    font-size: 0;
}

.admin-sidebar.collapsed .admin-sidebar-brand::after {
    content: 'LP';
    font-size: 1.5rem;
}

.admin-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.admin-sidebar-menu li a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #34495e;
    transition: all 0.2s;
    white-space: nowrap;
}

.admin-sidebar.collapsed .admin-sidebar-menu li a {
    padding: 15px 0;
    justify-content: center;
}

.admin-sidebar-menu li a:hover,
.admin-sidebar-menu li a.active {
    background-color: #ef7c10;
    color: #fff;
}

.admin-sidebar-menu i {
    width: 25px;
    font-size: 1.1rem;
    margin-right: 15px;
    text-align: center;
}

.admin-sidebar.collapsed .admin-sidebar-menu i {
    margin-right: 0;
}

.admin-sidebar-menu span {
    opacity: 1;
    transition: opacity 0.2s;
}

.admin-sidebar.collapsed .admin-sidebar-menu span {
    display: none;
    opacity: 0;
}

.admin-content {
    flex-grow: 1;
    background-color: #f4f6f9;
    padding: 20px;
    overflow-x: auto;
    width: 100%;
}

.admin-header {
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-toggle-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.2s;
}

.sidebar-toggle-btn:hover {
    background: #ef7c10;
    color: #fff;
    border-color: #ef7c10;
}

.admin-card {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.admin-footer {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    margin-top: auto;
}

.admin-footer .badge {
    font-size: 0.75rem;
}

.table-users th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.table-users td {
    vertical-align: middle;
}

.action-btn {
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-right: 4px;
}