/* 
    ARTEMIDA HUNTING - LUXURY MASTER STYLE
    Author: Senior Web Developer
    Theme: Extra Luxury / Mar-a-Lago Style
*/

:root {
    --forest: #081008;
    --gold: #c5a059;
    --gold-bright: #e0bc7a;
    --gold-metallic: linear-gradient(135deg, #c5a059 0%, #f9f0b8 50%, #c5a059 100%);
    --paper: #fcfaf7;
    --white: #ffffff;
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- RESET & GLOBAL AUTHORITY --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    text-decoration: none !important; 
    -webkit-tap-highlight-color: transparent;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--paper);
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png'); 
    color: var(--forest);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%;
}

/* --- HEADER --- */
header {
    height: 90px;
    background: rgba(8, 16, 8, 0.98);
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.header-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
}

.nav-logo { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.nav-logo-img { 
    height: 60px; 
    width: auto;
    flex-shrink: 0;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text { 
    color: var(--gold); 
    font-size: 1.4rem; 
    font-weight: 700; 
    line-height: 1; 
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-subtext { 
    color: #888; 
    font-size: 0.65rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-top: 4px;
    display: block;
    white-space: nowrap;
}

/* Desktop Navigation Upgraded */
.nav-links { 
    display: flex; 
    gap: 25px; 
}

.nav-links a {
    color: var(--white); 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2.5px; 
    transition: var(--transition-fast);
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links:hover a:not(:hover) { opacity: 0.4; }

/* PREMIUM BADGE (REZERVIŠITE DUGME) */
.header-cta { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.premium-badge {
    background: var(--gold-metallic);
    color: var(--forest) !important;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--gold);
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.premium-badge:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.premium-badge i { display: inline-block; font-size: 0.85rem; }

/* --- HERO (KEN BURNS EFFECT) --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    animation: kenBurns 20s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.15); } }

.hero-overlay {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(8,16,8,0.7) 100%);
}

.hero-content { 
    position: relative; 
    color: white; 
    z-index: 10; 
    padding: 0 20px;
}

.hero-label { 
    color: var(--gold); 
    letter-spacing: 5px; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    margin-bottom: 20px; 
    display: block;
}

.hero h1 { 
    font-size: clamp(2.5rem, 8vw, 4.5rem); 
    color: var(--white); 
    margin-bottom: 10px; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gold-divider { 
    width: 100px; 
    height: 2px; 
    background: var(--gold); 
    margin: 25px auto; 
}

.hero h2 { 
    font-size: 1.5rem; 
    font-style: italic;
    font-weight: 300; 
    letter-spacing: 2px; 
    margin-bottom: 40px; 
    text-transform: uppercase;
}

.btn-gold {
    display: inline-block;
    padding: 18px 50px;
    border: 2px solid var(--gold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    transition: var(--transition-fast);
}

.btn-gold:hover { background: var(--gold); color: var(--forest); }

/* --- SECTIONS & REVEAL --- */
section { padding: 120px 0; }
.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: var(--transition-slow); 
}
.reveal.active { opacity: 1; transform: translateY(0); }
.section-label { 
    color: var(--gold); 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-size: 0.8rem; 
    display: block; 
    margin-bottom: 20px; 
}
.premium-h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.2; margin-bottom: 35px; }
.gold-text { color: var(--gold); }

/* --- ABOUT --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.luxury-frame {
    border: 1px solid var(--gold);
    padding: 20px;
    background: var(--white);
    position: relative;
    box-shadow: 20px 20px 0px rgba(197, 160, 89, 0.1);
}

/* --- TOURS GRID --- */
.tours-section { background-color: var(--forest); color: white; }
.luxury-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    margin-top: 60px; 
}
.luxury-card {
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    transition: var(--transition-fast);
}
.luxury-card:hover {
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
    transform: translateY(-10px);
}
.card-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display';
    font-size: 3rem;
    color: rgba(197, 160, 89, 0.1);
}
.luxury-card h3 { color: var(--gold); font-size: 1.6rem; margin-bottom: 20px; }

/* --- PROTOCOL BOX --- */
.luxury-box {
    background: var(--forest);
    border: 4px double var(--gold);
    padding: 80px 40px;
    text-align: center;
    color: white;
}
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}
.rule-item no-icon { padding: 20px; }

/* --- CONTACT SECTION --- */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.contact-info { background: var(--forest); color: white; padding: 60px; }
.contact-info h3 { margin-bottom: 30px; font-size: 2rem; }
.contact-info p { margin-bottom: 25px; display: flex; align-items: flex-start; gap: 15px; }
.contact-info i { color: var(--gold); font-size: 1.2rem; margin-top: 5px; }

.address-block { display: flex; flex-direction: column; gap: 5px; }
.address-city { font-weight: 700; color: var(--gold); letter-spacing: 1px; }

.map-container {
    margin-top: 30px;
    position: relative;
    border: 1px solid var(--gold);
    padding: 5px;
    background: var(--forest);
}

.luxury-map {
    filter: grayscale(1) brightness(0.8) contrast(1.1) sepia(0.2);
    opacity: 0.9;
    transition: var(--transition-fast);
    display: block;
    width: 100%;
}

.map-container:hover .luxury-map {
    filter: grayscale(0) brightness(1) contrast(1) sepia(0);
    opacity: 1;
}

