/* Robert's Emporium Styles */

/* Dashboard Styles */
.re-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.re-dashboard-welcome {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.re-dashboard-welcome h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    color: white;
}

.re-daily-encouragement {
    font-size: 1.2em;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

/* Points Cards */
.re-dashboard-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.re-points-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.re-points-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.re-zen-card {
    border-left: 4px solid #10b981;
}

.re-vegan-card {
    border-left: 4px solid #34d399;
}

.re-coin-image {
    flex-shrink: 0;
}

.coin-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.re-points-icon {
    font-size: 3em;
}

.re-points-info h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.re-points-number {
    font-size: 2em;
    font-weight: bold;
    margin: 5px 0;
    color: #10b981;
}

.re-vegan-card .re-points-number {
    color: #34d399;
}

.re-points-desc {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

/* Navigation Grid */
.re-dashboard-sections {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.re-dashboard-nav h2,
.re-dashboard-featured h2 {
    color: #333;
    margin-bottom: 20px;
}

.re-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.re-nav-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.re-nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.re-nav-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.re-nav-card h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1em;
}

.re-nav-card p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

/* Featured Boxes */
.re-featured-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.re-featured-box h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.re-featured-box p {
    margin: 0 0 15px 0;
    color: #666;
}

/* Buttons */
.re-button {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.re-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    color: white !important;
}

/* Footer */
.re-dashboard-footer {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

/* Points Display Shortcode */
.re-points-display {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.re-points-display .re-points-zen,
.re-points-display .re-points-vegan {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.re-points-display .re-points-value {
    font-weight: bold;
    color: #10b981;
}

.re-points-display .re-points-vegan .re-points-value {
    color: #34d399;
}

.re-points-description {
    color: #666;
    font-size: 0.9em;
    margin-top: 15px;
}

/* Opportunities Page */
.re-opportunities-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.re-opportunity-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.re-opportunity-section h2 {
    color: #333;
    margin-top: 0;
}

.re-opportunity-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.re-opportunity-section li {
    margin-bottom: 8px;
    color: #666;
}

.re-zenith-widget {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.re-crypto-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Devorah's Corner */
.re-devorahs-corner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.re-devorah-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.re-photo-placeholder {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #ddd;
}

.re-photo-placeholder p {
    margin: 10px 0;
    color: #666;
}

.re-photo-note {
    font-size: 0.9em;
    font-style: italic;
}

.re-devorah-text p {
    color: #666;
    line-height: 1.6;
}

.re-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.re-post-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.re-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.re-post-card h3 {
    margin: 0 0 15px 0;
}

.re-post-card h3 a {
    color: #333;
    text-decoration: none;
}

.re-post-card h3 a:hover {
    color: #10b981;
}

.re-post-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.re-read-more {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.re-read-more:hover {
    text-decoration: underline;
}

/* Crypto Page */
.re-crypto-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.re-crypto-disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.re-crypto-disclaimer h3 {
    margin-top: 0;
    color: #856404;
}

.re-crypto-disclaimer p {
    color: #856404;
    margin-bottom: 0;
}

.re-crypto-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.re-crypto-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.re-crypto-card h2 {
    margin-top: 0;
    color: #333;
}

.re-crypto-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .re-dashboard-sections {
        grid-template-columns: 1fr;
    }
    
    .re-nav-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .re-devorah-intro {
        grid-template-columns: 1fr;
    }
    
    .re-posts-grid {
        grid-template-columns: 1fr;
    }
}
