/* Varijable */
:root {
    --gold: #D4AF37;
    --gold-rich: #C5A021;
    --gold-dark: #B8860B;
    --black: #000000;
    --zinc-950: #09090b;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --white: #ffffff;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --serif: 'Playfair Display', serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Helpers */
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.text-gold { color: var(--gold); }
.gold { color: var(--gold); }

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    padding: 18px 40px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-size: 12px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: scale(1.05);
    background-color: var(--gold-rich);
}

.btn-outline {
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-size: 12px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-black {
    background-color: var(--black);
    color: var(--gold);
    padding: 20px 50px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.2em;
    font-size: 12px;
    transition: all 0.3s;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.5s;
}

#navbar.scrolled {
    background-color: rgba(0,0,0,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.3);
}

.brand {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.location {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
    letter-spacing: 0.3em;
}

.btn-primary-sm {
    background-color: var(--gold);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    padding: 120px 40px;
    gap: 24px;
    transform: translateY(-100%);
    transition: 0.5s;
    z-index: 900;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--white);
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.4), rgba(0,0,0,0.95));
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.sub-title {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 24px;
    display: block;
}

.hero h1 {
    font-family: var(--serif);
    font-size: 120px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.privacy-badge {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(212,175,55,0.6);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 700;
}

/* Features */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.features-img-side {
    position: relative;
}

.features-img-side img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.1);
}

.floating-badge {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background-color: var(--gold);
    color: var(--black);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.floating-badge .small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-top: 4px;
}

.features-text-side h2 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 32px;
}

.accent-text {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 800;
    display: block;
    margin-bottom: 16px;
}

.italic-desc {
    color: #e2e8f0;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 24px;
}

.light-desc {
    color: var(--slate-400);
    margin-bottom: 40px;
}

.owner-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.owner-info img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--gold);
}

.serif-name {
    display: block;
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
}

.gold-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feat-card {
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s;
}

.feat-card:hover {
    background-color: rgba(212,175,55,0.1);
    border-color: var(--gold);
}

.feat-card i {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
}

.feat-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feat-card p {
    color: var(--slate-400);
    font-size: 14px;
}

/* Services */
.services {
    background-color: var(--zinc-950);
    padding: 120px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.accent-underline {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-decoration: underline;
    text-underline-offset: 8px;
    display: block;
    margin-bottom: 16px;
}

.services h2 {
    font-size: 72px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: rgba(24,24,27,0.5);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.7s;
}

.service-card:hover {
    border-color: rgba(212,175,55,0.3);
}

.card-icon-area {
    height: 250px;
    background-color: rgba(9,9,11,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon-area i {
    width: 80px;
    height: 80px;
    color: rgba(212,175,55,0.4);
    transition: 0.7s;
}

.service-card:hover .card-icon-area i {
    color: var(--gold);
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.card-content {
    padding: 40px;
}

.tag {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 16px;
}

.card-content h3 {
    font-family: var(--serif);
    font-size: 32px;
    margin-bottom: 24px;
}

.card-content p {
    color: var(--slate-400);
    font-size: 14px;
    margin-bottom: 40px;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.learn-more:hover {
    color: var(--gold);
}

/* Gallery */
.gallery {
    padding: 120px 0;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.gallery-header h2 {
    font-size: 72px;
    line-height: 1.1;
}

.header-right p {
    max-width: 300px;
    color: var(--slate-400);
    border-left: 2px solid rgba(212,175,55,0.3);
    padding-left: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 450px;
    gap: 24px;
}

.gallery-item {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    /* Pojačan gradijent za bolju čitljivost fiksnog teksta */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    /* Fiksno vidljivo */
    opacity: 1;
    transform: translateY(0);
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
    color: var(--gold);
}

.gallery-overlay h4 {
    font-size: 20px;
    font-family: var(--serif);
    color: var(--white);
}

.span-2 { grid-column: span 2; }
.tall { grid-row: span 2; }

/* Pricing */
.pricing {
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.subtitle {
    color: var(--slate-400);
    margin-top: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.cat-title {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.line {
    flex: 1;
    height: 1px;
    background-color: rgba(212,175,55,0.2);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.name-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.name-price h5 {
    font-size: 18px;
    color: var(--white);
}

.name-price span {
    color: var(--gold);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 18px;
}

.price-item p {
    color: var(--slate-500);
    font-size: 14px;
    font-weight: 300;
}

.disclaimer {
    text-align: center;
    margin-top: 80px;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

/* Reviews */
.reviews {
    padding: 120px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review-card {
    background-color: rgba(255,255,255,0.05);
    padding: 48px;
    border-radius: 48px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.quote-bg {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    color: rgba(212,175,55,0.1);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.stars i {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    color: var(--gold);
}

.review-card p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 32px;
}

.reviewer h5 {
    font-family: var(--serif);
    font-size: 20px;
}

.reviewer span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

/* CTA */
.cta {
    padding: 120px 0;
}

.cta-box {
    background-color: var(--gold);
    border-radius: 64px;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    color: var(--black);
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 48px;
}

/* Footer */
footer {
    background-color: var(--black);
    padding: 120px 0 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.brand-lg {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 24px;
    display: block;
}

.brand-sm {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
}

.footer-motto {
    color: var(--slate-500);
    margin: 40px 0;
    font-size: 14px;
    max-width: 250px;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.3s;
}

.socials a:hover {
    background-color: var(--gold);
    color: var(--black);
}

footer h4 {
    margin-bottom: 40px;
    font-size: 12px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 20px;
}

footer ul a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

footer ul a:hover {
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--slate-400);
}

.contact-item i.green { color: #22c55e; }

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--slate-400);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 16px;
}

.hour-row.closed span:last-child {
    color: #ef4444;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--slate-500);
    font-size: 10px;
    letter-spacing: 0.2em;
}

.tags {
    display: flex;
    gap: 32px;
    font-weight: 800;
}

/* Utils */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 80px; }
    .features-grid { grid-template-columns: 1fr; gap: 40px; }
    .cards-row { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 56px; }
    .hero p { font-size: 16px; }
    .hero-btns { flex-direction: column; }
    .features-text-side h2 { font-size: 40px; }
    .services h2, .gallery-header h2, .pricing h2, .reviews h2, .cta-box h2 { font-size: 40px; }
    .services-grid, .pricing-grid, .reviews-grid { grid-template-columns: 1fr; }
    
    /* Popravka galerije za mobilne */
    .gallery-grid { 
        grid-template-columns: 1fr; 
        grid-auto-rows: 450px; /* Povećana visina za bolju vidljivost */
        gap: 16px;
    }
    .gallery-overlay {
        padding: 24px;
    }
    .gallery-overlay h4 {
        font-size: 18px;
    }
    .overlay-tag {
        font-size: 9px;
    }
    
    .span-2 { grid-column: span 1; }
    .tall { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
}