/* ================================================
   BROOKE MAJOR - PREMIUM CONTEMPORARY ARTIST WEBSITE
   Modern, Clean, Professional Design System
   ================================================ */

/* ROOT VARIABLES */
:root {
    /* Colors */
    --primary-dark: #1a1a1a;
    --primary-light: #2c2c2c;
    --accent-gold: #c9a961;
    --accent-gold-light: #d4af37;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-muted: #666666;
    --border-light: #e0e0e0;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ================================================
   GLOBAL STYLES
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

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

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold-light);
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* ================================================
   NAVIGATION BAR
   ================================================ */

.navbar-custom {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.navbar-custom .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg-light) !important;
    transition: transform var(--transition-fast);
}

.navbar-custom .navbar-brand:hover {
    transform: scale(1.05);
}

.brand-accent {
    color: var(--accent-gold);
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-gold) !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-fast);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.translate-widget {
    margin-left: var(--spacing-md);
}

/* ================================================
   HERO SECTIONS
   ================================================ */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    z-index: -1;
}

.hero-section.hero-with-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.hero-with-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.4);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: var(--bg-light);
    z-index: 1;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    color: var(--bg-light);
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
    color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.btn-light:hover {
    background-color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ================================================
   CARDS
   ================================================ */

.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: var(--spacing-lg);
}

.card-title {
    font-family: var(--font-display);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================================================
   SECTIONS
   ================================================ */

section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-lg);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   GALLERY GRID
   ================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: var(--bg-light);
    text-align: center;
}

.gallery-overlay-text h3 {
    color: var(--bg-light);
    margin-bottom: var(--spacing-sm);
}

/* ================================================
   FILTERS
   ================================================ */

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xxl);
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--border-light);
    background: transparent;
    color: var(--text-dark);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* ================================================
   FORMS
   ================================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.form-control,
.form-select,
textarea.form-control {
    border: 2px solid var(--border-light);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ================================================
   FOOTER
   ================================================ */

.footer-section {
    background: var(--primary-dark);
    color: var(--bg-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-heading {
    color: var(--bg-light);
    font-family: var(--font-display);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links a {
    transition: transform var(--transition-fast);
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* ================================================
   STATS SECTION
   ================================================ */

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xxl) 0;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: 8px;
    border-top: 3px solid var(--accent-gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* ================================================
   TESTIMONIALS / AWARDS
   ================================================ */

.award-item {
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-left: 4px solid var(--accent-gold);
    border-radius: 6px;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-normal);
}

.award-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.award-year {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-title {
    color: var(--text-dark);
    font-weight: 600;
    margin: var(--spacing-sm) 0;
}

.award-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-custom .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 40vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .filter-buttons {
        gap: var(--spacing-sm);
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .section-header h2::after {
        width: 60px;
    }

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ================================================
   UTILITIES
   ================================================ */

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

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }
}

.section-spacing {
    padding: var(--spacing-xxl) 0;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.divider {
    height: 1px;
    background: var(--border-light);
    margin: var(--spacing-xxl) 0;
}

.text-accent {
    color: var(--accent-gold);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark-custom {
    background-color: var(--primary-dark);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
