/* Tool.css - Sun Path & Golden Hour Visualizer */

/* Golden Hour Cards */
.golden-hour-card {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffb84d;
}

[data-bs-theme="dark"] .golden-hour-card {
    background: linear-gradient(135deg, #4a3c1f 0%, #6b5329 100%);
    border-color: #8b6914;
}

.golden-hour-card.morning {
    border-left: 6px solid #ff9933;
}

.golden-hour-card.evening {
    border-right: 6px solid #ff6600;
}

.gh-header {
    font-size: 1rem;
    font-weight: 600;
    color: #cc7a00;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-bs-theme="dark"] .gh-header {
    color: #ffb84d;
}

.gh-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #cc6600;
    margin: 8px 0;
}

[data-bs-theme="dark"] .gh-time {
    color: #ffa500;
}

.gh-separator {
    font-size: 0.9rem;
    color: #999;
    margin: 4px 0;
}

.gh-duration {
    font-size: 0.95rem;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

[data-bs-theme="dark"] .gh-duration {
    color: #aaa;
}

/* Blue Hour Cards */
.blue-hour-card {
    background: linear-gradient(135deg, #e6f2ff 0%, #b3d9ff 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #4d94ff;
}

[data-bs-theme="dark"] .blue-hour-card {
    background: linear-gradient(135deg, #1a2f4a 0%, #2a4a6b 100%);
    border-color: #1a5fb4;
}

.blue-hour-card.morning {
    border-left: 6px solid #3385ff;
}

.blue-hour-card.evening {
    border-right: 6px solid #0066cc;
}

.bh-header {
    font-size: 1rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-bs-theme="dark"] .bh-header {
    color: #4d94ff;
}

.bh-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0052a3;
    margin: 8px 0;
}

[data-bs-theme="dark"] .bh-time {
    color: #66a3ff;
}

.bh-separator {
    font-size: 0.9rem;
    color: #999;
    margin: 4px 0;
}

.bh-duration {
    font-size: 0.95rem;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

[data-bs-theme="dark"] .bh-duration {
    color: #aaa;
}

/* Chart Container */
.chart-container {
    position: relative;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

[data-bs-theme="dark"] .chart-container {
    background: #2a2a2a;
}

/* Sun Details */
.sun-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
}

[data-bs-theme="dark"] .sun-details {
    background: #2a2a2a;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .detail-row {
    background: #333;
}

.detail-label {
    font-weight: 600;
    color: #555;
}

[data-bs-theme="dark"] .detail-label {
    color: #aaa;
}

.detail-value {
    font-weight: 700;
    color: #052c65;
    font-size: 1.1rem;
}

[data-bs-theme="dark"] .detail-value {
    color: #66a3ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gh-time, .bh-time {
        font-size: 1.3rem;
    }

    .golden-hour-card, .blue-hour-card {
        padding: 15px;
    }

    .chart-container {
        padding: 15px;
    }
}
