/* --- style.css --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
    --bg-color: #0b0b0b;
    --card-bg: #141414;
    --text-color: #e0e0e0;
    --gold-gradient: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-flat: #d4af37;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif; /* Čist font za tekst */
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.8;
}

h1, h2, h3, h4, .luxury-font {
    font-family: 'Cormorant Garamond', serif; /* Elegantan font za naslove */
}

/* --- ZLATNI TEKST EFEKT --- */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- NAVIGACIJA --- */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 30px;
    position: relative;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-link:hover { opacity: 1; color: var(--gold-flat) !important; }

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1452587925148-ce544e77e70d?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay da tekst bude citljiviji */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-flat);
    margin-bottom: 40px;
    display: block;
}

/* Scroll Down Mouse Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* --- GUMBI (PREMIUM) --- */
.btn-gold {
    background: transparent;
    border: 1px solid var(--gold-flat);
    color: var(--gold-flat);
    padding: 15px 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--gold-gradient);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-gold:hover {
    color: #000;
    border-color: transparent;
}

.btn-gold:hover::before { width: 100%; }

/* --- SEKCIJE --- */
section { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 3.5rem; margin-bottom: 15px; }
.section-line {
    width: 60px; height: 1px; background: var(--gold-flat); margin: 0 auto;
}

/* --- PAKETI (LUXURY CARDS) --- */
.pkg-card {
    background: var(--card-bg);
    padding: 60px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    height: 100%;
}

.pkg-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-color: var(--gold-flat);
}

.pkg-price {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-flat);
    margin: 20px 0;
}

/* --- KONTAKT (MODERNO) --- */
.contact-container {
    background: #111;
    border: 1px solid #222;
}

.contact-left {
    padding: 60px;
    background: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?auto=format&fit=crop&w=800&q=80') center center;
    background-size: cover;
    position: relative;
}

.contact-left::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.7);
}

.contact-left-content { position: relative; z-index: 2; }

.form-premium {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #444;
    border-radius: 0;
    color: #fff;
    padding: 15px 0;
}

.form-premium:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: var(--gold-flat);
    color: #fff;
}

.form-premium::placeholder { color: #555; font-size: 0.9rem; letter-spacing: 1px; }

/* --- FOOTER --- */
footer {
    border-top: 1px solid #222;
    padding: 80px 0 30px;
    background: #050505;
    color: #777;
    font-size: 0.9rem;
}

.footer-col h4 { color: #fff; margin-bottom: 25px; letter-spacing: 1px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col a { color: #777; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--gold-flat); padding-left: 5px; }

/* Mobile */
@media(max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .contact-left { padding: 40px; }
}