/* COLOR PALETTE & RESET */
:root {
    --bg-dark: #121212;
    --card-dark: #1e1e1e;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --accent-pink: #f4a5c0; /* Pink matching your business card */
    --accent-pink-hover: #e382a4;
    --accent-gold: #d4af37;
    --accent-gold-hover: #e5be48;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.site-wrapper {
    max-width: 1200px;
    width: 100%;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-pink);
    letter-spacing: 1px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.2s;
}

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

/* HEADLINE */
.hero-headline {
    text-align: center;
    margin: 25px 0;
}

.hero-headline h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* MAIN LAYOUT GRID */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* LEFT COLUMN */
.column-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 380px;
}

/* VIDEO EMBED CONTAINER */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

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

/* RIGHT COLUMN */
.column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--card-dark);
    padding: 25px;
    border-radius: 12px;
}

.about-section h2, .repertoire-section h3, .clips-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-pink);
    margin-bottom: 10px;
}

.rep-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rep-grid strong {
    color: var(--text-light);
}

/* PERFORMANCE CLIPS */
.clips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.clip-card {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.small-video {
    margin-bottom: 5px;
}

/* FOOTER */
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
    border-radius: 12px;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--accent-pink);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* QUICK INQUIRY FORM */
.quick-inquiry {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quick-inquiry input[type="email"] {
    padding: 12px 16px;
    border: 1px solid #333;
    background: #121212;
    color: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quick-inquiry input[type="email"]:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.quick-inquiry button {
    background: linear-gradient(135deg, #d4af37, #b38b2d);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.quick-inquiry button:hover {
    background: linear-gradient(135deg, #e5be48, #c49a38);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

.quick-inquiry button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* RESPONSIVE (MOBILE) ADJUSTMENTS */
@media (max-width: 850px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .quick-inquiry {
        width: 100%;
        flex-direction: column;
    }
    .quick-inquiry input[type="email"],
    .quick-inquiry button {
        width: 100%;
    }
    .clips-grid {
        grid-template-columns: 1fr;
    }
}
