/* General Styling */
body {
    /* font-family: 'Georgia', serif;  */
    background-color: #f5f0e6;
    /* color: #3d2b1f; */
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Main Section */
.teacher-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
}

/* Profile Image */
.teacher-image {
    width: 100%;
    max-width: 600px; /* Adjust size */
    
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

/* Section Divider */
.section-divider {
    width: 80%;
    height: 2px;
    background: #a89c88;
    border: none;
    margin: 1.5rem auto;
}

/* Titles */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #5a4222;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5a4222;
    margin-top: 2rem;
}

/* Quote Box */
.quote-box {
    border-left: 5px solid #7a6a48;
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #5a4222;
}

/* Section Text */
.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4d3b2a;
}

/* Invitation Title */
.invitation-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5a4222;
    font-style: italic;
    margin-top: 2rem;
}

/* Signature */
.signature {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
    color: #5a4222;
}

/* Button - Improved */
.back-button {
    display: inline-block;
    background-color: #4a4030;
    color: #fff8e6;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 1rem;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.back-button:hover {
    background-color: #5c5038;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-button:hover::before {
    left: 100%;
}

/* blog widgets!!! */
.blog-widget {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    border-radius: 15px;
    overflow: hidden;
}

.widget-content {
    padding: 20px;
    text-align: center;
}

.date {
    color: #666;
    margin-bottom: 10px;
}

.title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 28px;
    color: #5a4326;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.subtitle {
    color: #5a4326;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.widget-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 20px;
    }
    
    .widget-content {
        padding: 15px;
    }
}

.question-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.season-title {
    font-size: 2rem; /* Large and bold for emphasis */
    font-weight: 600;
    color: #5a4222
}

.season-date {
    font-size: 1.2rem; /* Smaller for contrast */
    font-weight: 400;
    /* color: #666;  */
    padding: 2px 8px;
    border-bottom: 2px solid #999;
    display: inline-block; /* Ensures padding applies properly */
    border-radius: 4px;
}
