/*
Theme Name: ST.ART Theme
Theme URI: https://startwithsterling.com
Author: Sterling
Author URI: https://startwithsterling.com
Description: A custom WordPress theme for ST.ART with Sterling.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: start-theme
Tags: accessibility-ready, block-patterns, block-styles, custom-background, custom-colors, custom-header, custom-logo, footer-widgets, full-site-editing, full-width-template, post-formats, sticky-post, style-variations, template-editing, theme-options
*/

@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Permanent+Marker&family=Grenze+Gotisch:wght@400;700&display=swap');

body { 
    background-color: #2d1b0e; 
    color: #ffedd5; 
    font-family: 'Courier Prime', monospace; 
}

.golden-oak {
    background-color: #d4a373;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(139,69,19,0.05) 0px, rgba(139,69,19,0.05) 2px, transparent 2px, transparent 8px), linear-gradient(to bottom right, #deb887, #d2b48c);
    background-blend-mode: overlay, multiply, normal;
    box-shadow: inset 0 0 40px rgba(139,69,19,0.3);
    color: #4a3728;
}

.mahogany-wood { 
    background-color: #6d1c1c; 
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E"), repeating-linear-gradient(170deg, rgba(0,0,0,0.2) 0px, rgba(0,0,0,0.2) 1px, transparent 1px, transparent 10px), linear-gradient(to bottom right, #8b0000, #4b0000); 
    background-blend-mode: overlay, multiply, normal; 
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 5px 5px 20px rgba(0,0,0,0.4); 
    color: #fff; 
    border-radius: 24px; 
}

.rustic-wood { 
    background-color: #8b7355; 
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.2'/%3E%3C/svg%3E"), repeating-linear-gradient(45deg, rgba(0,0,0,0.1) 0px, rgba(0,0,0,0.1) 2px, transparent 2px, transparent 8px), linear-gradient(to bottom right, #a0522d, #5c4033); 
    background-blend-mode: overlay, multiply, normal; 
    box-shadow: inset 0 0 40px rgba(0,0,0,0.6), 5px 5px 15px rgba(0,0,0,0.5); 
    color: #f5deb3; 
    border-radius: 24px; 
}

.logo-font-st { font-family: 'Grenze Gotisch', serif; font-weight: 700; text-transform: none; }
.logo-font-art { font-family: 'Permanent Marker', cursive; }
.marker-font { font-family: 'Permanent Marker', cursive; }

.text-chrome {
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 40%, #999999 50%, #e0e0e0 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.5));
}

.text-cyan-electric {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.social-btn { transition: all 0.3s ease; }
.social-btn:hover { transform: translateY(-5px) scale(1.1); filter: brightness(1.2); }

@keyframes flame-flicker { 
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px #f97316); } 
    25% { transform: scale(1.1) rotate(2deg); filter: drop-shadow(0 0 15px #ff5722); opacity: 0.9; } 
    50% { transform: scale(0.95) rotate(-1deg); filter: drop-shadow(0 0 10px #f97316); opacity: 1; } 
    75% { transform: scale(1.15) rotate(1deg); filter: drop-shadow(0 0 20px #ff9800); opacity: 0.85; } 
}

@keyframes slow-flicker { 
    0%, 100% { filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.4)); opacity: 1; transform: scale(1); } 
    25% { filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.7)); opacity: 0.85; transform: scale(1.05); } 
    50% { filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.5)); opacity: 0.95; transform: scale(1.1); } 
    75% { filter: drop-shadow(0 0 25px rgba(255, 152, 0, 0.8)); opacity: 0.9; transform: scale(1.05); } 
}

@keyframes draw-letter-rtl { 
    0% { opacity: 0; transform: translateX(50px) scale(0.8); filter: blur(10px); } 
    100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); } 
}

.animate-flame-flicker { animation: flame-flicker 1.5s infinite alternate; }
.animate-slow-flicker { animation: slow-flicker 4s infinite alternate ease-in-out; }

.responsive-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.responsive-scale {
    width: 100%;
    height: auto;
    display: block;
}

/* Tab Navigation Styles */
.tab-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    border-bottom: 2px solid #8b0000;
}
.tab-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}
.tab-nav li {
    position: relative;
}
.tab-nav a {
    display: block;
    padding: 0.5rem 1.5rem;
    background: #8b7355;
    background-image: linear-gradient(to bottom, #a0522d, #5c4033);
    border: 2px solid #3e2723;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 6px rgba(0,0,0,0.4);
    font-family: 'Permanent Marker', cursive;
    color: #f5deb3;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    transition: all 0.2s ease;
}
.tab-nav a:hover, .tab-nav li.current-menu-item > a, .tab-nav a.active {
    background-image: linear-gradient(to bottom, #8b4513, #4e342e);
    transform: translateY(2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 3px rgba(0,0,0,0.4);
    color: #fff;
    border-bottom: 2px solid #3e2723;
}

/* Dropdown Styles */
.tab-nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d1b0e;
    border: 2px solid #8b0000;
    border-radius: 0 0 8px 8px;
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    z-index: 100;
}
.tab-nav li:hover > ul {
    display: flex;
}
.tab-nav li ul li {
    width: 100%;
}
.tab-nav li ul a {
    border-radius: 0;
    border-bottom: 1px solid #4b0000;
    padding: 0.75rem 1.5rem;
}
.tab-nav li ul a:hover {
    border-bottom: 1px solid #4b0000;
    background: #4b0000;
}
.tab-nav li ul li:last-child a {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}
