/* Date Today Specific Styles */

/* Tool Page Common Styles */
.tool-page {
    padding-top: 0;
}

.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-purple);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--border-color);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}

.tool-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.tool-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.tool-icon-large {
    font-size: 72px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tool-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.tool-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tool-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 16px;
}

.meta-separator {
    opacity: 0.5;
}

.tool-content {
    padding: 60px 20px;
    background: var(--bg-light);
}

/* SEO Content Styles */
.seo-content {
    padding: 80px 20px;
    background: white;
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-article h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-article h2:first-child {
    margin-top: 0;
}

.content-article h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.content-article p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
}

.content-article ul,
.content-article ol {
    margin-bottom: 25px;
    padding-left: 30px;
    color: var(--text-gray);
}

.content-article li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.content-article strong {
    color: var(--text-dark);
    font-weight: 700;
}

.related-tools {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.related-tools h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.related-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.related-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
}

.related-tool-card .tool-icon {
    font-size: 42px;
}

.related-tool-card .tool-name {
    font-weight: 700;
    color: var(--text-dark);
}

/* Date Today Tool Styles */
.date-today-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

.date-today-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 45px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.date-today-header::before {
    content: '📅';
    position: absolute;
    font-size: 180px;
    opacity: 0.1;
    top: -30px;
    left: -30px;
}

.date-today-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.date-today-header p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
}

.date-today-body {
    padding: 40px 30px;
}

.date-main-display {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(240,147,251,0.3);
    position: relative;
    overflow: hidden;
}

.date-main-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.date-day-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.date-full-date {
    font-size: 56px;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    position: relative;
}

.date-month-day {
    display: block;
    font-size: 72px;
}

.date-year {
    font-size: 42px;
    margin-top: 10px;
    opacity: 0.95;
}

.date-time-display {
    font-size: 48px;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    position: relative;
}

.date-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.date-stat-card {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.date-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.date-stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.date-stat-card h4 {
    font-size: 13px;
    color: #8b3a3a;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.date-stat-card p {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.date-formats-section {
    margin-bottom: 30px;
}

.date-formats-section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.date-formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.date-format-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.date-format-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.date-format-info h4 {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.date-format-info p {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Courier New', monospace;
}

.date-copy-btn {
    padding: 8px 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.date-copy-btn:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.date-calendar-section {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.date-calendar-section h3 {
    font-size: 22px;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.calendar-nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.3);
}

.calendar-month-year {
    font-size: 20px;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    color: #667eea;
    padding: 12px;
    font-size: 14px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
    transition: var(--transition);
    cursor: pointer;
}

.calendar-day:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

.calendar-day.today {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

.calendar-day.other-month {
    opacity: 0.3;
}

.date-info-box {
    background: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 25px;
    border-radius: 12px;
}

.date-info-box h4 {
    color: #1565c0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.date-info-box ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.date-info-box li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tool-header h1 {
        font-size: 32px;
    }
    
    .tool-subtitle {
        font-size: 16px;
    }
    
    .tool-icon-large {
        font-size: 52px;
    }
    
    .tool-meta {
        font-size: 14px;
    }
    
    .content-article h2 {
        font-size: 26px;
    }
    
    .content-article h3 {
        font-size: 20px;
    }
    
    .related-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .date-full-date {
        font-size: 36px;
    }
    
    .date-month-day {
        font-size: 48px;
    }
    
    .date-time-display {
        font-size: 32px;
    }
    
    .date-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        gap: 4px;
    }
}