/**
 * @package     Joomla.Site
 * @subpackage  mod_thoughtoftd
 * @copyright   Copyright (C) 2005 - 2024 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

/* Base module styles */
.mod-thoughtoftd {
    margin-bottom: 1.5rem;
}

/* Card enhancements */
.mod-thoughtoftd.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.mod-thoughtoftd.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Card image styling */
.mod-thoughtoftd .card-img-top,
.mod-thoughtoftd .card-img {
    max-height: 300px;
    object-fit: cover;
}

.mod-thoughtoftd .rounded-start {
    max-height: 100%;
    object-fit: cover;
}

/* Card title styling */
.mod-thoughtoftd .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Card text styling */
.mod-thoughtoftd .card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1rem;
}

/* Overlay card specific styles */
.mod-thoughtoftd.text-bg-dark .card-img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.mod-thoughtoftd.text-bg-dark .card-title,
.mod-thoughtoftd.text-bg-dark .card-text {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Thought text wrapper for collapsible content */
.thought-text-wrapper {
    position: relative;
}

.thought-text-wrapper .collapse {
    transition: max-height 0.3s ease;
}

/* Toggle button styling */
.thought-toggle {
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0;
    margin-top: 0.5rem;
    display: inline-block;
}

.thought-toggle:hover {
    text-decoration: underline;
}

/* Subscribe button styling */
.mod-thoughtoftd .btn {
    margin-top: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.mod-thoughtoftd .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.mod-thoughtoftd .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.25);
}

.mod-thoughtoftd .btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #212529;
}

.mod-thoughtoftd .btn-light:hover {
    background-color: #fff;
    border-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .mod-thoughtoftd .card-img-top,
    .mod-thoughtoftd .card-img {
        max-height: 200px;
    }
    
    .mod-thoughtoftd .card-title {
        font-size: 1.1rem;
    }
    
    .mod-thoughtoftd .card-text {
        font-size: 0.95rem;
    }
}

/* Print styles */
@media print {
    .mod-thoughtoftd .btn,
    .thought-toggle {
        display: none;
    }
    
    .mod-thoughtoftd.card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

