﻿/* Add this to your existing site.css or create a new CSS file */

/* Import a more edgy font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Apply rock-inspired typography */
body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #18181b 0%, #000000 100%);
}

/* Headers use the more futuristic font */
h1, h2, h3, h4, h5, h6, .font-black {
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.025em;
}

/* Rock-themed H1 class for guitar grid headers */
.guitar-grid-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    animation: subtle-pulse 3s ease-in-out infinite;
}

    .guitar-grid-title::before {
        content: "🎸";
        position: absolute;
        left: -3rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        animation: rock-bounce 2s ease-in-out infinite;
    }

    .guitar-grid-title::after {
        content: "🎸";
        position: absolute;
        right: -3rem;
        top: 50%;
        transform: translateY(-50%) scaleX(-1);
        font-size: 2rem;
        animation: rock-bounce 2s ease-in-out infinite reverse;
    }

/* Responsive sizing for the guitar grid title */
@media (max-width: 768px) {
    .guitar-grid-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

        .guitar-grid-title::before,
        .guitar-grid-title::after {
            font-size: 1.5rem;
            left: -2rem;
            right: -2rem;
        }
}

@media (max-width: 480px) {
    .guitar-grid-title {
        font-size: 1.5rem;
    }

        .guitar-grid-title::before,
        .guitar-grid-title::after {
            display: none; /* Hide guitar emojis on very small screens */
        }
}

/* Alternative simpler version */
.guitar-section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 2rem 0;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5), 0 0 20px rgba(245, 158, 11, 0.3), 0 0 30px rgba(245, 158, 11, 0.1);
    position: relative;
}

    .guitar-section-title::before {
        content: "⚡";
        margin-right: 1rem;
        color: #dc2626;
    }

    .guitar-section-title::after {
        content: "⚡";
        margin-left: 1rem;
        color: #dc2626;
    }

/* Animations */
@keyframes subtle-pulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(245, 158, 11, 0.6), 0 0 60px rgba(220, 38, 38, 0.3);
    }
}

@keyframes rock-bounce {
    0%, 100% {
        transform: translateY(-50%) rotate(-5deg);
    }

    50% {
        transform: translateY(-60%) rotate(5deg);
    }
}

/* Line clamp utilities for text truncation */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom scrollbar with rock theme */
.overflow-x-auto::-webkit-scrollbar {
    height: 6px;
}

.overflow-x-auto::-webkit-scrollbar-track {
    background: #18181b;
    border-radius: 3px;
}

.overflow-x-auto::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #f59e0b, #dc2626);
    border-radius: 3px;
}

    .overflow-x-auto::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, #d97706, #b91c1c);
    }

/* Enhanced column layout */
.columns-1 {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 640px) {
    .columns-1.sm\:columns-2 {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .columns-1.sm\:columns-2.lg\:columns-3 {
        column-count: 3;
    }
}

@media (min-width: 1280px) {
    .columns-1.sm\:columns-2.lg\:columns-3.xl\:columns-4 {
        column-count: 4;
    }
}

/* Prevent image stretching in masonry layout */
.columns-1 img,
.sm\:columns-2 img,
.lg\:columns-3 img,
.xl\:columns-4 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Enhanced card hover effects */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:bg-opacity-10 {
    background-opacity: 0.1;
}

/* Rock-inspired animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 30px rgba(245, 158, 11, 0.6);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Guitar-themed button effects */
.transform:hover {
    transform: scale(1.05) !important;
    transition: transform 0.2s ease-in-out;
}

/* Custom gradient backgrounds */
.bg-rock-gradient {
    background: linear-gradient(135deg, #1f1f23 0%, #18181b 50%, #000000 100%);
}

/* Glowing text effect for special elements */
.text-glow-amber {
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.text-glow-red {
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Enhanced border effects */
.border-glow:hover {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
}

/* Custom selection colors */
::selection {
    background-color: #f59e0b;
    color: #000000;
}

::-moz-selection {
    background-color: #f59e0b;
    color: #000000;
}
