/* GLOBAL RESET */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* PAGE WRAPPER */
.page-frame {
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HEADER */
header {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

/* PREMIUM LOGO */
.logo {
    max-height: 180px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 12px rgba(248,210,0,0.25));
}

/* LANGUAGE SWITCHER */
.lang {
    position: absolute;
    top: 10px;
    right: 20px;
}

.flag {
    width: 34px;
    margin-left: 8px;
    cursor: pointer;
    opacity: 0.85;
    transition: 0.2s;
}
.flag:hover {
    opacity: 1;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 90px 0 70px;
    margin-bottom: 80px;

    background: radial-gradient(circle at center,
        rgba(255,215,0,0.07),
        rgba(0,0,0,0) 70%);

    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
}

/* HERO TITLE */
.hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: #f8d200;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(248,210,0,0.25);
    margin-bottom: 14px;
}

/* YELLOW LINE */
.yellow-line {
    width: 180px;
    height: 4px;
    background: #f8d200;
    margin: 15px auto 25px;
    border-radius: 10px;
}

/* SUBTITLE */
.subtitle {
    font-size: 22px;
    opacity: 0.92;
}

/* SECTION SPACING */
section {
    margin-bottom: 90px;
}

/* SECTION TITLES */
section h2 {
    font-size: 32px;
    color: #f8d200;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(248,210,0,0.3);
}

/* TEXT */
section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.75;
    text-align: center;
    opacity: 0.95;
}

/* DIVIDER */
.section-divider {
    width: 100%;
    height: 1px;
    margin: 80px 0;
    background: linear-gradient(
        to right,
        rgba(248,210,0,0),
        rgba(248,210,0,0.55),
        rgba(248,210,0,0)
    );
    opacity: 0.85;
}

/* FORM */
.contact-form {
    max-width: 700px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(20,20,20,0.9);
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
}

textarea {
    height: 140px;
}

/* BUTTON */
button {
    background: #f8d200;
    color: #000;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

button:hover {
    background: #ffe044;
}

/* MAP */
.map-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(248,210,0,0.15);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 60px 0 40px;
    font-size: 15px;
    opacity: 0.7;
}

/* SUCCESS MESSAGE */
.success {
    margin-top: 15px;
    color: #7cff7c;
    font-size: 18px;
    font-weight: bold;
}

/* HAMBURGER BUTTON – MOBILE ONLY */
.mobile-menu-btn {
    display: none;
    position: absolute;
    top: 12px;
    right: 15px;
    z-index: 1000;
    cursor: pointer;
}

.burger {
    width: 32px;
    height: 4px;
    background: #f8d200;
    border-radius: 5px;
    position: relative;
    transition: 0.4s;
}

.burger::before,
.burger::after {
    content: "";
    width: 32px;
    height: 4px;
    background: #f8d200;
    border-radius: 5px;
    position: absolute;
    left: 0;
    transition: 0.4s;
}

.burger::before {
    top: -9px;
}

.burger::after {
    top: 9px;
}

/* HAMBURGER TO X ANIMATION */
.burger.open {
    transform: rotate(45deg);
}

.burger.open::before {
    top: 0;
    transform: rotate(90deg);
}

.burger.open::after {
    top: 0;
    transform: rotate(90deg);
}

/* MOBILE LANGUAGE MENU */
.mobile-lang-menu {
    display: none;
    position: absolute;
    top: 55px;
    right: 15px;
    background: rgba(0,0,0,0.9);
    border: 1px solid #333;
    padding: 12px 15px;
    border-radius: 8px;
}

.mobile-lang-menu.open {
    display: block;
}

.flag-mobile {
    width: 34px;
    display: block;
    margin: 10px auto;
}

/* SHOW HAMBURGER ONLY ON MOBILE */
@media(max-width: 700px) {

    /* Sakrij desktop zastavice */
    .lang {
        display: none;
    }

    /* Prikaži hamburger */
    .mobile-menu-btn {
        display: block;
    }

    /* Spusti logo da diše još više */
    .logo {
        max-height: 120px;
        margin-top: 90px;
    }
}
