/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-weight: 700;
}


/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    margin: 0;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.tagline {
    font-size: 0.9rem;
    color: #ccc;
    margin: 5px 0 10px 0;
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #667eea;
}

/* Hero Section */
#hero {
    background: url('https://via.placeholder.com/1200x600/302b63/ffffff?text=DreynVale!') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

#hero .container {
    position: relative;
    z-index: 1;
}

#hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Main sections */
main {
    padding: 60px 0;
}

section {
    margin-bottom: 60px;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #667eea;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
}

/* Intro section */
#intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px 0;
}

/* About section */
#about {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    border-radius: 20px;
}

/* Music section */
#music {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 0;
    border-radius: 20px;
}

.platforms {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.platforms li {
    margin: 10px 20px;
}

.platforms a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 10px 20px;
    border: 2px solid #667eea;
    border-radius: 25px;
}

.platforms a:hover {
    color: #fff;
    background: #667eea;
}

.tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.track {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.track:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.track iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
    margin-top: 15px;
}

.track p {
    color: #ccc;
    margin-bottom: 20px;
}

.listen-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.listen-btn:hover {
    transform: scale(1.05);
}

/* Contact section */
#contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    border-radius: 20px;
    text-align: center;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 15px;
    color: #fff;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #555;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    #hero h2 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.1rem;
    }

    .tracks {
        grid-template-columns: 1fr;
    }

    .platforms {
        flex-direction: column;
        align-items: center;
    }

    .platforms li {
        margin: 5px 0;
    }
}

/* Professional track styles */
.tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.track {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.track-cover {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.track-info {
    width: 100%;
}

.track h3 {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
}

.track-meta {
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-style: italic;
}

.track p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.track figure {
    margin-top: 15px;
    width: 100%;
}

.track figcaption {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.track audio {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}

.track a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
}

.track a:hover {
    text-decoration: underline;
}

/* Icons for platforms */
.platforms li a i {
    margin-right: 10px;
    font-size: 1.2em;
}

figure {
    margin: 0;
}
figcaption {
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
}   
audio {
    width: 100%;
    outline: none;
    border-radius: 5px;
}
.track a {
    display: block;
    margin-top: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}
.track a:hover {
    text-decoration: underline;
}

/* ============================
   DREYNVALE BRAND / LOGO
============================ */

.dv-brand {
    margin: 0;
    padding: 0;
}

.dv-brand__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.dv-brand__link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Logo image */
.dv-brand__logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Brand text */
.dv-brand__name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1;
    position: relative;
}

/* Subtle premium accent */
.dv-brand__name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb742, #fb8c00);
    transition: width 0.3s ease;
}

.dv-brand__link:hover .dv-brand__name::after {
    width: 100%;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
    .dv-brand__logo {
        height: 36px;
    }

    .dv-brand__name {
        font-size: 1.4rem;
    }
}
