/**
 * DEFAULT THEME
 * Orange/Pink gradient theme using Tailwind CSS
 * 
 * This is the base theme that works with Tailwind utility classes
 */

/* ============================================
   FONT CONFIGURATION
   ============================================ */
@font-face {
    font-family: 'Montserrat';
    src: url('/static/font/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/static/font/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, sans-serif;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Caption styling */
.custom-caption .q-img__content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 8px;
    max-width: 90%;
    margin: 0 auto;
}

/* Details marker */
details summary::-webkit-details-marker {
    display: none;
}

/* ============================================
   GRADIENT UTILITIES - Orange/Pink Brand Colors
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, #f97316, #ec4899);
}

.border-gradient {
    border-image: linear-gradient(135deg, #f97316, #ec4899) 1;
}

.glow-orange {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.15);
}

.glow-pink {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.15);
}

/* ============================================
   BUTTON ENHANCEMENTS
   ============================================ */
.bg-gradient-brand {
    transition: all 0.3s ease;
}

.bg-gradient-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.25), 0 0 60px rgba(236, 72, 153, 0.15);
}

/* ============================================
   CARD STYLES
   ============================================ */
.docs-card,
.support-card,
.guide-card,
.faq-item,
.download-card {
    transition: all 0.3s ease;
}

.docs-card:hover,
.support-card:hover,
.guide-card:hover,
.faq-item:hover,
.download-card:hover {
    transform: translateY(-4px);
    border-color: #f97316;
}

/* ============================================
   LINK STYLES
   ============================================ */
nav a {
    position: relative;
    transition: all 0.2s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #ec4899);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* ============================================
   FORM STYLES
   ============================================ */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}