/*
Theme Name: Mercury Child
Template: mercury
Description: Child theme of Mercury
Version: 1.0
*/

@import url("../mercury/style.css");



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}
.header {
    background: #d63031;
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.header h3 {
    color: #fff;
}
.header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}
.intro-section {
    text-align: center;
    margin-bottom: 4rem;
}
.intro-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}
.intro-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(214, 48, 49, 0.15);
    border-color: #d63031;
}
.category-icon {
    width: 60px;
    height: 60px;
    background: #d63031;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}
.category-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}
.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}
.converters-list {
    list-style: none;
}
.converters-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}
.converters-list li:hover {
    color: #d63031;
}
.converters-list li:last-child {
    border-bottom: none;
}
.converters-list li::before {
    content: "→";
    color: #d63031;
    font-weight: bold;
    margin-right: 0.5rem;
}
.cta-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.cta-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}
.cta-button {
    background: #d63031;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #b92c28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
}
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 2rem 1rem;
    }
}
