/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(31, 136, 61);
    --secondary-color: #f4f4f4;
    --dark-color: #222;
    --light-color: #fff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f0f0f0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    background-color: rgba(31, 136, 61, 0.8);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.logo a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-color);
    letter-spacing: 2px;
}

.logo a:hover {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--light-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('background_synth_001.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-cta {
    margin-top: 40px;
}

/* Section Styles */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 25%;
}

/* Bio Section */
.bio-section {
    background-color: var(--light-color);
}

.bio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.bio-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.bio-image:hover img {
    transform: scale(1.05);
}

.bio-text {
    flex: 1;
    min-width: 300px;
}

.bio-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Music Section */
.music-section {
    background-color: #111;
    color: var(--light-color);
}

.music-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.music-image {
    flex: 1;
    min-width: 300px;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.music-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.music-player {
    flex: 1;
    min-width: 300px;
}

.music-player iframe {
    width: 100%;
    height: 380px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--dark-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--primary-color) !important;
}

.form-group input::placeholder, ::placeholder {
    color: var(--light-color) !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(31, 136, 61, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.thanks-message {
    display: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background-color: #f5f5f5; */
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(
    --transition);
}

.socials a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 30px 5%;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.time {
    font-size: 1.2rem;
    font-family: monospace;
    letter-spacing: 2px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 80px 5%;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .music-image {
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .bio-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    section {
        padding: 60px 5%;
    }
}
