/* 
   Theme: Thera Dark Premium
   Colors: Dark(#1a1a1a), Gold(#d4af37), White(#fff), Gray(#888)
   Font: Outfit
*/

:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --primary-gold: #cea72e;
    --primary-gold-hover: #b39025;
    --border-color: #333;
    --font-main: 'Work Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: #fff;
}

/* Utility Classes */
.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;
}

.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }

/* Global Styles from View Files */
.hero-video-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* Prose styles for dynamic pages */
.prose h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.prose ul, .prose ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    color: #cea72e;
    text-decoration: underline;
}

.prose img {
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

/* Brand Project Section Styles */
.brand-bg.active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Projects Filtering */
.project-card.hidden-card {
    display: none !important;
}

/* Project Detail Gallery */
.gallery-grid::-webkit-scrollbar {
    display: none;
}