/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: #2c1a0e; background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: #1e0d05; }
.section-cream { background: #fdf8f3; }
.section-brown { background: #5c2008; color: #fff; }

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b06030;
    margin-bottom: 10px;
    display: block;
}
.section-label.light { color: #e8a870; }

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #2c1a0e;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
}
.section-title.light { color: #fff; }
.section-title.left { text-align: left; }

.section-sub {
    font-size: 1.05rem;
    color: #7a5c4a;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.22s ease;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}
.btn-gold { background: #b06030; color: #fff; border-color: #b06030; }
.btn-gold:hover { background: #8f4a22; border-color: #8f4a22; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(176,96,48,0.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: #fff; color: #2c1a0e; border-color: #fff; }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(176,96,48,0.12);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #5c2008; font-weight: 700; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.9rem; font-weight: 500; color: #4a2c1a; transition: color 0.2s; position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: #b06030; transition: width 0.2s; }
.nav a:hover { color: #b06030; }
.nav a:hover::after { width: 100%; }
.nav-cta { background: #b06030; color: #fff !important; padding: 9px 20px; border-radius: 4px; font-size: 0.85rem !important; }
.nav-cta:hover { background: #8f4a22 !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #5c2008; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(30,8,0,0.72) 0%, rgba(30,8,0,0.45) 60%, rgba(30,8,0,0.6) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 760px; color: #fff;
    padding: 40px 0;
}
.hero-tagline {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: #e8a870;
    margin-bottom: 18px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15; margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
    font-size: 1.1rem; opacity: 0.88; margin-bottom: 40px;
    max-width: 540px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    animation: bounce 2.5s infinite;
}
.scroll-arrow {
    width: 12px; height: 12px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================
   USP STRIP
   ============================================ */
.usp-strip { background: #5c2008; color: #fff; padding: 16px 0; }
.usp-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.usp { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; }
.usp span { opacity: 0.9; }

/* ============================================
   TABS / PONUDBA
   ============================================ */
.tabs {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0e8e0;
    padding-bottom: 0;
}
.tab {
    background: none; border: none; cursor: pointer;
    padding: 12px 20px; font-size: 0.9rem; font-weight: 500;
    color: #7a5c4a; border-radius: 4px 4px 0 0;
    transition: all 0.2s; position: relative; bottom: -2px;
    border-bottom: 2px solid transparent;
}
.tab:hover { color: #b06030; background: #fdf3ec; }
.tab.active { color: #5c2008; border-bottom-color: #b06030; font-weight: 600; background: #fdf3ec; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-bottom: 20px; }
.paketi-grid { grid-template-columns: repeat(2, 1fr); }

.menu-item {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 16px; padding: 20px 24px;
    background: #fdf8f3; border-bottom: 1px solid #f0e4d8;
    transition: background 0.2s;
}
.menu-item:hover { background: #fdf0e6; }
.menu-item-info h3 { font-size: 1rem; font-weight: 600; color: #2c1a0e; margin-bottom: 4px; }
.menu-item-info h3 em { font-style: normal; font-weight: 400; color: #9a7060; font-size: 0.85rem; }
.menu-item-info p { font-size: 0.85rem; color: #7a5c4a; line-height: 1.5; max-width: 380px; }
.menu-price { font-size: 1.05rem; font-weight: 700; color: #b06030; white-space: nowrap; flex-shrink: 0; }

.paket-item { flex-direction: row; align-items: center; border-radius: 6px; margin-bottom: 2px; }
.paket-custom { background: linear-gradient(135deg, #fdf0e6, #fdf8f3); }

.menu-note { font-size: 0.85rem; color: #9a7060; background: #fdf3ec; padding: 12px 16px; border-radius: 4px; border-left: 3px solid #b06030; }

.ponudba-opomba {
    background: #fdf3ec;
    border: 1px solid #e8d0bc;
    border-left: 4px solid #b06030;
    border-radius: 6px;
    padding: 16px 20px;
    margin-top: 32px;
    font-size: 0.95rem;
    color: #5a3a28;
    line-height: 1.6;
}

.ponudba-cta {
    margin-top: 56px; text-align: center;
    background: linear-gradient(135deg, #5c2008, #8f4a22);
    border-radius: 12px; padding: 48px 40px; color: #fff;
}
.ponudba-cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }
.ponudba-cta .btn-gold { background: #fff; color: #5c2008; border-color: #fff; }
.ponudba-cta .btn-gold:hover { background: #fdf3ec; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    columns: 3;
    column-gap: 12px;
    margin-bottom: 40px;
}
.gallery-item {
    break-inside: avoid;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Slider */
.gallery-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
}
.gallery-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}
.slider-slide {
    min-width: calc(33.333% - 8px);
    margin-right: 12px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.slider-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.slider-slide:hover img { transform: scale(1.04); }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(92,32,8,0.85);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: #b06030; }
.slider-prev { left: -22px; }
.slider-next { right: -22px; }
.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-top: 8px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}
.slider-dot.active { background: #b06030; }

/* ============================================
   O NAS
   ============================================ */
.onas-layout {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 80px; align-items: center;
}
.onas-img img {
    width: 100%; border-radius: 12px;
    box-shadow: 0 24px 64px rgba(92,32,8,0.2);
}
.onas-text .section-label { text-align: left; }
.onas-text p { color: #5a3a28; line-height: 1.8; margin-bottom: 18px; font-size: 1.05rem; }
.onas-text em { font-style: italic; color: #b06030; }
.onas-stats {
    display: flex; gap: 40px; margin: 36px 0;
    padding: 28px 0; border-top: 1px solid #f0e0d0; border-bottom: 1px solid #f0e0d0;
}
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: #5c2008; }
.stat span { font-size: 0.85rem; color: #9a7060; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.review-card {
    background: #fff; border-radius: 10px; padding: 32px 28px;
    border: 1px solid #f0e8e0;
    box-shadow: 0 4px 16px rgba(92,32,8,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(92,32,8,0.12); }
.stars { color: #b06030; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-style: italic; color: #5a3a28; line-height: 1.75; margin-bottom: 18px; font-size: 0.97rem; }
.reviewer strong { color: #5c2008; font-size: 0.9rem; font-weight: 600; }

/* ============================================
   INFO / DOSTAVA
   ============================================ */
.info-flex { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.info-box {
    background: rgba(255,255,255,0.1); border-radius: 10px;
    padding: 28px 22px; text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
}
.info-box:hover { background: rgba(255,255,255,0.18); }
.info-icon { font-size: 2.2rem; margin-bottom: 12px; }
.info-box h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: #fff; }
.info-box p { font-size: 0.88rem; opacity: 0.82; line-height: 1.6; color: #fff; }
.info-box strong { color: #e8c8a8; }

/* ============================================
   CONTACT
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }

.contact-card {
    background: #5c2008; border-radius: 12px;
    padding: 36px 28px; color: #fff;
    display: flex; flex-direction: column; gap: 24px;
}
.contact-logo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-detail small { display: block; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.65; margin-bottom: 2px; }
.contact-detail a, .contact-detail p { color: #fff; font-size: 0.97rem; font-weight: 500; line-height: 1.5; }
.contact-card .btn-gold { background: #fff; color: #5c2008; border-color: #fff; margin-top: 8px; }
.contact-card .btn-gold:hover { background: #fdf3ec; }

.contact-form {
    background: #fdf8f3; border-radius: 12px;
    padding: 44px 40px;
    border: 1px solid #f0e4d8;
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: #2c1a0e;
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #5a3a28; margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid #e8d8cc; border-radius: 6px;
    font-size: 0.95rem; font-family: inherit;
    background: #fff; color: #2c1a0e;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: #b06030;
    box-shadow: 0 0 0 3px rgba(176,96,48,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-form .btn-gold { margin-top: 8px; font-size: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #160803; color: rgba(255,255,255,0.65); }
.footer-inner {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 40px;
    padding: 48px 24px 32px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; margin-bottom: 4px; }
.footer-brand p { font-size: 0.82rem; }
.footer-links { display: flex; gap: 28px; justify-content: center; }
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #e8a870; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-contact a { font-size: 0.88rem; transition: color 0.2s; }
.footer-contact a:hover { color: #e8a870; }
.footer-bottom {
    text-align: center; padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
}
.footer-bottom a { color: #e8a870; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid #ecddd5;
    overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid #ecddd5; }

.faq-item summary {
    list-style: none;
    padding: 22px 20px 22px 0;
    font-weight: 600;
    font-size: 1rem;
    color: #2c1a0e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #b06030;
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}
.faq-item[open] summary { color: #b06030; }
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    padding: 0 20px 20px 0;
    color: #5a3a28;
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .onas-layout { grid-template-columns: 1fr; gap: 48px; }
    .onas-img { max-width: 480px; margin: 0 auto; }
    .info-flex { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-card { flex-direction: row; flex-wrap: wrap; }
    .contact-logo { width: 60px; height: 60px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-contact { align-items: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 768px) {
    /* Nav */
    .nav {
        display: none; position: fixed;
        top: 72px; left: 0; right: 0;
        background: #fff; flex-direction: column;
        padding: 8px 0; gap: 0;
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        border-top: 1px solid #f0e0d0;
    }
    .nav.open { display: flex; }
    .nav a { padding: 14px 24px; border-bottom: 1px solid #faf0e8; font-size: 1rem; }
    .nav a:last-child { border-bottom: none; }
    .nav-cta { border-radius: 0; text-align: center; }
    .hamburger { display: flex; }

    /* Hero */
    .hero-content { padding: 32px 0; }
    .hero-content h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; }

    /* USP */
    .usp-inner { flex-direction: column; align-items: center; gap: 8px; }

    /* Tabs */
    .tabs { gap: 4px; }
    .tab { padding: 10px 14px; font-size: 0.82rem; }

    /* Menu */
    .menu-grid, .paketi-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid { columns: 2; }
    .slider-slide { min-width: calc(50% - 6px); }
    .slider-prev { left: -18px; }
    .slider-next { right: -18px; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Info */
    .info-flex { grid-template-columns: 1fr; }

    /* Contact */
    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .section { padding: 64px 0; }
    .section-title { font-size: 1.7rem; }
    .onas-stats { gap: 24px; }
}

@media (max-width: 480px) {
    .gallery-grid { columns: 1; }
    .slider-slide { min-width: 100%; margin-right: 0; }
    .slider-prev { left: 4px; }
    .slider-next { right: 4px; }
    .slider-btn { width: 36px; height: 36px; font-size: 1rem; }
    .container { padding: 0 16px; }
}
