/* assets/css/connect.css */

:root {
    --primary-color: #3c4863;
    --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(--text-dark);
    background: #ebebeb;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
        url("../images/connect-hero.jpg") center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 72, 99, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: "Playfair Display", serif;
}

/* Introduction Section */
.intro-section {
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Content Section */
.main-content {
}

.content-card {
    border: 1px solid #e9ecef;
}

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

.section-description {
    color: #323232;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features Section */
.features-section {
}

.feature-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.feature-title {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.feature-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.membership-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* 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 {
    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: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.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: 1.8rem;
    }

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

    .feature-card {
        padding: 2rem;
        min-height: 300px;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-subtitle {
        font-size: 1rem;
    }

    .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;
    }

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

    .feature-card {
        padding: 1.5rem;
        min-height: 280px;
    }

    .section-title {
        font-size: 1.6rem;
    }
    .tier-card,
    .pricing-card {
        padding: 1.5rem !important;
    }

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

