/* ==============================
   RESET & GENERAL
============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #000;
    line-height: 1.5;
}

img {
    width: 50%;
    display: block;
    border-radius: 12px;
}

/* ==============================
   HEADER & NAV
============================== */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    flex-wrap: wrap;
}

.logo-container {
    position: relative;
    width: 450px;
    height: 190px;
    text-align: center;
}

.logo-container .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    border-radius: 12px;
    z-index: -1;
}

.gradient {
    font-size: 40px;
    font-weight: bold;
    margin-top: 40px;
    background: linear-gradient(90deg, black, #3c003c, #960096, magenta);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: animateGradient 3s linear infinite;
}

@keyframes animateGradient {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: magenta;
    background: #222;
    padding: 21px 42px;
    font-size: 21px;
    border-radius: 21px;
    border: 4px solid magenta;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: magenta;
    color: #000;
    transform: scale(1.08);
}

/* ==============================
   HERO & INTRO
============================== */
.hero-section {
    width: 100%;
    margin-top: 20px, 90px;
    display: flex;
    justify-content: center; /* centers the image */
}

.hero-image {
    width: 80%;           /* smaller than full width */
    max-width: 400px;     /* limits size on large screens */
    margin-top: 20px, 90px;
    height: auto;         /* keeps aspect ratio */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* optional, adds depth */
}

.intro-section {
    display: flex;
    justify-content: flex-end;
    margin: 40px 0;
    padding: 0 40px;
}

.intro-box {
    max-width: 590px;
    padding: 13px;
    background: rgba(0,0,0,0.6);
    border-radius: 13px;
    border: 2px solid magenta;
    backdrop-filter: blur(4px);
    color: #fff;
}

.intro-box h2 {
    font-size: 26px;
    margin-bottom: 9px;
    color: magenta;
}

.intro-box p {
    font-size: 20px;
}

.intro-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 20px;
    flex-wrap: wrap; /* ensures responsive stacking on smaller screens */
}

.hero-image {
    width: 55%;       /* smaller than before */
    max-width: 400px; /* prevents huge image on large screens */
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 20px rgba(0,0,0,0.3);
}

.intro-box {
    width: 70%;
    padding: 80px;
    background: rgba(0,0,0,0.6);
    border-radius: 45px;
    border: 6px solid magenta;
    backdrop-filter: blur(10px);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .intro-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero-image,
    .intro-box {
        width: 90%;
    }
}

/* ==============================
   MAIN IMAGE & SERVICES
============================== */
.main-image-section {
    width: 150%;
    margin: 80px 57px;
}

.full-band-image {
    max-height: 600px;
    object-fit: cover;
}

.services-section {
    text-align: center;
    padding: 30px;
    margin: 40px auto;
    width: 90%;
    background: #fafafa;
    border: 3px solid magenta;
    border-radius: 12px;
    font-size: 22px;
    font-weight: bold;
}

/* ==============================
   FOOTER
============================== */
.footer {
    background: #000;
    color: magenta;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-radius: 12px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gradient {
        font-size: 26px;
    }
    .nav-links a {
        padding: 10px 14px;
        font-size: 14px;
    }
    .intro-box {
        padding: 20px;
    }
}
