﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@charset "UTF-8"
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(#fffdf7, #faf3e0);
    color: #333;
    line-height: 1.6;
}

/* HEADER */
header {
    background: linear-gradient(
        rgba(212,160,23,0.85),
        rgba(47,93,80,0.85)
    ),
    url("images/pozadina.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 90px 10px;
}

header h1 {
    font-size: 3rem;
    color: #fff3b0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* SECTIONS */
section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    color: #6b4f2d;
    margin-bottom: 35px;
    text-align: center;
}

/* HONEY CARDS */
.honey-type {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.honey-card {
    background: linear-gradient(#fff, #fff7dc);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(212,160,23,0.25);
    text-align: center;
    transition: transform 0.3s ease;
}

.honey-card:hover {
    transform: translateY(-6px);
}

.honey-card h3 {
    margin: 20px 0 10px;
    color: #8b5e1a;
}

/* PRICE LIST */
.price-section {
    background: #fff7dc;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(212,160,23,0.25);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-table th,
.price-table td {
    padding: 14px;
    text-align: center;
}

.price-table th {
    background-color: #d4a017;
    color: #fff;
}

.price-table tr:nth-child(even) {
    background-color: #fffdf4;
}

.price-note {
    text-align: center;
    font-style: italic;
    color: #6b4f2d;
}

/* ORIGIN & CERTIFICATE */
.origin, .certificate {
    background-color: #e6f2ec;
    border-left: 8px solid #d4a017;
    border-radius: 15px;
}

.certificate img {
    display: block;
    margin: 30px auto 0;
    max-width: 300px;
    border-radius: 10px;
}

/* FORM */
form {
    background: linear-gradient(#fff, #fff7dc);
    padding: 35px;
    border-radius: 20px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 10px 25px rgba(212,160,23,0.25);
}

label {
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

button {
    background: linear-gradient(#d4a017, #b88a14);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    opacity: 0.9;
}

.viber-button {
    display: table;
    margin: 0 auto;
    justify-content:center;
    align-items:center;
    background-color: #7360F2;
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s ease;
}

.viber-btn:hover {
    background-color: #5b4bd1;
   
}

/* FOOTER */
footer {
    font-size: 1.5rem;
    background-color: #2f5d50;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    margin-top: 100px
    
}