/* Tattoo-specific styles */

/* Header navigation styles */
.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
}

.main-nav a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    background: var(--background-secondary);
    color: var(--text-primary);
}

.main-nav a.active {
    background: var(--primary-color);
    color: white;
}

/* Category tabs */
.font-categories {
    margin: 1rem 0;
    padding: 0 1rem;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.category-tab {
    padding: 0.5rem 1rem;
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.category-tab:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

.category-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Tattoo tips section */
.tattoo-tips {
    background: var(--background-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto 4rem auto;
    max-width: 800px;
}

@media (max-width: 840px) {
    .tattoo-tips {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.tattoo-tips h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.tip-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tip-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Font-specific styles for tattoo fonts */

/* Gothic Fonts */
.creepster { font-family: 'Creepster', cursive; }
.griffy { font-family: 'Griffy', cursive; }
.jolly-lodger { font-family: 'Jolly Lodger', cursive; }
.nosifer { font-family: 'Nosifer', cursive; }
.eater { font-family: 'Eater', cursive; }
.metal-mania { font-family: 'Metal Mania', cursive; }
.butcherman { font-family: 'Butcherman', serif; }
.unifraktur-maguntia { font-family: 'UnifrakturMaguntia', cursive; }
.jim-nightshade { font-family: 'Jim Nightshade', cursive; }

/* Bold Fonts */
.permanent-marker { font-family: 'Permanent Marker', cursive; }
.bangers { font-family: 'Bangers', cursive; }
.righteous { font-family: 'Righteous', cursive; }
.fredoka-one { font-family: 'Fredoka One', cursive; }
.bungee { font-family: 'Bungee', cursive; }
.black-ops-one { font-family: 'Black Ops One', cursive; }
.orbitron { font-family: 'Orbitron', sans-serif; }
.russo-one { font-family: 'Russo One', sans-serif; }
.chela-one { font-family: 'Chela One', cursive; }

/* Decorative Fonts */
.cinzel { font-family: 'Cinzel', serif; }
.cinzel-decorative { font-family: 'Cinzel Decorative', cursive; }
.pirata-one { font-family: 'Pirata One', cursive; }
.frijole { font-family: 'Frijole', cursive; }
.caesar-dressing { font-family: 'Caesar Dressing', cursive; }
.rye { font-family: 'Rye', cursive; }

/* Script fonts (suitable for tattoos) */
.tangerine-tattoo { font-family: 'Tangerine', cursive; font-weight: 700; }
.allura-tattoo { font-family: 'Allura', cursive; }
.great-vibes-tattoo { font-family: 'Great Vibes', cursive; }
.alex-brush-tattoo { font-family: 'Alex Brush', cursive; }
.mr-dafoe-tattoo { font-family: 'Mr Dafoe', cursive; }
.rochester-tattoo { font-family: 'Rochester', cursive; }
.damion-tattoo { font-family: 'Damion', cursive; }
.sacramento-tattoo { font-family: 'Sacramento', cursive; }
.parisienne-tattoo { font-family: 'Parisienne', cursive; }
.euphoria-script-tattoo { font-family: 'Euphoria Script', cursive; }

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .main-nav {
        order: 2;
    }
    
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-card {
        padding: 1rem;
    }
    
    .tattoo-tips h2 {
        font-size: 1.5rem;
    }
}


/* Font preview enhancements for tattoo fonts */
.font-preview {
    font-size: 1.5rem;
    font-weight: 600;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

/* Make gothic and decorative fonts larger for better visibility */
.font-preview.creepster,
.font-preview.griffy,
.font-preview.jolly-lodger,
.font-preview.nosifer,
.font-preview.eater,
.font-preview.metal-mania,
.font-preview.butcherman {
    font-size: 1.8rem;
    font-weight: 400;
}

/* Script fonts optimized for tattoo preview */
.font-preview.tangerine-tattoo {
    font-size: 2.2rem;
}

.font-preview.allura-tattoo,
.font-preview.great-vibes-tattoo,
.font-preview.alex-brush-tattoo,
.font-preview.mr-dafoe-tattoo,
.font-preview.rochester-tattoo,
.font-preview.damion-tattoo,
.font-preview.sacramento-tattoo,
.font-preview.parisienne-tattoo,
.font-preview.euphoria-script-tattoo {
    font-size: 1.8rem;
}