/* ===========================
   GLOBAL
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');

@font-face {
    font-family: "Edo";
    src: url("/fonts/edo.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("slike/ozadje.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #1E1E1E;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(2px);
    z-index: -1;
}

a {
    color: #D4A520;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.content {
    padding-top: 160px;
}


h1, h2, h3,
.header .logo {
    font-family: 'Staatliches', sans-serif;
    letter-spacing: 1px;
}


/* ===========================
   NAVADEN HEADER Z OZADJEM
=========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    background-image: url("slike/hero.jpg"); /* tvoja topografska slika */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 50px;
    box-sizing: border-box;

    border-bottom: 3px solid #D4A520;
    z-index: 1000;
}

/* LOGO */
.header .logo a {
    font-family: 'Black Ops One', cursive;
    font-size: 1.9rem;
    font-weight: normal;
    color: #FFD34E;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* NAVIGACIJA */
.header nav a {
    margin-left: 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #FFD34E;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.header nav a:hover {
    opacity: 0.7;
}

/* Da se vsebina ne skrije pod header */
.content {
    padding-top: 120px;
}



/* ===========================
   INFO BLOK
=========================== */

.info-clean {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 10px 5px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.info-clean h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.info-clean h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #5A3E1B;
}


/* ===========================
   FILTERJI
=========================== */

.filters {
    max-width: 900px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-picker {
    max-width: 600px;
    width: 100%;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid #D4A520;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.date-picker input[type="date"] {
    padding: 10px 12px;
    border: 2px solid #D8C49A;
    border-radius: 8px;
    background: #FFF;
}


/* ===========================
   GRID ŠOTOROV
=========================== */

.tent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
}

@media (max-width: 1100px) {
    .tent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .tent-grid {
        grid-template-columns: 1fr;
    }
}

.tent-card {
    background: #FFFFFF;
    border: 2px solid #D4A520;
    border-radius: 12px;
    padding: 15px;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
}

.tent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.tent-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #FFE379;
}

.tent-title {
    font-family: 'Black Ops One', cursive;
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: 10px;
    letter-spacing: 1px;
}

.tent-info {
    margin: 5px 0;
    color: #5A3E1B;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #D4A520;
    color: #000;
    border-radius: 6px;
    font-weight: bold;
    margin-top: auto;
}

.btn:hover {
    background: #8F6E11;
}


/* ===========================
   OPIS ŠOTORA
=========================== */

.tent-description {
    margin-top: 20px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #FFE379;
    border-radius: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.main-image img {
    border: 2px solid #FFE379;
}

.thumb:hover {
    border-color: #D4A520;
}


/* ===========================
   CENIK
=========================== */

.cenik-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid #D4A520;
}

.cenik-wrapper h1 {
    text-align: center;
}

.cenik-wrapper .subtitle {
    text-align: center;
    color: #5A3E1B;
    margin-bottom: 25px;
}


/* ===========================
   FOOTER
=========================== */

footer {
    background: #FFFFFF;
    color: #1E1E1E;
    padding: 40px 20px 20px 20px;
    border-top: 3px solid #D4A520;
    margin-top: 50px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: #3B280F;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.7;
}


/* ===========================
   FORMS
=========================== */

form {
    max-width: 700px;
    margin: 40px auto;
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #D4A520;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

form label {
    font-weight: bold;
    margin-bottom: 4px;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #D8C49A;
    border-radius: 6px;
    background: #FFF;
    font-size: 1rem;
    box-sizing: border-box;
}

form textarea {
    min-height: 120px;
    resize: none;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

button[type="submit"] {
    padding: 14px 20px;
    background: #D4A520;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: #8F6E11;
}

/* ===========================
   TENT PAGE – NOV LAYOUT
=========================== */

.tent-page {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 20px;
}

/* LEVA STRAN */
.tent-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tent-main-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #D4A520;
}

.tent-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #FFE379;
}

.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #D4A520;
    cursor: pointer;
    transition: 0.2s;
}

.thumb:hover {
    transform: scale(1.05);
}

/* INFO BOX */
.tent-info-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #D4A520;
}

/* DESNA STRAN – REZERVACIJA */
.tent-right {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    position: sticky;
    top: 110px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #D4A520;
    gap: 20px;
}

/* ===========================
   REZERVACIJSKI BOX – LEPŠI
=========================== */

.reservation-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #D4A520;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-box h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #5A3E1B;
}

/* DVA POLJA V VRSTICI */
.rez-row {
    display: flex;
    gap: 15px;
}

.rez-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rez-field label {
    font-weight: bold;
    font-size: 0.95rem;
}

.rez-field input {
    padding: 10px;
    border: 2px solid #D8C49A;
    border-radius: 6px;
    font-size: 1rem;
}


/* ===========================
   GUMBI POD DATUMI – LEPŠI
=========================== */

.rez-buttons {
    display: flex;
    gap: 12px;
}

.rez-btn,
.back-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #D4A520;
    border-radius: 6px;
    font-weight: bold;
    color: #000;
    display: block;
}

.rez-btn:hover,
.back-btn:hover {
    background: #8F6E11;
}
.rye-font {
    font-family: 'Rye', serif;
}


/* ===========================
   HOME HERO
=========================== */

.home-hero {
    position: relative;
    margin-top: 90px;
    min-height: 62vh;
    background-image: url("slike/ARBEsperanceRTTV2_1224_1070-Edit.jpg");
    background-size: cover;
    background-position: center 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.75) 100%
    );
}

.home-hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 750px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Black Ops One', cursive;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-accent {
    color: #FFD34E;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-cta {
    font-size: 1.15rem;
    padding: 14px 40px;
    background: #D4A520;
    color: #000;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: #b8891a;
}

/* ===========================
   HIGHLIGHTS BAR
=========================== */

.highlights-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #1A1A1A;
    border-bottom: 3px solid #D4A520;
}

.hl-item {
    padding: 16px 28px;
    color: #FFD34E;
    font-weight: bold;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hl-item:last-child {
    border-right: none;
}

@media (max-width: 700px) {
    .hl-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   SOTORI SECTION
=========================== */

.sotori-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1E1E1E;
}

/* ===========================
   MOBILNI HERO
=========================== */

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.6rem;
        letter-spacing: 1px;
    }
    .hero-sub {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
    .hero-cta {
        font-size: 1rem;
        padding: 13px 32px;
    }
    .header {
        height: 70px;
        padding: 0 20px;
    }
    .header .logo a {
        font-size: 1.4rem;
    }
    .header nav a {
        margin-left: 12px;
        font-size: 0.85rem;
    }
}

