/* ==============================
   RESET & GENERAL
============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.5;
}

img {
    width: 100%;
    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.5;
    border-radius: 12px;
    z-index: -1;
}

.gradient {
    font-size: 40px;
    font-weight: bold;
    margin-top: 40px;
    background: linear-gradient(90deg, black, #320032, #743274, #df1edf, magenta);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: animateGradient 3s linear infinite;
}

@keyframes animateGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

.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);
}

/* ==============================
   TWO-COLUMN CONTACT SECTION
============================== */
.contact-info-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 40px;
    flex-wrap: wrap;
}

.left-column, .right-column {
    flex: 1 1 400px; /* flexible columns, min width 400px */
     background: linear-gradient(
        90deg, rgb(0,0,0), rgb(50,0,50), rgb(116,50,116),
        rgb(223,30,223), rgb(255,0,255), rgb(116,50,116), rgb(50,0,50)
    );
    background-size: 200% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: animateGradient 3s linear infinite;
}

.left-column .map-box iframe,
.left-column .image-box img {
    width: 100%;
    max-width: 400px;
    height: 350px;
    margin-bottom: 20px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ==============================
   CONTACT FORM
============================== */
.contact-wrapper {
    background: rgba(0,0,0,0.55);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid magenta;
    backdrop-filter: blur(4px);
    color: magenta;
    margin-top: 20px;
}

.contact-wrapper h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
}

.required { color: red; }

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid magenta;
    background: #222;
    color: magenta;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 8px #ff00ff;
}

.contact-form button {
    width: 180px;
    padding: 14px;
    margin: 10px auto 0;
    background: magenta;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.1);
    background: #d606d2;
}

/* ==============================
   SOCIAL LINKS
============================== */
.social-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-box a {
    text-decoration: none;
    font-weight: bold;
    color: magenta;
    transition: 0.3s;
}

.social-box a:hover {
    color: #ff00ff;
}

/* ==============================
   FOOTER
============================== */
.footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: magenta;
    border-radius: 12px;
    margin-top: 40px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1023px) {
    .contact-info-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .left-column, .right-column {
        flex: 1 1 90%;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        padding: 10px 14px;
        font-size: 14px;
    }
}
