/* About Page Layout */
body {
    background-color: #F7F7EA;
}

.page-content-wrapper {
    display: flex;
    gap: 40px;
    padding: 50px 20px;
    align-items: flex-start;
    background-color: #F7F7EA;
    min-height: 100vh;
}

.main-content {
    flex: 3;
}

.sidebar {
    flex: 1;
    position: sticky;
    top: 20px;
}

/* Card Styling */
.content-card {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}

.article-card {
    max-width: 100%;
}

/* Main Content Typography */
.headline {
	font-family: 'Open Sans', serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
    background-color: #E9A254;
    padding: 40px 50px;
}

.sub-headline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    background-color: #EEBF79;
    padding: 30px 50px;
}

.intro-text {
    margin-bottom: 0;
	font-family: 'Open Sans', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    text-align: justify;
    background-color: #fcf3e4;
    padding: 35px 50px;
}

.content-img-wrapper {
    margin: 0;
    text-align: center;
    background-color: #fcf3e4;
    padding: 35px 50px;
}

.content-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bold-text {
	font-family: 'Delius Swash Caps', serif;
    font-weight: Regular 400;
    font-size: 1.6rem;
    margin: 0;
    color: #333;
    text-align: center;
    line-height: 1.6;
    background-color: #fcf3e4;
    padding: 35px 50px;
}

.ways-title {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 0;
    color: #333;
    text-align: center;
    background-color: #fcf3e4;
    padding: 40px 50px 25px 50px;
	font-family: 'Short Stack', cursive;  
}

.enjoy-list {
	font-family: 'Open Sans', serif;
    list-style-type: none;
    padding: 0 50px 35px 50px;
    margin: 0;
    background-color: #fcf3e4;
}

.enjoy-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05rem;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.enjoy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6c8c67;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Sidebar Styling */
.sidebar-card {
    background: transparent;
    padding: 30px;
    border: none;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.order-card:hover {
    transform: none;
}
.info-card {
    background-color: #E1FCF6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-card p {
	font-family: 'Open Sans';
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0; /* Reset generic margin */
}

.btn-blue {
    display: inline-block;
    background-color: #A3D1CC;
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    margin-top: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.order-card:hover .btn-blue {
    transform: scale(1.05);
    opacity: 0.9;
}

.fb-card {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    width: 46.67%;
    margin-left: 0;
    margin-right: auto;
}
.fb-info-card {
    background-color: #D8F9F7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    max-width: 100%;
}

.fb-card a {
    display: block;
    text-decoration: none;
}

.fb-img {
    width: 80px;
    height: auto;
    display: block;
    margin: 20px auto 0;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fb-card:hover .fb-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.recipe-card {
    background-color: #DFF5F1;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.recipe-img {
    width: 100%;
    height: auto;
    display: block;
}

.recipe-caption {
    text-align: center;
    font-family: 'Short Stack', sans-serif;
    font-size: 0.95rem;
    color: #333;
    padding: 12px 10px;
	font-weight: bold;
}

@media (max-width: 768px) {
    .page-content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }
}