/* 
    Program Page Styles
    Back to Roots - Program Details Page
*/

body {
    background: linear-gradient(180deg, #FFF9E9 0%, #FFF5DD 60%, #FFF8E8 100%);
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #4b4b4b;
}

/* Container styles with responsive adjustments */
#data-framer-root {
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: 40px;
    padding: 0 16px;
    box-sizing: border-box;
}

#data-framer-1, #data-framer-2, #data-framer-3 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#data-framer-3 {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Title and logo section */
#data-framer-title {
    text-align: center; 
    font-family: 'Baloo 2', cursive, fantasy;
    font-size: clamp(32px, 6vw, 60px);
    color: #5e8c2c;
    font-weight: bold;
    margin-top: clamp(20px, 4vw, 40px);
}

#data-framer-title a {
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    color: #5e8c2c;
    font-size: clamp(24px, 4vw, 30px);
    text-decoration: none;
    flex-wrap: wrap;
}

#data-framer-title img {
    height: clamp(60px, 10vw, 100px);
    vertical-align: middle;
    margin-right: 10px;
}

/* Program title and description */
#program-title {
    text-align: center;
    font-family: 'Baloo 2', cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    color: #8C4E1D;
    margin-top: clamp(16px, 3vw, 24px);
    font-weight: bold;
    width: 100%;
}

#program-description {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #4b4b4b;
    margin: clamp(16px, 3vw, 24px) auto 0;
    max-width: 650px;
    text-align: center;
    line-height: 1.6;
    padding: 0 16px;
}

/* Buttons */
#program-buttons {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

#program-buttons a {
    margin: 5px;
}

/* Practical info section */
#data-framer-3 h3 {
    color: #5E8C2C;
    margin: 15px;
    font-size: clamp(18px, 3vw, 22px);
    text-align: center;
}

#data-framer-3 ul {
    color: #6b6b6b;
    line-height: 1.8;
    list-style-type: none;
    padding-left: 0;
    margin: 15px;
}

#data-framer-3 ul li {
    margin: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#data-framer-3 ul li:last-child {
    border-bottom: none;
}

/* Pills for age and price */
.pill {
    display: inline-block;
    border-radius: 9999px;
    font-weight: 800;
    font-size: clamp(12px, 2vw, 14px);
    padding: 6px 12px;
    color: #4b4b4b;
    margin: 5px;
}

.pill--price {
    background: #A5D3EA;
    color: #134B68;
}

.pill--age {
    background: #F7E48B;
    color: #4F3B00;
}

/* Program image */
.program-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: clamp(16px, 3vw, 24px) auto;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Experience items */
.program-experience {
    width: 100%;
}

.exp-item {
    background: #fff;
    padding: clamp(12px, 3vw, 18px);
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(16,16,16,0.04);
    margin-bottom: 16px;
    flex-direction: row;
}

.exp-item__body strong {
    font-size: clamp(16px, 2.5vw, 18px);
}

.exp-item__body p {
    font-size: clamp(14px, 2vw, 16px);
}

h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: #8C4E1D;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Baloo 2', cursive, sans-serif;
}

/* Footer styling */
footer {
    padding: 32px 16px;
    text-align: center;
    color: #D4B594;
    margin-top: 40px;
    font-size: clamp(14px, 2vw, 16px);
}

/* Media queries for responsive design */
@media (max-width: 600px) {
    #program-title {
        text-align: center;
    }

    .exp-item {
        padding: 12px;
    }

    #program-buttons {
        flex-direction: column;
        align-items: center;
    }

    #program-buttons a {
        width: 100%;
        max-width: 250px;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    #data-framer-1, #data-framer-2, #data-framer-3 {
        max-width: 700px;
    }
}

@media (min-width: 901px) {
    #data-framer-1, #data-framer-2, #data-framer-3 {
        max-width: 600px;
    }
}