

:root {
    --primary-color: #293857;
    --secondary-color: #f4d03f;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
	background: #e9e9e9
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/67f010fe095bbdc4cb805689.png') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* Introduction Section */
.intro-section {

}

.section-label {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
	font-family: 'Playfair Display', serif;
	font-weight:900
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.intro-text {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 auto;
    text-align: center;
}

/* Membership Tiers Section */
.membership-tiers {

}

.tier-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
	border-radius:20px!important
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tier-title {
    font-variant: lining-nums;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.tier-description {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Closing Statement Section */
.closing-statement {

}

.closing-text {
     color: var(--primary-color);
    font-size: 1.1rem;

    text-align: justify;
    margin-bottom: 0;
}

/* General Features Section */
.general-features {

}

.features-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;

}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
     color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Pricing Section */
.pricing-section {

}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
	border-radius:15px!important
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-tier {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
}

.pricing-revenue {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
}

.pricing-amount {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
}

.pricing-feature {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-pricing {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pricing:hover {
    background-color: #f1c40f;
    border-color: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
    color: var(--text-dark);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.payment-icon {
    width: 150px;
    height: auto;
    opacity: 0.7;
}

.cancel-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
        text-align: left;
    }

    .closing-text {
        font-size: 1rem;
        text-align: left;
    }

    .tier-card {
        margin-bottom: 2rem;
    }

    .tier-title {
        font-size: 1.3rem;
    }

    .pricing-card {
        margin-bottom: 2rem;
        min-height: 350px;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tier-card, .pricing-card {
        padding: 1.5rem !important;
    }

    .pricing-amount {
        font-size: 1.8rem;
    }
}

/* Animation Effects */
.tier-card, .pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.tier-card.animate-in, .pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section reveal animation */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    opacity: 1;
    transform: none;
}

/* Image loading animation */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}
