/* --- Variables & Reset --- */
:root {
    --primary-color: #c5a059; /* Muted Gold/Bronze */
    --text-color: #333333;    /* Dark Grey */
    --bg-color: #ffffff;      /* White */
    --bg-alt: #f9f9f7;        /* Very light cream/beige */
    --font-header: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Typography & Buttons --- */
h1, h2, h3 {
    font-family: var(--font-header);
    margin-bottom: 1rem;
    font-weight: 400;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

/* Small elegant line under headers */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    font-family: var(--font-header);
    letter-spacing: 1px;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-dark {
    background: var(--text-color);
    border-color: var(--text-color);
}

.btn-dark:hover {
    background: transparent;
    color: var(--text-color);
}

/* --- Layout Utilities --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* --- Navigation --- */
.navbar {
    background: #fff;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('violin-photo.jpg'); 
    /* IMPORTANT: Ensure 'violin-photo.jpg' is in your folder */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 2px;
    box-shadow: 20px 20px 0px var(--bg-alt);
}

/* --- Media Section --- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- CV & Contact --- */
.cv-container {
    text-align: center;
}

.cv-container p {
    margin-bottom: 30px;
}

.contact-container {
    max-width: 600px;
    text-align: center;
}

.contact-form {
    text-align: left;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- Footer --- */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    
    .about-grid { grid-template-columns: 1fr; }
    
    .menu-toggle { display: block; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff; /* Ensure background is solid white */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 1000; /* FORCE it to be on top of everything */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }
    /* --- Direct Contact Styling --- */
.contact-card {
    background: #fff;
    padding: 50px 30px;
    margin: 40px auto 0;
    max-width: 500px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Soft elegant shadow */
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px); /* Subtle lift effect */
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.email-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color); /* Gold underline */
    padding-bottom: 2px;
    margin-bottom: 20px;
}

.email-link:hover {
    color: var(--primary-color);
    border-bottom-color: transparent;
}

.response-time {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}
}