/* Van Gogh Museum - Artistic Design Style */

:root {
    /* Van Gogh inspired color palette */
    --vangogh-yellow: #FFD700;
    --vangogh-blue: #4A90E2;
    --vangogh-orange: #FF6B35;
    --vangogh-green: #2ECC71;
    --vangogh-red: #E74C3C;
    --vangogh-purple: #9B59B6;
    --vangogh-teal: #4ECDC4;
    
    /* Neutral colors */
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--light-bg);
    overflow-x: hidden;
}

/* Artistic Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.section-title-artistic {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.highlight-yellow {
    color: var(--vangogh-yellow);
    position: relative;
}

.highlight-blue {
    color: var(--vangogh-blue);
}

.highlight-red {
    color: var(--vangogh-red);
}

.highlight-green {
    color: var(--vangogh-green);
}

.lead-artistic {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Artistic Navigation */
.navbar-artistic {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2c3e50 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.navbar-brand-artistic {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vangogh-yellow) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.8rem;
}

.navbar-nav-artistic {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link-artistic {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-artistic:hover {
    color: var(--vangogh-yellow) !important;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link-artistic.active {
    color: var(--vangogh-yellow) !important;
    background: rgba(255, 215, 0, 0.15);
}

.nav-link-cta {
    background: var(--vangogh-yellow) !important;
    color: var(--dark-bg) !important;
    font-weight: 600;
}

.nav-link-cta:hover {
    background: #ffed4e !important;
    color: var(--dark-bg) !important;
    transform: scale(1.05);
}

.navbar-toggler-artistic {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
}

.navbar-toggler-artistic span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--vangogh-yellow);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section - Artistic */
.hero-artistic {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 2rem 0;
    overflow: hidden;
}

.hero-artistic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-warning {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Artistic Frame for Images */
.artistic-frame {
    position: relative;
    padding: 20px;
    background: var(--vangogh-yellow);
    border-radius: 10px;
    transform: rotate(-2deg);
    box-shadow: 20px 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.artistic-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.frame-content {
    background: white;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.frame-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Brush Strokes Effect */
.hero-brush-strokes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.3) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 107, 53, 0.3) 50%, transparent 70%);
    pointer-events: none;
}

/* Artistic Buttons */
.btn-artistic {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-artistic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-artistic:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-art {
    background: var(--vangogh-yellow);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary-art:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    color: var(--dark-bg);
}

.btn-outline-art {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-art:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Feature Cards - Artistic */
.featured-section {
    background: var(--light-bg);
}

.artistic-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.artistic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.artistic-card:hover::before {
    left: 100%;
}

.artistic-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: var(--vangogh-yellow);
}

.card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--vangogh-yellow);
    color: var(--dark-bg);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-star {
    background: var(--vangogh-orange);
    color: white;
}

.card-title-artistic {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-text-artistic {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-link-artistic {
    color: var(--vangogh-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-link-artistic:hover {
    color: var(--vangogh-orange);
    transform: translateX(5px);
}

/* Masterpieces Section */
.masterpieces-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    transform: rotate(-1deg);
}

.artwork-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 5px solid white;
}

.artwork-item:nth-child(2) {
    transform: rotate(2deg) translateY(20px);
}

.artwork-item:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

.artwork-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Vincent Section */
.about-vincent-section {
    background: var(--light-bg);
}

.info-card-artistic {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--vangogh-yellow);
}

.info-card-artistic:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.info-card-artistic i {
    font-size: 3rem;
    color: var(--vangogh-yellow);
    margin-bottom: 1rem;
}

.info-card-artistic h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* What's On Section */
.whats-on-section {
    background: white;
}

.event-card-artistic {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.event-card-artistic:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: var(--vangogh-yellow);
}

.event-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--vangogh-yellow);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-artistic:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--vangogh-blue);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-content h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section-artistic {
    background: linear-gradient(135deg, var(--vangogh-blue) 0%, var(--vangogh-purple) 100%);
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer - Artistic */
.footer-artistic {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--vangogh-yellow);
    margin-bottom: 1rem;
}

.footer-heading {
    font-family: var(--font-display);
    color: var(--vangogh-yellow);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-text {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--vangogh-yellow);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
}

.social-links-artistic {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-links-artistic a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-artistic a:hover {
    background: var(--vangogh-yellow);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-artistic {
        font-size: 2rem;
    }
    
    .artwork-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-artistic {
        width: 100%;
    }
}

/* Animations */
@keyframes brushStroke {
    0% { transform: translateX(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) rotate(-45deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--vangogh-yellow);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

