/* Filip Merčep - Elegant Minimalist Design - Part 1 */

/* CSS Variables */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c9a66b;
    --text-color: #2c2c2c;
    --text-light: #666;
    --bg-color: #fafaf8;
    --white: #ffffff;
    --border-color: #e5e5e0;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Crimson Pro', serif;
    --font-sans: 'Archivo', sans-serif;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Crimson+Pro:wght@300;400;500;600&family=Archivo:wght@300;400;500;600&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 3.5rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

p { margin-bottom: 1.2rem; }

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f2ed 0%, #e8e4dc 100%);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 166, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Buttons */
.btn {
    font-family: var(--font-sans);
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-text {
    background: none;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    font-weight: 400;
}

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

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin: 1.5rem auto 0;
}

/* Featured News */
.featured-news {
    background: var(--white);
    padding: 4rem 0;
}

.featured-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.featured-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.featured-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 1rem;
}

/* Filip Merčep - Elegant Minimalist Design - Part 2 */

/* Concerts */
.concerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.concert-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

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

.concert-date {
    text-align: center;
    min-width: 70px;
}

.date-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1;
}

.date-month {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.date-year {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.concert-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.concert-venue {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.concert-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.concert-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter */
.newsletter {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.news-item {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: var(--shadow);
}

.news-date {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f5f2ed 0%, #e8e4dc 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.project-media {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-color);
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.project-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 1rem;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-input,
.contact-textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

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

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Messages */
.messages-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1000;
    max-width: 400px;
}

.message {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-left: 3px solid var(--secondary-color);
    box-shadow: var(--shadow);
    animation: slideInRight 0.4s ease;
}

.message.success {
    border-left-color: #4caf50;
}

.message.error {
    border-left-color: #f44336;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 5rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .concerts-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .concert-card {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Additional CSS for About Page CMS Content - Add to existing style.css */

/* About Page Enhancements */
.about-text .intro-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.about-text .biography-section {
    margin-top: 2rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Highlight Box Enhancements */
.highlight-box {
    background: var(--bg-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.highlight-box li:last-child {
    border-bottom: none;
}

.award-desc,
.edu-details,
.ensemble-role,
.ensemble-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    font-style: italic;
}

/* Video Container Fix for YouTube */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* No Projects Message */
.no-projects {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Collaborations Section */
.collaborations {
    background: var(--bg-color);
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.collab-card {
    background: var(--white);
    padding: 2.5rem;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

.collab-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.collab-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Project Highlight Section */
.project-highlight {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0;
}

.highlight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Concerts Page Enhancements */
.concerts-list {
    max-width: 900px;
    margin: 0 auto;
}

.concert-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.concert-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.concert-date-block {
    text-align: center;
    min-width: 90px;
    padding: 1rem;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.date-time {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.concert-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.venue-info {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.concert-description {
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.past-concerts-section {
    background: var(--bg-color);
}

.past-concert {
    opacity: 0.8;
}

.no-concerts {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .concert-item {
        flex-direction: column;
    }
    
    .concert-date-block {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .collab-grid {
        grid-template-columns: 1fr;
    }
}