@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

/* Osnovne nastavitve */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root { 
    --gold: #D4AF37; 
    --dark: #0a0a0a; 
    --bg-overlay: rgba(0, 0, 0, 0.85); 
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f0f0f0;
    line-height: 1.6;
    background-color: #050505;
    background-image: url('bg.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
}

body::before { 
    content: ""; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: var(--bg-overlay); 
    z-index: -1; 
}

/* Navigacija (Meni) */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 50px; 
    background: #000; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
}

.logo a { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    color: var(--gold); 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 20px; 
}

nav a { 
    text-decoration: none; 
    color: #ccc; 
    font-size: 13px; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

nav a:hover { 
    color: var(--gold); 
}

.btn-nav { 
    border: 1px solid var(--gold); 
    padding: 8px 20px; 
    color: var(--gold) !important; 
    border-radius: 2px; 
}

.btn-nav:hover { 
    background: var(--gold); 
    color: #000 !important; 
}

/* Naslovnica (Hero) */
.hero { 
    height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 20px; 
}

.hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 60px; 
    color: var(--gold); 
    margin-bottom: 20px; 
    line-height: 1.1; 
}

.hero p { 
    font-size: 18px; 
    letter-spacing: 2px; 
    margin-bottom: 40px; 
    text-transform: uppercase; 
    color: #ddd; 
}

.btn-main { 
    padding: 15px 40px; 
    background: var(--gold); 
    color: #000; 
    text-decoration: none; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: 0.3s; 
    border: none; 
    cursor: pointer; 
}

.btn-main:hover { 
    background: #fff; 
}

/* Ekipa (Zaposleni) */
.team-section { 
    padding: 80px 20px; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: center; 
}

.profile-card { 
    background: rgba(20, 20, 20, 0.8); 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 30px; 
    width: 300px; 
    text-align: center; 
    border-radius: 5px; 
    transition: 0.3s; 
}

.profile-card:hover { 
    border-color: var(--gold); 
    transform: translateY(-5px); 
}

.profile-img { 
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid var(--gold); 
    margin-bottom: 20px; 
}

.profile-card h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    color: var(--gold); 
    margin-bottom: 5px; 
}

.role { 
    color: #888; 
    text-transform: uppercase; 
    font-size: 10px; 
    display: block; 
    margin-bottom: 15px; 
}

.bio { 
    font-size: 13px; 
    color: #ccc; 
    margin-bottom: 20px; 
    padding-bottom: 15px; 
    border-bottom: 1px solid #333; 
}

/* Galerija */
.gallery-section { 
    padding: 60px 20px; 
    text-align: center; 
}

.gallery-section h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 36px; 
    color: var(--gold); 
    margin-bottom: 30px; 
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
    max-width: 800px; 
    margin: 0 auto; 
}

.gallery-item { 
    overflow: hidden; 
    border: 1px solid #333; 
    height: 250px; 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: grayscale(100%); 
    transition: 0.5s; 
    display: block; 
}

.gallery-item img:hover { 
    filter: grayscale(0%); 
    transform: scale(1.05); 
}

/* Mnenja iz baze */
.reviews-section-db { 
    padding: 80px 20px; 
    background: rgba(10,10,10,0.8); 
    text-align: center; 
    border-top: 1px solid #222; 
}

.reviews-section-db h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 36px; 
    color: var(--gold); 
    margin-bottom: 40px; 
}

.reviews-grid-db { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    max-width: 900px; 
    margin: 0 auto 50px; 
}

.review-card-db { 
    background: #0f0f0f; 
    border: 1px solid #333; 
    padding: 20px; 
    text-align: left; 
    border-radius: 4px; 
}

.stars-db { 
    color: var(--gold); 
    font-size: 12px; 
    margin-bottom: 10px; 
}

.comment-db { 
    color: #ccc; 
    font-style: italic; 
    font-size: 14px; 
    margin-bottom: 10px; 
}

.author-db { 
    color: #fff; 
    font-weight: bold; 
    font-size: 12px; 
    text-align: right; 
    text-transform: uppercase; 
}

/* Obrazec za mnenja */
.review-form-container { 
    max-width: 500px; 
    margin: 0 auto; 
    background: #111; 
    border: 1px solid var(--gold); 
    padding: 30px; 
    border-radius: 4px; 
}

