/**
* Theme Name: Bricks Child
* Description: This is a child theme of Bricks, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/yogsthemes">Yogs Themes</a>
* Template: bricks
* Version: 1.8.0
*/

.fullwidth-section .left-column .text{
	padding-left: 50px;
	padding-right: 50px;
	position:relative;
	color:var(--main-color);
	margin-top:var(--margin-top-15);
	font-family:var(--font-family-inter);
}

.fullwidth-section .right-column h5{
	padding-left: 50px;
	padding-right: 50px;
	font-weight:400;
	margin-top:var(--margin-top-15);
	margin-bottom:var(--margin-bottom-35);
}

.header-top-two .info-links li a{
	position: relative;
	line-height:1.1em;
	font-weight:600;
	color:var(--white-color);
	font-size:var(--font-14);
	text-transform:none;
}

.newsletter-widget .text{
	font-size:var(--font-16);
	margin-bottom:var(--margin-bottom-15);
	color:var(--white-color);
}

/* Table design start */

/* Container styling */
/* .membership-table-section {
    padding: 60px 0;
    background-color: #fdfdfd;
}
 */
/* The Card Wrapper */
.table-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 33, 91, 0.08); /* Soft Navy shadow */
    border: 1px solid #e1e1e1;
    transition: transform 0.3s ease;
}

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

/* Header of the table */
.table-header {
    background-color: #00215B; /* PSSM Navy */
    padding: 25px;
    text-align: center;
    color: #fff;
}

.table-header h3 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #FFC107; /* PSSM Yellow title */
}

.titlesubtitle {
	color: #fff;
}

.table-header p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Table styling */
.pssm-custom-table {
    width: 100%;
    border-collapse: collapse;
}

.pssm-custom-table th {
    padding: 15px 25px;
    background-color: #f8f9fa;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #00215B;
    border-bottom: 2px solid #FFC107; /* Yellow accent line */
}

.pssm-custom-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 1rem;
}

/* Highlight the price */
.fee-value {
    font-weight: 700;
    color: #00215B;
}

/* Zebra striping for beauty */
.pssm-custom-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Hover effect on rows */
.pssm-custom-table tbody tr:hover {
    background-color: #fff9e6; /* Very light yellow highlight */
}

/* Highlight the last row (Lifetime) */
.highlight-row {
    background-color: #fffdf5 !important;
}

.highlight-row td {
    border-bottom: none;
}

/* Styling for the Membership Descriptions */
.membership-details {
    background-color: #fff; /* Keeping it clean and white as per the image */
}

.section-title {
    color: #00215B; /* PSSM Navy */
    font-size: 3.5rem;
    letter-spacing: -1px;
}

.membership-type-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #00215B;
    font-weight: 700;
    margin-top: 0;
}

.membership-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .membership-type-title {
        margin-bottom: 10px;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

/* For how to register */
/* Registration Steps Styling */
.pssm-steps-wrapper {
    position: relative;
    padding-left: 20px;
}

/* Vertical line connecting steps */
.pssm-steps-wrapper::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
    z-index: 1;
}

.registration-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #00215B; /* PSSM Navy */
    color: #FFC107; /* PSSM Yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 25px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-text h4 {
    font-family: 'Playfair Display', serif;
    color: #00215B;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Highlight for specific keywords */
.step-text strong {
    color: #00215B;
}

/* Hover effect */
.registration-step-item:hover .step-icon {
    background-color: #FFC107;
    color: #00215B;
    transition: 0.3s;
}