body {
    background-color: #000000;
    color: #ffffff;
}
#contentBorder, #contentFooter {
    position: relative; /* Keeps the child trapped inside */
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #f3b954;
    border-radius: 15px; /* Rounds all 4 corners equally */
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#contentFooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* Spans the full width of the parent */
    background-color: #f3b954;
    color: #000000;
    border-radius: 0;
    margin-bottom: 0;
    text-align: center;
}

.textHighLight {
  color: #f3b954;
}






/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #030d1a;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* PALETTE VARIABLES */
:root {
    --gold: #cca453;
    --light-gold: #e8d08d;
    --dark-blue: #021226;
    --border-gold: rgba(204, 164, 83, 0.4);
}

/* CONTAINER */
.container {
    max-width: 900px;
    width: 100%;
    background: linear-gradient(to bottom, #02162e, #010a14);
    border: 3px solid var(--gold);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* HEADER SECTION */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.header-left {
    flex: 1;
    padding-right: 20px;
}

.decorative-ornament {
    color: var(--gold);
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.main-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 3.5rem;
    line-height: 1;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.sub-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 2.2rem;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.featuring {
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 5px;
    position: relative;
    margin-bottom: 15px;
}

.featuring::before, .featuring::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15%;
    height: 1px;
    background-color: var(--gold);
}
.featuring::before { left: 5%; }
.featuring::after { right: 5%; }

.artists {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    color: #e0e0e0;
    letter-spacing: 1.5px;
    line-height: 2;
    margin-bottom: 25px;
}

.artists span {
    color: var(--gold);
    margin: 0 5px;
}

.orchestra-tag {
    color: var(--gold);
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 2px;
    font-weight: bold;
}

/* HEADER RIGHT (HERO IMAGE & LOGO) */
.header-right {
    position: relative;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.rm-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    color: var(--gold);
}

.rm-logo i {
    font-size: 1.2rem;
    display: block;
    margin-bottom: -5px;
}

.rm-logo span {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* BIOGRAPHY SECTION */
.bio-content {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 40px;
}

.bio-content p {
    margin-bottom: 20px;
    text-indent: 10px;
}

.gold-text {
    color: var(--light-gold);
    font-style: normal;
}

/* DEMO VIDEOS */
.videos-section {
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    background-color: rgba(2, 18, 38, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.thumbnail-wrapper {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.thumbnail-wrapper img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 2.5rem;
    opacity: 0.85;
    transition: transform 0.2s, opacity 0.2s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    color: var(--light-gold);
}

.video-card h4 {
    color: var(--gold);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.video-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #b0b0b0;
    text-decoration: none;
    display: inline-block;
    word-break: break-all;
}

.video-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* CONTACT BAR */
.contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 20px 0;
    margin-bottom: 30px;
}

.contact-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
}

.middle-item {
    border-left: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
    justify-content: center;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #e0e0e0;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--light-gold);
}

/* FOOTER SECTION */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.footer-domain {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 6px;
    text-decoration: none;
    font-weight: bold;
}

.footer-domain:hover {
    color: var(--light-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    background-color: #0d1b2e;
    border: 1px solid var(--border-gold);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background 0.2s;
}

.social-icons a:hover {
    background-color: var(--gold);
    color: #021226;
}

/* RESPONSIVE LAYOUT FOR MOBILE DEVICES */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }
    
    .header-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .middle-item {
        border-left: none;
        border-right: none;
    }
    
    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}