.review-form-container h3 { 
    color: var(--gold); 
    font-family: 'Playfair Display', serif; 
    margin-bottom: 20px; 
    font-size: 24px; 
}

.form-row-db { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 15px; 
}

.input-db, .select-db { 
    width: 100%; 
    padding: 12px; 
    background: #222; 
    border: 1px solid #444; 
    color: #fff; 
    border-radius: 2px; 
    font-family: 'Poppins', sans-serif; 
}

.textarea-db { 
    width: 100%; 
    height: 100px; 
    padding: 12px; 
    background: #222; 
    border: 1px solid #444; 
    color: #fff; 
    resize: none; 
    margin-bottom: 15px; 
}

.btn-review-submit { 
    width: 100%; 
    padding: 12px; 
    background: var(--gold); 
    color: #000; 
    font-weight: bold; 
    border: none; 
    cursor: pointer; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

.btn-review-submit:hover { 
    background: #fff; 
}

/* Noga strani (Footer) */
footer { 
    background: #000; 
    padding: 40px 20px; 
    text-align: center; 
    border-top: 1px solid #333; 
}

.footer-content { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    margin-bottom: 20px; 
    flex-wrap: wrap; 
}

.contact-item { 
    text-decoration: none; 
    color: #aaa; 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
}

.contact-item:hover { 
    color: var(--gold); 
}

.contact-item i { 
    font-size: 18px; 
    color: var(--gold); 
}

.copyright { 
    font-size: 12px; 
    color: #555; 
    margin-top: 20px; 
    border-top: 1px solid #222; 
    padding-top: 20px; 
}

.secret-admin-btn { 
    position: fixed; 
    bottom: 0; 
    right: 0; 
    width: 30px; 
    height: 30px; 
    opacity: 0; 
    z-index: 9999; 
}

/* Stran za rezervacijo (Booking) */
.booking-wrapper { 
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 100px 20px; 
}

.booking-card { 
    background: rgba(10,10,10,0.95); 
    padding: 40px; 
    width: 100%; 
    max-width: 500px; 
    border: 1px solid var(--gold); 
    border-radius: 8px; 
}

.booking-header h2 { 
    font-size: 30px; 
    color: var(--gold); 
    font-family: 'Playfair Display', serif; 
    text-align: center; 
}

input, select { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 15px; 
    background: #222; 
    border: 1px solid #444; 
    color: #fff; 
    border-radius: 4px; 
}

.full-btn { 
    width: 100%; 
    padding: 15px; 
    background: var(--gold); 
    border: none; 
    font-weight: bold; 
    cursor: pointer; 
    color: #000; 
}

.form-row-2 { 
    display: flex; 
    gap: 20px; 
}

.form-row-2 div { 
    width: 50%; 
}

/* Prilagoditev za telefone */
@media screen and (max-width: 768px) {
    html, body { 
        font-size: 14px; 
        background-attachment: scroll; 
        background-size: auto 100%; 
        background-position: center top; 
    }
    nav { 
        padding: 15px; 
        justify-content: center; 
    }
    nav ul { 
        display: none; 
    }
    .logo a { 
        font-size: 20px; 
    }
    .hero h1 { 
        font-size: 36px; 
        margin-top: 60px; 
    }
    .hero p { 
        font-size: 14px; 
        width: 100%; 
    }
    .btn-main { 
        width: 80%; 
        padding: 12px; 
        font-size: 14px; 
    }
    .team-section { 
        padding: 40px 10px; 
    }
    .profile-card { 
        width: 100%; 
        max-width: 300px; 
        margin-bottom: 20px; 
    }
    .gallery-grid { 
        grid-template-columns: 1fr; 
    } 
    .gallery-item { 
        height: 200px; 
    }
    .form-row-db { 
        flex-direction: column; 
        gap: 0; 
    }
    .input-db, .select-db { 
        margin-bottom: 10px; 
    }
    .reviews-grid-db { 
        grid-template-columns: 1fr; 
        padding: 0; 
    }
    .review-form-box { 
        width: 100%; 
        padding: 20px; 
    }
    .footer-content { 
        flex-direction: column; 
        gap: 20px; 
    }
    .booking-wrapper { 
        padding: 80px 10px; 
    }
    .booking-card { 
        padding: 20px; 
        border: none; 
    }
    .form-row-2 { 
        flex-direction: column; 
        gap: 0; 
    } 
    .form-row-2 div { 
        width: 100%; 
    }
}