/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/* ================
   Share Card Section
   ================ */
.graceful-share-container {
    margin-bottom: 2.5rem;
}

.graceful-share-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
	margin-top: 10px;
    box-shadow: 0 5px 15px rgba(29, 84, 1, 0.08);
    border: 1px solid rgba(29, 84, 1, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.graceful-share-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 84, 1, 0.15);
}

.share-title {
    margin: 0 0 1.2rem 0;
    color: #1D5401;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-title i {
    color: #FFD230;
}

.graceful-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: white !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.share-btn span {
    display: inline-block;
    transform: translateY(1px);
}

.share-btn i {
    font-size: 0.9rem;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* Share Button Colors */
.facebook { background: linear-gradient(135deg, #3b5998, #4c70ba); }
.twitter { background: linear-gradient(135deg, #1da1f2, #3bb1f4); }
.whatsapp { background: linear-gradient(135deg, #25d366, #2fe878); }
.pinterest { background: linear-gradient(135deg, #bd081c, #e03a52); }
.link { background: linear-gradient(135deg, #1D5401, #3a7a0e); }

/* ===================
   Categories & Tags
   =================== */
.graceful-taxonomy-container {
    margin-bottom: 2.5rem;
}

.graceful-taxonomy-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 5px 15px rgba(29, 84, 1, 0.08);
    border: 1px solid rgba(29, 84, 1, 0.1);
}

.taxonomy-section {
    margin-bottom: 1.5rem;
}

.taxonomy-section:last-child {
    margin-bottom: 0;
}

.taxonomy-title {
    margin: 0 0 1rem 0;
    color: #1D5401;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.taxonomy-title i {
    color: #FFD230;
}

.graceful-categories,
.graceful-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.graceful-categories a,
.graceful-tags a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(29, 84, 1, 0.1);
    color: #1D5401;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 84, 1, 0.2);
}

.graceful-categories a:hover,
.graceful-tags a:hover {
    background-color: #1D5401;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(29, 84, 1, 0.3);
}

/* =============
   Author Section
   ============= */
.graceful-author-card {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(29, 84, 1, 0.08);
    border: 1px solid rgba(29, 84, 1, 0.1);
    position: relative;
    overflow: hidden;
}

.graceful-author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #1D5401, #3a7a0e);
}

.author-image img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid rgba(29, 84, 1, 0.2);
    box-shadow: 0 3px 10px rgba(29, 84, 1, 0.1);
}

.author-content {
    flex: 1;
}

.author-title {
    margin: 0.5rem 0 1rem 0;
    color: #1D5401;
    font-size: 1.3rem;
    font-weight: 700;
}

.author-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #1D5401, #FFD230);
    margin: 0 0 1.2rem 0;
    border-radius: 3px;
}

.author-bio {
    margin: 0 0 1.5rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

.author-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(to right, #1D5401, #3a7a0e);
    color: white !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(29, 84, 1, 0.3);
}

.author-button:hover {
    background: linear-gradient(to right, #FFD230, #f8e076);
    color: #1D5401 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 210, 48, 0.4);
}

/* Premium Enhancements */
.graceful-share-card,
.graceful-taxonomy-card,
.graceful-author-card {
    position: relative;
    overflow: hidden;
}

.graceful-share-card::after,
.graceful-taxonomy-card::after,
.graceful-author-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 210, 48, 0.2), transparent);
    border-bottom-left-radius: 100%;
    z-index: 0;
}
