/* Social Media Section Styles */
.social-media-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.4s;
}

.social-links-container h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Platform-specific colors */
.social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.social-link.bandcamp {
    background: linear-gradient(135deg, #629aa0, #408a94);
}

.social-link.discogs {
    background: linear-gradient(135deg, #ff6600, #e55a00);
}

.social-link.email {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-links-container h3 {
        font-size: 1.5rem;
    }
}

/* Animation for social media section */
.social-media-section {
    animation-delay: 0.4s;
}

/* Social Icon Size Controls */
.social-size-small .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.social-size-medium .social-link {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
}

.social-size-large .social-link {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
}

.social-size-extra-large .social-link {
    width: 100px;
    height: 100px;
    font-size: 2.2rem;
}

/* Social Icon Position Controls */
.social-position-left .social-links {
    justify-content: flex-start;
}

.social-position-center .social-links {
    justify-content: center;
}

.social-position-right .social-links {
    justify-content: flex-end;
}

/* Social Icon Spacing Controls */
.social-spacing-compact .social-links {
    gap: 10px;
}

.social-spacing-normal .social-links {
    gap: 15px;
}

.social-spacing-wide .social-links {
    gap: 25px;
}

.social-spacing-extra-wide .social-links {
    gap: 35px;
}

/* Responsive adjustments for different sizes */
@media (max-width: 768px) {
    .social-size-small .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .social-size-medium .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-size-large .social-link {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .social-size-extra-large .social-link {
        width: 75px;
        height: 75px;
        font-size: 1.7rem;
    }
    
    /* Adjust spacing for mobile */
    .social-spacing-compact .social-links {
        gap: 8px;
    }
    
    .social-spacing-normal .social-links {
        gap: 12px;
    }
    
    .social-spacing-wide .social-links {
        gap: 18px;
    }
    
    .social-spacing-extra-wide .social-links {
        gap: 25px;
    }
}

/* Welcome Page Styles - Fun and Easy to Read */

* {
    box-sizing: border-box;
}

.welcome-page {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.welcome-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

/* Allow inline styles to override webkit properties */
.welcome-title span[style*="color"] {
    -webkit-text-fill-color: initial !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    background: none !important;
    animation: none !important;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
    font-weight: 300;
}

.welcome-additional-info {
    font-size: 1.1rem;
    color: #666;
    margin: 15px 0 0 0;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
}

.welcome-additional-info a {
    color: inherit;
    text-decoration: underline;
}

.welcome-additional-info a:hover {
    text-decoration: none;
}

/* Utility classes for rich content inserted via editor */
.welcome-highlight {
    background-color: #f0f8ff;
    padding: 10px;
    border-left: 4px solid #0073aa;
    margin: 10px 0;
}

.welcome-callout {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
}

.welcome-address {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.welcome-hours {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    padding: 10px;
    font-family: monospace;
}

.welcome-contact {
    background-color: #e8f5e8;
    border-left: 3px solid #28a745;
    padding: 12px;
    margin: 10px 0;
}

.welcome-emphasis {
    font-size: 1.1em;
    font-weight: 600;
    color: #0073aa;
}

.welcome-center {
    text-align: center;
}

.welcome-right {
    text-align: right;
}

.welcome-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.welcome-image-small {
    max-width: 200px;
    float: left;
    margin: 0 15px 15px 0;
}

.welcome-image-medium {
    max-width: 400px;
    display: block;
    margin: 15px auto;
}

.welcome-list {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.welcome-list li {
    margin-bottom: 8px;
}

.welcome-button {
    display: inline-block;
    background-color: #0073aa;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.welcome-button:hover {
    background-color: #005a87;
    color: white !important;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stock Summary Section */
.stock-summary {
    margin-bottom: 50px;
}

.total-stock {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.total-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.big-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.label {
    font-size: 1.4rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Genre Grid */
.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.genre-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.genre-card:visited {
    color: white;
    text-decoration: none;
}

.genre-card:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.genre-count {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.genre-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.genre-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Recent Additions Section */
.recent-additions {
    margin-bottom: 50px;
}

.recent-total {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recent-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.recent-count .big-number {
    color: #4ecdc4;
}

/* Recent Breakdown */
.recent-breakdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 1200px) {
    .recent-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recent-breakdown {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.breakdown-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Adjust padding for mobile */
@media (max-width: 768px) {
    .breakdown-section {
        padding: 25px;
    }
}

.breakdown-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid #f0f0f0;
}

.breakdown-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.breakdown-item:hover {
    background: linear-gradient(90deg, #e9ecef, #dee2e6);
    transform: translateX(5px);
    text-decoration: none;
    color: inherit;
}

.breakdown-item:visited {
    color: inherit;
    text-decoration: none;
}

.breakdown-item:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

.breakdown-count {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ff6b6b;
    min-width: 40px;
    text-align: center;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breakdown-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin-left: 15px;
    text-align: left;
}

/* Call to Action Section */
.cta-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #333;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 30px 0;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ee5a52, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.welcome-footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 300;
}

/* No Data State */
.no-data {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .big-number {
        font-size: 3rem;
    }
    
    .genre-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .recent-breakdown {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .welcome-container {
        padding: 15px;
    }
    
    .welcome-header {
        padding: 30px 15px;
    }
    
    .total-stock, .recent-total, .cta-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 2rem;
    }
    
    .big-number {
        font-size: 2.5rem;
    }
    
    .genre-grid {
        grid-template-columns: 1fr;
    }
    
    .breakdown-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .breakdown-name {
        margin-left: 0;
        text-align: center;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-header,
.stock-summary,
.recent-additions,
.cta-section {
    animation: fadeInUp 0.6s ease-out;
}

.stock-summary {
    animation-delay: 0.1s;
}

.recent-additions {
    animation-delay: 0.2s;
}

.cta-section {
    animation-delay: 0.3s;
}

/* Webkit gradient text effects for frontend */
.welcome-gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    font-weight: bold;
}

.welcome-gradient-blue {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.welcome-gradient-sunset {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.welcome-gradient-ocean {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.welcome-gradient-forest {
    background: linear-gradient(45deg, #96ceb4, #2d5a27);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Webkit text shadow effects */
.welcome-text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.welcome-text-glow {
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Webkit transform effects */
.welcome-transform-rotate {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    display: inline-block;
}

.welcome-transform-scale {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    display: inline-block;
    transition: transform 0.3s ease;
}

.welcome-transform-scale:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* Webkit animation effects */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.welcome-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Webkit filter effects */
.welcome-blur {
    -webkit-filter: blur(1px);
    filter: blur(1px);
    transition: filter 0.3s ease;
}

.welcome-blur:hover {
    -webkit-filter: blur(0px);
    filter: blur(0px);
}

.welcome-sepia {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
}

.welcome-grayscale {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.welcome-grayscale:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

/* Responsive adjustments for webkit effects */
@media (max-width: 768px) {
    /* Disable some webkit effects on mobile for performance */
    .welcome-gradient-text,
    .welcome-gradient-blue,
    .welcome-gradient-sunset,
    .welcome-gradient-ocean,
    .welcome-gradient-forest {
        animation: none;
    }
}