/* Custom CSS for Dana Locatelli Portfolio */

:root {
    /* Modern color palette - sleek and youthful */
    --primary-color: #ec4899; /* Pink */
    --primary-hover: #db2777;
    --secondary-color: #1e293b; /* Slate */
    --accent-color: #f59e0b; /* Amber for highlights */
    --success-color: #10b981; /* Emerald */
    --error-color: #ef4444; /* Red */
    
    /* Typography */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    /* Backgrounds */
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    
    /* Shadows */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Light mode colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --footer-bg: #1e293b;
    --footer-text: #f8fafc;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border-color: #334155;
    --card-bg: #1e293b;
    --footer-bg: #020617;
    --footer-text: #f8fafc;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

.navbar-brand {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background-color: var(--bg-primary) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-primary) !important;
}

.navbar-brand .text-primary {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border-color: var(--border-color);
}

.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(236, 72, 153, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

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

.card-body {
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.card-title {
    color: var(--text-primary);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* Show Cards */
.show-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.show-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.8), rgba(138, 43, 226, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.show-overlay i {
    color: white;
    font-size: 2rem;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats */
.stats-section {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.stat-percent {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer */
.footer-section {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-section h6 {
    color: var(--footer-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--footer-text);
    opacity: 0.8;
}

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section hr {
    border-color: var(--border-color);
}

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

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

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

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Modal Styling */
.modal-content {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-bottom: 1px solid var(--border-color);
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.modal-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

/* Form Styling */
.form-control {
    border-radius: 25px;
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-select {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.form-select:focus {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}

/* Search and Filter Section */
.search-filter-container {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.search-filter-container .form-control,
.search-filter-container .form-select {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.search-filter-container .form-control:focus,
.search-filter-container .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 72, 153, 0.25);
}

/* Simple pink outline buttons for shows */
.btn-pink-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pink-outline:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-pink-outline:focus {
    box-shadow: 0 0 0 0.2rem rgba(236, 72, 153, 0.25);
}

/* Sleek Show Details Modal */
.show-detail-sleek {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.show-detail-image {
    text-align: center;
    margin-bottom: 1rem;
}

.main-show-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.show-detail-info {
    text-align: center;
    margin-bottom: 2rem;
}

.show-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.show-detail-role {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.show-detail-theater {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.show-detail-dates {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.show-detail-description {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.show-detail-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-action i {
    font-size: 1.5rem;
}

.btn-action span {
    font-size: 0.9rem;
}

.btn-video {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-video:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(238, 90, 36, 0.3);
}

.btn-highlight {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: white;
}

.btn-highlight:hover {
    background: linear-gradient(135deg, #ff9ff3, #feca57);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 202, 87, 0.3);
}

.btn-program {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    color: white;
}

.btn-program:hover {
    background: linear-gradient(135deg, #0abde3, #48dbfb);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 219, 251, 0.3);
}

.btn-gallery {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: white;
}

.btn-gallery:hover {
    background: linear-gradient(135deg, #10ac84, #1dd1a1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 209, 161, 0.3);
}

/* Modal styling */
.modal-xl {
    max-width: 800px;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-weight: 700;
    color: var(--text-primary);
}

/* Dark mode support */
[data-theme="dark"] .main-show-image {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .btn-action {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .modal-content {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Shows page specific styling */
.shows-page .hero-section {
    background: #ffffff;
    color: #333333;
}

.shows-page .hero-section::before {
    display: none;
}

/* Remove text shadows */
.shows-page h1,
.shows-page h2,
.shows-page h3,
.shows-page p,
.shows-page .hero-title,
.shows-page .hero-subtitle {
    text-shadow: none !important;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-control {
    margin-bottom: 1rem;
}

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

/* Navigation Tabs */
.nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.nav-tabs .nav-link {
    color: var(--text-dark);
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

/* Alert Styling */
#alertContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    pointer-events: none;
}

#alertContainer .alert {
    pointer-events: auto;
}

.alert {
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(255, 105, 180, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.1);
    border-color: #0dcaf0;
    color: #0dcaf0;
} 