* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Poppins', system-ui, sans-serif;
    background: #fef7e8;
    color: #2d2a24;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd966;
}

.logo span {
    color: white;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffb347;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
                url('../images/jay-bg.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 5rem;
    letter-spacing: 4px;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 28px;
    background: #ffb347;
    color: #2d2a24;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn:hover {
    background: #ffa01e;
    transform: scale(1.05);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 3rem 0 2rem;
    border-left: 6px solid #ffb347;
    padding-left: 1rem;
    display: inline-block;
    width: auto;
}

.bio-card {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.album-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.album-table th,
.album-table td {
    border: 1px solid #e0c8a0;
    padding: 12px 16px;
    text-align: center;
}

.album-table th {
    background: #2d2a24;
    color: #ffd966;
    font-weight: bold;
    letter-spacing: 1px;
}

.album-table tr:hover {
    background: #fff3e0;
}

.song-list {
    list-style-type: square;
    background: white;
    padding: 2rem 3rem;
    border-radius: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.song-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    border-bottom: 1px dashed #ddd;
}

.message-form {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: inherit;
    transition: 0.2s;
}

input:focus, textarea:focus {
    border-color: #ffb347;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,180,71,0.2);
}

.submit-btn {
    background: #2d2a24;
    color: #ffd966;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #ffb347;
    color: #1e1a2f;
}

.footer {
    background: #2d2a24;
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}