/* Homepage Feature Sections Styles */
.feature-section {
    background-color: #2d3742;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.feature-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8e8e8;
    margin-bottom: 25px;
}

/* Makers Showcase Preview */
.makers-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.maker-thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.maker-thumbnail:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Musings Preview */
.musing-preview {
    background-color: #232b35;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.musing-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.musing-date {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 15px;
}

.musing-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8e8e8;
    margin-bottom: 20px;
}

/* Tinkering Preview */
.tinkering-preview {
    position: relative;
    margin: 20px 0;
}

.tinkering-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.tinkering-video, .tinkering-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.tinkering-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    color: white;
}

.tinkering-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tinkering-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Navigation buttons */
.feature-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.feature-btn {
    background-color: #95a5a6;
    color: #232b35;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
}

.feature-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.feature-btn.secondary {
    background-color: #2d3742;
    color: #e8e8e8;
    border: 1px solid #95a5a6;
}

.feature-btn.secondary:hover {
    background-color: #95a5a6;
    color: #232b35;
}

/* Security/Protection Styles */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.protected-image {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.image-overlay {
    position: relative;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .makers-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-btn {
        width: 100%;
        text-align: center;
    }
}
