/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    margin: auto;

}

header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: bold;
    float: left;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f59e0b;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/1600x600/?classical,dance,music') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    background: #fbbf24;
    color: #1a1a1a;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #f59e0b;
}

/* About */
.about {
    padding: 60px 0;
    text-align: center;
}

/* Performances */
.performances {
    background: #f3f4f6;
    padding: 60px 0;
    text-align: center;
}

.performance-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}
h4{
    padding: 60px 0;
    text-align: center;
    top: 50px;
    left: 100%;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 300px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Gallery */
.gallery {
    padding: 60px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Skills */
.skills {
    padding: 60px 0;
    text-align: center;
}

.skill-bars {
    max-width: 600px;
    margin: auto;
}

.skill {
    margin-bottom: 20px;
}

.skill h3 {
    margin-bottom: 5px;
    text-align: left;
}

.bar {
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
}

.bar span {
    display: block;
    height: 100%;
    background: #fbbf24;
    width: 0;
    animation: fillBar 1.5s forwards;
}


@keyframes fillBar {
    from { width: 0; }
    to { width: 100%; }
}

/* Contact */
.contact {
    padding: 60px 0;
    background: #f3f4f6;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact button {
    border: none;
    cursor: pointer;
}
body2 {
    background-color: #0e0e0e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
/* Container2 layout */
.container2 {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Text1 section */
.text-section1 {
    max-width: 400px;
}

.text-section2 h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-section2 p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button2 styling */
.button2 {
    display: inline-block;
    background-color: #2ecc71;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.button2:hover {
    background-color: #27ae60;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.7);
}

/* Image2 styling */
.image-section2 img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Responsive */
@media(max-width:768px){
    header nav {
        float: none;
        text-align: center;
        margin-top: 15px;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .performance-cards {
        flex-direction: column;
        gap: 20px;
    }
}