/* --- LUXURY FORM (PHASE 2 VISUAL) --- */
.contact-form {
    padding: 60px;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--forest);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 5px;
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    background: transparent;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: var(--forest);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
    background: rgba(197, 160, 89, 0.03);
}

.contact-form ::placeholder {
    color: #bbb;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    opacity: 0.8;
}

.btn-submit {
    background: var(--gold-metallic);
    color: var(--forest);
    padding: 18px 0;
    border: 1px solid var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    width: 100%;
    font-family: 'Playfair Display', serif;
    transition: var(--transition-fast);
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-submit:hover {
    background: var(--forest);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* --- FOOTER STYLING --- */
footer {
    padding: 60px 0;
    background: #050a05;
    color: #666;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.footer-credit {
    margin-top: 15px;
    display: block;
}

.footer-link {
    color: #8a8a8a; /* Nova, vidljivija "Luxury Slate" boja */
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-link span {
    color: #666; /* Malo tamniji deo za "by" */
}

.footer-link:hover {
    color: var(--gold); /* Na hover dobija zlatni sjaj */
    letter-spacing: 2.5px; /* Suptilna ekspanzija */
    opacity: 1;
}


/* --- LIGHTBOX --- */
.lightbox {
    position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.95); 
    display: none; 
    align-items: center; 
    justify-content: center; 
    z-index: 2000;
}
.lightbox.active { display: flex; }
.lightbox-content { 
    max-width: 90%; 
    max-height: 80vh; 
    border: 3px solid var(--gold); 
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.3);
}
.close-lightbox { 
    position: absolute; 
    top: 30px; right: 30px; 
    color: white; 
    font-size: 3rem; 
    cursor: pointer; 
}

.premium-seal {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

/* --- MOBILE - THE MAR-A-LAGO UX FIX --- */

@media (max-width: 992px) {
    .nav-links { display: none; } 
    .about-grid, .contact-card { grid-template-columns: 1fr; }
    
    header { height: 75px; }
    .header-container { padding: 0 20px; }
    
    .nav-logo { gap: 8px; margin-right: 5px; flex-shrink: 0; }
    .nav-logo-img { height: 40px; }
    .logo-text { font-size: 1rem; letter-spacing: 0.5px; }
    .logo-subtext { display: none; }
    
    .hero { padding-top: 75px; }
    .hero-content { margin-top: 0; } 

    .header-cta { 
        display: flex;
        flex-grow: 1; 
        justify-content: flex-end; 
        gap: 12px; 
        margin-right: 0; 
    }
    
    .lang-switcher {
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        margin-left: auto !important; 
        margin-right: auto !important; 
        font-size: 0.6rem;
        flex-shrink: 0;
    }

    .lang-row { display: flex; align-items: center; justify-content: center; white-space: nowrap; }

    .lang-switcher a, .lang-switcher span {
        width: 24px;
        text-align: center;
        display: inline-block;
        font-weight: 400 !important;
    }

    .premium-badge {
        padding: 10px; min-width: 44px; height: 44px;
        flex-shrink: 0;
    }
    .premium-badge .full-text { display: none; }
    .premium-badge i { display: block; font-size: 1.1rem; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    
    .contact-section {
        padding: 40px 0;
        min-height: calc(100vh - 75px);
        display: flex;
        align-items: center;
    }

    .contact-info, .contact-form {
        padding: 40px 20px;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero h2 { font-size: 0.95rem; }
    
    .hamburger {
        display: block; width: 25px; height: 18px; position: relative; cursor: pointer; flex-shrink: 0;
    }
    .hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: var(--gold); transition: .3s; }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 8px; }
    .hamburger span:nth-child(3) { top: 16px; }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 8px; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

    .nav-links.active {
        display: flex; position: fixed; top: 75px; left: 0; width: 100%;
        height: calc(100vh - 75px); background: rgba(8, 16, 8, 0.98);
        backdrop-filter: blur(20px); flex-direction: column; align-items: flex-start; 
        justify-content: flex-start; padding-top: 15%; padding-left: 15%; z-index: 999;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
    }
    .nav-links.active a {
        font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white);
        margin: 8px 0; opacity: 0; transform: translateX(-20px);
        animation: slideInFade 0.5s forwards; letter-spacing: 1px; position: relative;
    }
    .nav-links.active a:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { animation-delay: 0.4s; }
    .nav-links.active a:nth-child(5) { animation-delay: 0.5s; }

    .nav-links.active a::after {
        content: ''; position: absolute; bottom: -3px; left: 0; width: 25px; height: 1px; background: var(--gold);
    }

    @keyframes slideInFade { to { opacity: 1; transform: translateX(0); } }
}

/* Language Switcher Default */
.lang-switcher {
    display: flex; flex-direction: column; gap: 2px;
    font-size: 0.7rem; color: #888; letter-spacing: 1px;
    margin-right: 20px; text-align: center;
}
.lang-switcher a, .lang-switcher span { 
    color: var(--gold); 
    transition: var(--transition-fast); 
    padding: 0 4px; 
    display: inline-block;
    width: 24px; 
    font-weight: 400 !important; 
}
.lang-switcher a:hover { color: white; }
.lang-switcher .active { color: white !important; font-weight: 400 !important; }