/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(90deg, #ffffff, #e6c65c);
    color: #333;
}

/* HEADER */
header {
    background: linear-gradient(90deg, #ffffff, #e6c65c);
    text-align: center;
    padding: 25px 10px;
    border-bottom: 2px solid #d4af37;
}

header h1 {
    color: #333;
    letter-spacing: 1px;
}

/* NAVBAR */
nav {
    background-color: #d4af37;
    text-align: center;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

/* HERO */
.hero {
    width: 100%;
    line-height: 0;
}

.hero img {
    width: 100%;
    max-height: 85vh;
    object-fit: cover;
    display: block;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    background: rgba(255,255,255,0.85);
    padding: 25px;
    border-radius: 8px;
}

/* NASLOVI */
h2 {
    color: #d4af37;
    margin-bottom: 10px;
}

h3 {
    color: ##d4af37;
    margin-bottom: 5px;
}

/* PARAGRAFI */
p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* LISTE */
ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* PRODUKTI GRID */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* CARD */
.card {
    background: white;
    width: 230px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* FORM */
form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    background-color: #d4af37;
    color: #333;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

input[type="submit"]:hover {
    background-color: #c19b2e;
    color: white;
}

/* SOCIAL */
.social {
    margin-top: 10px;
}

.social img {
    margin-right: 10px;
    transition: 0.3s;
}

.social img:hover {
    transform: scale(1.1);
}

/* FOOTER */
footer {
    background: #d4af37;
    color: #333;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* TABLE */
table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th {
    background: #d4af37;
    color: #333;
}

td, th {
    padding: 10px;
    text-align: center;
}


/* PREMIUM HEADER */

.header-main {
    background: linear-gradient(90deg, #ffffff, #e6c65c);
    border-bottom: 2px solid #d4af37;
    padding: 15px 0;
}

.header-content {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    width: 70px;
    height: auto;
}

.header-text h1 {
    margin: 0;
    color: #333;
    letter-spacing: 1px;
}

.header-text p {
    margin: 0;
    color: #555;
    font-size: 14px;
}
 /* ===== PREMIUM HEADER ===== */

.header-premium {
    background: linear-gradient(90deg, #ffffff, #e6c65c);
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 18px 0;
}

.header-wrapper {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo-area img {
    width: 130px;
    height: auto;
}

.brand-area {
    text-align: left;
}

.brand-area h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
    color: #333;
}

.brand-area p {
    margin: 0;
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;

    /* ===== CENTRIRANJE KONTAKT FORME ===== */

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-box {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
}
}

/* KONTAKT BOX */

.contact-card{
  max-width: 600px;
  margin: 60px auto;
  padding: 30px 35px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.contact-card h2{
  margin-bottom: 10px;
}

.contact-card p{
  margin-bottom: 20px;
}

.contact-card input,
.contact-card textarea{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-card textarea{
  height: 120px;
  resize: none;
}

.contact-card button{
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg,#d4af37,#e6c65c);
  color: #2c2c2c;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-card button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ============================= */
/* MOBILNA OPTIMIZACIJA */
/* ============================= */

@media screen and (max-width:768px) {

    /* HEADER */

    .header-wrapper,
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo-area img,
    .logo {
        width: 90px;
        height: auto;
    }

    .brand-area,
    .header-text {
        text-align: center;
    }

        .brand-area h1,
        .header-text h1 {
            font-size: 24px;
        }

        .brand-area p,
        .header-text p {
            font-size: 13px;
        }


    /* NAVBAR */

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

        nav a {
            display: block;
            width: 90%;
            padding: 12px;
            margin: 5px 0;
            text-align: center;
        }


    /* HERO SLIKE */

    .hero img {
        width: 100%;
        height: auto;
        max-height: none;
    }


    /* KONTEJNERI */

    .container,
    .contact-card {
        width: 95%;
        padding: 20px;
        margin: 25px auto;
    }


    /* PRODUKTI */

    .products {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 95%;
        max-width: 350px;
    }


    /* TABELE */

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }


    /* FORME */

    form {
        width: 100%;
    }

    input,
    textarea,
    button {
        font-size: 16px;
    }


    /* TEKST */

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p,
    li {
        font-size: 15px;
    }


    /* IKONE */

    .social-icons a {
        font-size: 35px;
    }
}

.menu-toggle {
    display: none;
    font-size: 35px;
    cursor: pointer;
    font-weight: bold;
}

.menu-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media(max-width:768px) {

    .menu-toggle {
        display: block;
        text-align: center;
        padding: 10px;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

        .menu-links.active {
            display: flex;
        }
}
/* ===================== */
/* DODATNO ZA MOBITEL */
/* ===================== */

@media(max-width:768px){

.header-premium{
padding:10px 0;
}

.logo-area img{
width:80px;
}

.menu-toggle{
font-size:28px;
padding:5px;
}

.hero{
margin-top:0;
line-height:0;
}

.hero img{
display:block;
width:100%;
height:auto;
}

.container{
width:95%;
margin:20px auto;
padding:20px;
}

}