/* Custom 2013 Retro Style for ToolPDF */

:root {
    --primary-color: #f75c03; /* A vibrant orange, similar to PDF24 */
    --secondary-color: #222222;
    --bg-light: #f5f5f5;
}

body {
    background-color: var(--bg-light);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Web safe, 2013 feel */
    background-image: linear-gradient(to bottom, #fdfdfd 0%, #e9e9e9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Footer */
.bg-custom-dark {
    background-color: var(--secondary-color);
    background-image: linear-gradient(to bottom, #333333 0%, #111111 100%);
    border-bottom: 2px solid #000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.bg-language-selector {
    background-color: #444;
    border-radius: 4px;
    border: 1px solid #222;
    color: white !important;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(to bottom, #ff7b30 0%, #d84b00 100%);
    border-bottom: 3px solid #b33e00;
    box-shadow: inset 0 -4px 10px rgba(0,0,0,0.2), 0 4px 5px rgba(0,0,0,0.1);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.text-shadow-sm {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Category Sections */
.category-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-title {
    background-image: linear-gradient(to bottom, #444 0%, #222 100%) !important;
    border: 1px solid #111;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 2px 3px rgba(0,0,0,0.3);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
    font-size: 1.25rem;
}

/* Tool Cards */
.tool-card {
    transition: all 0.2s ease-in-out;
    background: #ffffff;
    border: 1px solid #bce8f1;
    border-radius: 6px;
    text-decoration: none !important;
}

.shadow-retro {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid #ddd;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.25);
    border-bottom: 3px solid var(--primary-color);
    background-color: #fcfcfc;
}

.tool-card a {
    text-decoration: none;
}

/* Icons styling - Making them pop like old times */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), 0 3px 5px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.2);
}

/* Gradients for different tool colors */
.gradient-blue { background-image: linear-gradient(to bottom, #4ba3e3 0%, #1b6cb0 100%); }
.gradient-orange { background-image: linear-gradient(to bottom, #ff9f43 0%, #e67e22 100%); }
.gradient-green { background-image: linear-gradient(to bottom, #2ecc71 0%, #27ae60 100%); }
.gradient-purple { background-image: linear-gradient(to bottom, #9b59b6 0%, #8e44ad 100%); }
.gradient-cyan { background-image: linear-gradient(to bottom, #00cec9 0%, #00b894 100%); }
.gradient-red { background-image: linear-gradient(to bottom, #ff7675 0%, #d63031 100%); }
.gradient-yellow { background-image: linear-gradient(to bottom, #ffeaa7 0%, #fdcb6e 100%); }
.gradient-indigo { background-image: linear-gradient(to bottom, #6c5ce7 0%, #a29bfe 100%); }
.gradient-teal { background-image: linear-gradient(to bottom, #00cec9 0%, #81ecec 100%); }
.gradient-gray { background-image: linear-gradient(to bottom, #b2bec3 0%, #636e72 100%); }
.gradient-black { background-image: linear-gradient(to bottom, #2d3436 0%, #000000 100%); }

/* Reset link colors strictly for tool cards */
.tool-card .card-title {
    color: #333;
}
.tool-card:hover .card-title {
    color: var(--primary-color);
}
