* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #fff;
    line-height: 1.6;
    background-color: #1a1a1a;
}

.main-container {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('your-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: #fff;
}
#home {
    margin-top: 90px;
    height: 80vh;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/orchestra.jpg') no-repeat center center/cover;
    opacity: 0.5;
    z-index: -1;
}


#home h1,
#home p {
    opacity: 1;
    position: relative; 
    z-index: 1; 
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff7f00;
    cursor: pointer;
    text-transform: uppercase;
}
.logo-img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

.navbar nav {
    margin-left: auto;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar nav ul li a {
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
    position: relative;
}

.navbar nav ul li a:hover {
    color: #ff7f00;
}


section {
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

.content-area {
    background-image: url('../images/orchestra-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.content-area .section-container {
    position: relative;
    z-index: 2;
}

.content-left {
    color: #fff;
    max-width: 600px;

    flex: 1;
}

.content-left h1 {
    font-size: 3.5em;
    color: #ff7f00;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-left p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ccc;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-join {
    background-color: #ff7f00;
    color: #000;
}

.btn-join:hover {
    background-color: #e67300;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.login-form {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px 35px;
    border-radius: 10px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.login-form h2 {
    margin-bottom: 25px;
    color: #ff7f00;
    font-size: 1.8em;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 0.95em;
}

.btn-login {
    background-color: #ff7f00;
    color: #000;
    width: 100%;
    margin-top: 10px;
}

.signup-link {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}

.signup-link a {
    color: #ff7f00;
    font-weight: bold;
}

.login-with {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #ccc;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #ff7f00;
    font-size: 1.8em;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #e67300;
}

.about-section,
.services-section,
.contact-section {
    text-align: center;
}

.about-section h2,
.services-section h2,
.contact-section h2 {
    font-size: 2.5em;
    color: #ff7f00;
    margin-bottom: 30px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    color: #ccc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: #ff7f00;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    color: rgb(25, 25, 25);
    margin-bottom: 20px;
    font-size: 1.8em;
}

.service-card p {
    color: rgb(25, 25, 25);
    font-size: 1.1em;
    line-height: 1.6;
}

.service-card:hover {
    cursor: pointer;
    transform: translateY(-10px);
    transform: translate3d(0, 0, 1);
    box-shadow: rgb(55, 54, 54)  0px 0px 20px 5px;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    background: rgba(255, 127, 0, 0.05);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 25px;
    border: 2px solid rgba(255, 127, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.contact-form input {
    height: 70px;
}

.contact-form textarea {
    height: 250px;
    resize: vertical;
    min-height: 250px;
    font-family: Arial, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff7f00;
    background: rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.btn-send{
    background-color: #ff7f00;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;

}
@media (max-width: 992px) {
.content-left{
    max-width: 100%;
    text-align: center;
}
    .menu-toggle {
        display: block;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
    }

    .navbar nav.active {
        display: block;
    }

    .navbar nav ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar nav ul li {
        margin: 15px 0;
    }

    .content-area .section-container {
        flex-direction: column;
        text-align: center;
    }

    .content-left p {
        margin: 0 auto 30px;
    }

    section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .service-card {
        width: 100%;
        padding: 15px;
    }
    .contact-form {
        padding: 15px;
    }
    .logo {
        font-size: 2em;
    }

    .content-left h1 {
        font-size: 2.5em;
    }

    section {
        padding: 80px 0;
    }

    .section-container {
        padding: 0 15px;
    }
}
@media (max-width: 400px) {
    .logo {
        font-size: 1.5em;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    .service-card {
        width: 100%;
        padding: 10px;
    }
}