* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */

.hero {
    background-color: black;
    background-image: url("assets/background.png");
    background-size: cover;
    background-position: center;
    color: white;
}

main {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    width: 70vw;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
}



.hero h1 strong {
    color: #61c7ff;
    font-weight: 900;
}

/* Scroll Separator */
.scroll-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 20px 0;
    width: 100%;
    gap: 5px;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 2px;
    margin-top: 6px;
    animation: scroll-wheel 1.5s infinite;
}

.scroll-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    margin-top: -2px;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* Artists Section */
.artists {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #000305;
}

.artists-header {
    text-align: center;
    margin-bottom: 30px;
}

.artists-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.artists-header h2 span {
    color: #61c7ff;
}

.artists-header p {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 25px;
}

.cards-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin-top: 25px;
    perspective: 1500px;
}

.card {
    position: absolute;
    width: 350px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid #61c7ff;
    transition: all 0.5s ease;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.card-left {
    transform: translateX(-280px) translateZ(-250px) rotateY(35deg);
    z-index: 1;
    opacity: 0.7;
    filter: brightness(0.6);
}

.card-center {
    z-index: 3;
    transform: scale(1.05) translateZ(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-center .card-overlay {
    background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.6));
}

.card-right {
    transform: translateX(280px) translateZ(-250px) rotateY(-35deg);
    z-index: 1;
    opacity: 0.7;
    filter: brightness(0.6);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    z-index: 3;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-center .card-info {
    opacity: 1;
}

.card-info h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #000305;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.about-left {
    position: relative;
    width: 600px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-left img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(10px);
}

.about-right {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.about-right h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-align: left;

}

.about-right h2 span {
    color: #61c7ff;
    font-weight: 800;
}

.about-right p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 25px;
}

/* Responsive About Section */
@media (max-width: 1300px) {
    .about-content {
        justify-content: center;
        gap: 40px;
    }
    
    .about-left {
        width: 500px;
        height: 420px;
    }
}

@media (max-width: 1000px) {
    .about {
        height: auto;
        padding: 80px 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .about-left {
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 350px;
    }

    .about-right {
        width: 100%;
        max-width: 600px;
        align-items: center;
    }

    .about-right h2, .about-right p {
        text-align: center;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    background-image: url("assets/services-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    color: #61c7ff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.service-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid #11364d;
    border-radius: 50px 0px 50px 0px;
    padding: 40px 30px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: #61c7ff;
    transform: translateY(-10px);
    background: rgba(0, 3, 5, 0.8);
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 30px;
}

.service-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.service-card h3 span {
    color: #61c7ff;
    display: block;
}

.service-card p {
    color: #ccc;
    font-size: 0.70rem;
    width: 100%;
    line-height: 1.3;
    text-align: justify;
    text-align-last: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #000;
    min-height: 100vh;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
}

.contact-left {
    width: 100%;
    max-width: 400px;
}

.contact-left h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-left h2 span {
    color: #61c7ff;
    font-weight: 800;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input {
    width: 100%;
    padding: 18px 45px;
    background: #0f1214;
    border: 1px solid #11364d;
    border-radius: 50px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #61c7ff;
    box-shadow: 0 0 10px rgba(97, 199, 255, 0.2);
}

.input-group input::placeholder {
    color: #888;
    font-weight: 700;
}

.submit-btn {
    margin-top: 10px;
    padding: 18px;
    background: #61c7ff;
    border: none;
    border-radius: 50px;
    color: black;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #4ab8f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(97, 199, 255, 0.3);
}

.contact-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.contact-right img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}