/* ==================================== */
/* 3. Coding/Future Plan Styles */
/* ==================================== */

.nav-menu .active a {
    color: #ff6b00;
}




.coding-container {
    padding: 120px 8% 80px; 
    min-height: 100vh;
    background-color: black;
    color: white;
    text-align: center; /* Center everything by default */
}

/* Header/Intro Section */
.coding-hero {
    margin-bottom: 60px;
    margin-top: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6b00; /* Main title in orange */
    letter-spacing: 5px;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.hero-intro {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Future Plan Section Title (similar to previous section titles) */
.future-plan-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff6b00;
}

/* Grid Layout for Plans */
.plan-grid {
    display: grid;
    max-width: 60%;
    /* Defines a 2-column layout that becomes 1-column on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px;
    padding: 0% 20%;
;
}

.plan-card {
    background-color: #111; /* Dark grey background */
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #111; /* subtle border */
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.25);
    border-color: #ff6b00; /* Orange border on hover */
}

.plan-card h3 {
    font-size: 1.4rem;
    color: #c49e66; /* Orange title */
    margin-bottom: 10px;
    background-color: #111;
}

.plan-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    background-color: #111;
}


/* Styling for the icons within the plan cards */
.plan-card i {
    font-size: 2.2rem;
    color: #ccc; /* Use the main orange accent color */
    margin-bottom: 15px;
    display: block; /* Make the icon take up its own line */
    background-color: #111;
}

/* Ensure the text is properly spaced from the icon */
.plan-card h3 {
    margin-top: 15px; 
}




/* Join Button Styling */
.join-button-container {
    margin-top: 50px;
    text-align: center;
}

.join-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b00, #ff9500);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.join-button:hover {
    background-color: black;
    color: white;
    border-color: #ff6b00;
    transform: scale(1.05);
}

/* Responsive adjustments for Plan Grid */
@media (min-width: 768px) {
    /* For the layout where the bottom two cards span two columns */
    .large-card {
        grid-column: span 1; /* These two cards will naturally fill the two-column grid */
    }
}

@media (max-width: 767px) {
    .coding-container {
        padding-top: 80px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .plan-grid {
        padding: 0;
    }
    /* Cards will naturally stack vertically due to grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
}