/* =========================================
   SUNRISE EDITION STYLE.CSS - CLEANED & MERGED
   ========================================= */
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: hidden; width: 100%; }
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-color: #0a0502;
    --text-color: #E6E6E6;
    --accent-color: #e6b34a;
    --secondary-bg: #140a05;
    --gold-gradient: linear-gradient(135deg, #e6b34a 0%, #ffca7a 50%, #c48a26 100%);
    --sun-glow: rgba(255, 160, 50, 0.15);
    --disabled-grey: #332a22;
}

/* --- ANIMATIONS --- */
@keyframes eternalShine {
    0% { filter: brightness(1); opacity: 0.8; }
    50% { filter: brightness(1.5); opacity: 1; box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); }
    100% { filter: brightness(1); opacity: 0.8; }
}
@keyframes breathe {
    0% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(230, 179, 74, 0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 35px rgba(255, 140, 0, 0.6)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(230, 179, 74, 0.4)); }
}
@keyframes silentAuthority {
    0% { box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2); filter: brightness(1); transform: scale(1); }
    50% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 140, 0, 0.5); filter: brightness(1.35) contrast(1.1); transform: scale(1.03); }
    100% { box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2); filter: brightness(1); transform: scale(1); }
}
@keyframes shineWave {
    0%, 100% { filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.6)) brightness(1); text-shadow: none; }
    10% { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) brightness(3.5); text-shadow: 0 0 20px #ffffff; }
    20% { filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.6)) brightness(1); text-shadow: none; }
}
@keyframes pulseGold { 
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.5); } 
    70% { box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); } 
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- BASE STYLES --- */
body {
    font-family: 'Manrope', sans-serif; background-color: var(--bg-color); color: var(--text-color);
    line-height: 1.8; overflow-x: hidden; font-weight: 300; letter-spacing: 0.5px;
    position: relative; width: 100%; background-attachment: fixed;
    background-image: radial-gradient(circle at 100% 50%, var(--sun-glow) 0%, transparent 60%);
}
h1, h2, h3 { font-family: 'Marcellus', serif; font-weight: 400; letter-spacing: 1px; }
a { text-decoration: none; color: inherit; transition: 0.4s ease; }
ul { list-style: none; }

/* --- COMPONENTS --- */
.golden-separator {
    width: 100%; height: 3px;
    background: linear-gradient(135deg, #e6b34a 0%, #ffca7a 50%, #c48a26 100%);
    position: relative; z-index: 50;
    box-shadow: 0 0 15px rgba(230, 179, 74, 0.3);
    animation: eternalShine 4s infinite ease-in-out;
}

#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-color); z-index: 9999; display: flex; align-items: center; justify-content: center;
    background-image: radial-gradient(circle at 100% 50%, var(--sun-glow) 0%, transparent 70%);
    transition: opacity 0.8s ease;
}
.breathing-seal {
    width: 225px; height: auto; animation: breathe 4s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(230, 179, 74, 0.4));
}

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; position: fixed; width: 100%; top: 0; height: 90px; z-index: 1000;
    background: rgba(10, 5, 2, 0.9); backdrop-filter: blur(12px);      
    border-bottom: 3px solid var(--accent-color); box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}
.lang-switch { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 600; color: #887; }
.lang-opt { cursor: pointer; transition: 0.3s; padding: 5px 0; }
.lang-opt:hover { color: #fff; text-shadow: 0 0 10px var(--accent-color); }
.lang-opt.active { color: var(--accent-color); border-bottom: 1px solid var(--accent-color); text-shadow: 0 0 15px rgba(230, 179, 74, 0.6); }
.separator { color: #554; font-weight: 300; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { 
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: #f2e8d5; 
    position: relative; transition: all 0.3s ease; text-shadow: 0 2px 10px rgba(0,0,0,0.5); padding-bottom: 5px;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0%; height: 1px; bottom: 0; left: 50%;
    background: var(--accent-color); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: 0 0 10px rgba(230, 179, 74, 0.8);
}
.nav-links a:hover { color: #ffffff; text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); transform: translateY(-2px); }
.nav-links a:hover::after { width: 100%; left: 0; }

.cta-btn {
    background: var(--gold-gradient); color: #1a0f00; padding: 12px 30px; font-weight: 600; text-transform: uppercase; 
    letter-spacing: 1.5px; border: none; cursor: pointer; border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.15); font-size: 0.85rem; transition: all 0.4s ease;
    animation: silentAuthority 3s infinite ease-in-out;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4); filter: brightness(1.1); }

/* --- HERO SECTION --- */
header {
    height: 100vh; background-color: #0a0502; background-size: cover; background-position: center;
    background: linear-gradient(to left, rgba(255, 180, 50, 0.2), rgba(10, 5, 2, 0.95)), url('Fotografije/hero-bg.jpg');
    display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; 
    padding-top: 110px; box-sizing: border-box; position: relative; overflow: hidden;
}
header::after {
    content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
    background: radial-gradient(ellipse at right center, rgba(255, 140, 0, 0.25), transparent 70%);
    z-index: 1; pointer-events: none;
}
.hero-content { margin-top: -80px; position: relative; z-index: 10; }
.hero-logo {
    display: block; margin: 0 auto -40px auto; width: 100%; max-width: 550px; height: auto;
    filter: drop-shadow(0 10px 20px rgba(255, 100, 0, 0.3));
}
.logo-text-container {
    text-align: center; margin-top: -50px; margin-bottom: 30px;
    font-family: 'Marcellus', serif; position: relative; z-index: 10;
}
.logo-title-main {
    display: block; font-size: 1.6rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 400;
    background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
    background-clip: text; filter: drop-shadow(0 2px 10px rgba(255, 140, 0, 0.4));
}
.logo-subtitle-sub {
    display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 6px; color: var(--accent-color);
    margin-top: 5px; font-weight: 300; opacity: 0.9; text-shadow: 0 0 10px rgba(230, 179, 74, 0.5);
}
.hero-content h1 {
    font-size: 3.5rem; margin-bottom: 20px; color: #fff;
    text-shadow: 2px 2px 20px rgba(255, 140, 0, 0.5), -1px -1px 5px rgba(0,0,0,0.8);
    line-height: 1.2; position: relative; z-index: 10;
}
.hero-content p {
    font-size: 1.2rem; margin-bottom: 45px; font-weight: 300; letter-spacing: 1px; color: #eee; 
    max-width: 700px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* --- ABOUT SECTION --- */
.about {
    padding: 120px 10%; position: relative; overflow: hidden; text-align: center;
    min-height: 600px; display: flex; flex-direction: column; justify-content: center;
}
.about-parallax-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
    background-image: url('Fotografije/aboutus1.png'); background-size: cover; background-position: center;
    background-attachment: fixed; 
}
.about-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background: radial-gradient(circle, rgba(10,5,2,0.6) 0%, rgba(10,5,2,0.9) 100%);
}
.content-relative { position: relative; z-index: 2; }
.about h2 { font-size: 3rem; color: var(--accent-color); margin-bottom: 30px; text-shadow: 0 0 20px rgba(230, 179, 74, 0.5); }
.about p {
    max-width: 800px; margin: 0 auto; font-size: 1.15rem; color: #ccc; font-weight: 300; line-height: 2; 
    text-align: justify; border: 1px solid var(--accent-color); border-radius: 4px; padding: 40px;
    background: rgba(20, 10, 5, 0.8); backdrop-filter: blur(5px); position: relative;
    box-shadow: inset 0 0 20px rgba(255, 140, 0, 0.1), 5px 5px 30px rgba(0,0,0,0.5);
}
.about p::after {
    content: "✦"; position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--secondary-bg); padding: 0 10px; color: var(--accent-color); 
    font-size: 1.2rem; text-shadow: 0 0 10px var(--accent-color);
}

/* --- SERVICES SECTION --- */
.services {
    display: flex; flex-direction: row; flex-wrap: nowrap; min-height: 80vh; position: relative; 
    overflow: hidden; background-color: var(--bg-color);
    background-image: radial-gradient(circle at 100% 50%, var(--sun-glow) 0%, transparent 60%);
}
.video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.service-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.overlay-him { background: linear-gradient(to right, rgba(10, 5, 2, 0.85), rgba(20, 10, 5, 0.75)); }
.overlay-her { background: linear-gradient(to left, rgba(26, 16, 8, 0.85), rgba(15, 8, 4, 0.75)); }
.service-content { position: relative; z-index: 5; width: 100%; }
.service-him, .service-her { background: #0a0502; }
.center-seal-desktop {
    position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
    width: 325px; height: auto; z-index: 20; pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
}
.service-box {
    flex: 1; min-width: 0; padding: 100px 60px; display: flex; flex-direction: column; 
    justify-content: center; position: relative; align-items: stretch; transition: 0.4s;
}
.service-him { background: linear-gradient(to right, #0a0502, #140a05); }
.service-her { background: linear-gradient(to left, #1a1008, #0f0804); }
.service-box:hover { background: linear-gradient(to right, #140a05, #24150a); }
.service-her:hover { background: linear-gradient(to left, #2a180c, #140a05); }
.service-him h3, .service-him .credential-title { text-align: left; align-self: flex-start; }
.service-her h3, .service-her .credential-title { text-align: right; align-self: flex-end; }
.profile-img-container {
    width: 200px; height: 200px; margin: 0 auto 35px auto; position: relative; border-radius: 50%;
    border: 1px solid var(--accent-color); outline: 4px solid rgba(230, 179, 74, 0.2); align-self: center;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.2); padding: 6px; transition: 0.4s;
}
.profile-pic {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: 0.5s;
    filter: grayscale(30%) contrast(110%) sepia(20%);
}
.service-box:hover .profile-img-container { outline-color: var(--accent-color); box-shadow: 0 0 50px rgba(255, 140, 0, 0.5); }
.service-box:hover .profile-pic { filter: grayscale(0%) contrast(100%) sepia(0%); transform: scale(1.02); }
.service-box h3 { font-size: 2.2rem; margin-bottom: 10px; color: #fff; letter-spacing: 1px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.credential-title {
    color: #aaa; font-size: 0.9rem; font-style: italic; margin-bottom: 35px; letter-spacing: 0.5px; 
    border-bottom: 1px solid var(--accent-color); display: inline-block; padding-bottom: 8px;
}
.service-role {
    color: var(--accent-color); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; 
    font-weight: 700; position: absolute; top: 40px; text-shadow: 0 0 10px rgba(230, 179, 74, 0.4);
}
.role-left { left: 40px; }
.role-right { right: 40px; text-align: right; }
.service-list li { margin-bottom: 18px; padding-left: 25px; position: relative; color: #ccc; font-size: 0.95rem; }
.service-list li::before {
    content: "✦"; color: var(--accent-color); position: absolute; left: 0; font-size: 0.8rem; top: 6px; 
    text-shadow: 0 0 5px var(--accent-color);
}
.service-list li strong { color: #fff; font-weight: 500; }

/* --- RESULTS SECTION --- */
.results-section {
    position: relative; padding: 100px 5%; background-size: cover; background-position: center; 
    background-attachment: fixed; background-image: url('Fotografije/resultsbackground.jpeg'); 
}
.results-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 5, 2, 0.94); z-index: 1; }
.results-section .content-relative { position: relative; z-index: 2; text-align: center; }
.results-section h2 {
    font-family: 'Marcellus', serif; font-size: 3rem; margin-bottom: 25px; position: relative; display: inline-block;
    background: linear-gradient(135deg, #fff 20%, #e6b34a 80%); -webkit-background-clip: text; 
    background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3));
}
.results-section h2::after {
    content: ''; position: absolute; bottom: -10px; left: 10%; width: 80%; height: 1px; 
    background: linear-gradient(90deg, transparent, #e6b34a, transparent); opacity: 0.7;
}
.subtitle {
    font-family: 'Manrope', sans-serif; color: #f2e8d5; margin-bottom: 40px; letter-spacing: 2px; 
    font-size: 1.1rem; font-weight: 400; text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.interaction-hint {
    font-size: 0.75rem; color: var(--accent-color); text-transform: uppercase; letter-spacing: 3px; 
    margin-bottom: 60px; opacity: 0.8;
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto; }
.gallery-item { display: flex; flex-direction: column; align-items: center; gap: 15px; cursor: pointer; }
.img-container {
    position: relative; width: 100%; aspect-ratio: 3 / 4; border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(230, 179, 74, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: 0.4s ease;
}
.gallery-item:hover .img-container { border-color: var(--accent-color); box-shadow: 0 15px 40px rgba(230, 179, 74, 0.15); transform: translateY(-5px); }
.img-container img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transition: opacity 0.4s ease-in-out; }
.img-after { z-index: 10; opacity: 1; }
.img-before { z-index: 5; }
.gallery-item:hover .img-after, .gallery-item.mobile-active .img-after { opacity: 0; }
.status-badge {
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: rgba(10, 5, 2, 0.85); color: var(--accent-color); padding: 6px 18px; z-index: 20;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; border: 1px solid var(--accent-color); 
    opacity: 0; transition: 0.4s; pointer-events: none;
}
.gallery-item:hover .status-badge, .gallery-item.mobile-active .status-badge { opacity: 1; transform: translateX(-50%) translateY(0); }

/* --- CONTACT SECTION --- */
.contact {
    padding: 120px 5%; background-color: var(--secondary-bg); text-align: center; 
    border-top: 1px solid rgba(230, 179, 74, 0.2); position: relative; overflow: hidden; z-index: 1;
}
.contact h2 {
    font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--accent-color); margin-top: 30px; margin-bottom: 40px;
    text-shadow: 0 0 25px rgba(230, 179, 74, 0.4); text-transform: uppercase; letter-spacing: 5px; font-weight: 500;
}
.contact-bg-logo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-seal-img {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 1600px; 
    max-width: none; height: auto; margin-top: -100px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8)); opacity: 0.15;
}
.atelier-text {
    position: absolute; bottom: 0px; left: 50%; transform: translateX(-50%); width: 90%; z-index: 10;
    font-family: 'Marcellus', serif; text-transform: uppercase; text-align: center; line-height: 1.2; 
    display: flex; flex-direction: column; gap: 5px;
}
.word-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; }
.part-left { display: flex; justify-content: flex-end; gap: 2px; }
.part-center { display: flex; justify-content: center; padding: 0 15px; }
.part-right { display: flex; justify-content: flex-start; gap: 2px; }
.atelier-row-center { display: flex; justify-content: center; margin-top: 5px; padding-left: 15px; }
.atelier-text span {
    font-size: 1.6rem; font-family: 'Manrope', sans-serif; font-weight: 300; color: transparent;
    background: linear-gradient(to bottom, #ffffff 0%, #ffecb3 30%, #e6b34a 60%, #a38956 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.6)); animation: shineWave 4s infinite linear;
}
.atelier-word span { font-family: 'Cinzel', serif; font-weight: 400; font-size: 3.5rem; letter-spacing: 18px; margin-top: 15px; }

/* Animation Delays for Text */
.part-left span:nth-child(1) { animation-delay: 0.0s; }
.part-left span:nth-child(2) { animation-delay: 0.1s; }
.part-left span:nth-child(3) { animation-delay: 0.2s; }
.part-left span:nth-child(4) { animation-delay: 0.3s; }
.part-left span:nth-child(5) { animation-delay: 0.4s; }
.part-left span:nth-child(6) { animation-delay: 0.5s; }
.part-left span:nth-child(7) { animation-delay: 0.6s; }
.part-left span:nth-child(8) { animation-delay: 0.7s; }
.part-left span:nth-child(9) { animation-delay: 0.8s; }
.part-center span { animation-delay: 0.9s; }
.part-right span:nth-child(1) { animation-delay: 1.0s; }
.part-right span:nth-child(2) { animation-delay: 1.1s; }
.part-right span:nth-child(3) { animation-delay: 1.2s; }
.part-right span:nth-child(4) { animation-delay: 1.3s; }
.part-right span:nth-child(5) { animation-delay: 1.4s; }
.part-right span:nth-child(6) { animation-delay: 1.5s; }
.part-right span:nth-child(7) { animation-delay: 1.6s; }
.part-right span:nth-child(8) { animation-delay: 1.7s; }
.part-right span:nth-child(9) { animation-delay: 1.8s; }
.part-right span:nth-child(10) { animation-delay: 1.9s; }
.atelier-word span:nth-child(1) { animation-delay: 2.0s; }
.atelier-word span:nth-child(2) { animation-delay: 2.1s; }
.atelier-word span:nth-child(3) { animation-delay: 2.2s; }
.atelier-word span:nth-child(4) { animation-delay: 2.3s; }
.atelier-word span:nth-child(5) { animation-delay: 2.4s; }
.atelier-word span:nth-child(6) { animation-delay: 2.5s; }
.atelier-word span:nth-child(7) { animation-delay: 2.6s; }

/* --- FORM & FOOTER --- */
form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 25px; }
input, textarea, select {
    padding: 18px; background: rgba(20, 10, 5, 0.75); border: 3px solid rgba(230, 179, 74, 0.3);
    color: #fff; font-family: inherit; font-size: 1rem; border-radius: 2px; transition: 0.3s; backdrop-filter: blur(8px);
}
input:focus, textarea:focus, select:focus { border-color: var(--accent-color); outline: none; box-shadow: 0 0 20px rgba(255, 140, 0, 0.3); background: rgba(30, 15, 8, 0.9); }
button:disabled { background: var(--disabled-grey); color: #665; cursor: not-allowed !important; box-shadow: none; animation: none; opacity: 0.6; border: 1px solid #443; }
button.active-state { background: var(--gold-gradient); color: #1a0f00; opacity: 1; cursor: pointer; }

.success-message {
    text-align: center; padding: 40px; background: rgba(20, 10, 5, 0.9); border: 1px solid var(--accent-color); 
    border-radius: 2px; animation: fadeIn 0.5s ease; max-width: 600px; margin: 0 auto;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.2);
}
.check-icon { font-size: 3rem; color: var(--accent-color); margin-bottom: 20px; text-shadow: 0 0 25px rgba(255, 140, 0, 0.6); }
.success-message h3 { font-size: 2rem; margin-bottom: 10px; color: #fff; }
.success-message p { color: #ccc; font-size: 1.1rem; }

/* --- SURGICAL FOOTER UPGRADE (Ultra-Slim Luxury) --- */
footer { 
    padding: 15px 5%; /* Drastically reduced height */
    background: #020101; /* Darker than the rest of the site */
    border-top: 1px solid rgba(230, 179, 74, 0.1); /* Very subtle gold line */
    display: block;
    position: relative;
    z-index: 50;
}

.footer-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Manrope', sans-serif; 
    font-size: 0.65rem; /* Small, understated text */
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: #554a44; /* Muted earth tone, not stark white */
    transition: color 0.3s ease;
}

.footer-signoff {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    color: #7a6b5d;
    letter-spacing: 3px;
    opacity: 0.8;
}

.est { 
    color: var(--accent-color); 
    opacity: 0.6;
}

.separator-dot {
    color: var(--accent-color);
    font-size: 0.5rem;
    opacity: 0.5;
}

/* Hover Effect: Turns gold when touched */
footer:hover .footer-meta {
    color: #887;
}

/* --- MOBILE FOOTER ADJUSTMENT --- */
@media (max-width: 1024px) {
    footer { padding: 20px 20px; }
    
    .footer-content { 
        flex-direction: column-reverse; /* Stack vertically */
        gap: 10px;
    }
    
    .footer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Manrope', sans-serif; 
    font-size: 0.65rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    
    /* CHANGE THIS COLOR: */
    color: #f2e8d5; /* Bone White */
    
    transition: color 0.3s ease;
}
    
    .separator-dot { display: none; } /* Hide dot on mobile stack */
}
/* --- UTILITIES (Sound, BackToTop) --- */
#backToTop {
    display: none; position: fixed; bottom: 90px; right: 30px; width: 50px; height: 50px; background: rgba(20, 10, 5, 0.9);
    border: 1px solid var(--accent-color); color: var(--accent-color); font-size: 1.2rem; cursor: pointer; align-items: center; 
    justify-content: center; transition: 0.3s; z-index: 1999; opacity: 0; border-radius: 50%; backdrop-filter: blur(5px);
}
#backToTop:hover { background: var(--accent-color); color: #1a0f00; box-shadow: 0 0 25px rgba(255, 140, 0, 0.6); }

.sound-control {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: rgba(20, 10, 5, 0.9); 
    border: 1px solid var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    padding: 0; cursor: pointer; z-index: 2000; transition: 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.5); backdrop-filter: blur(5px);
}
.sound-control:hover { background: var(--accent-color); transform: scale(1.1); box-shadow: 0 0 30px rgba(255, 140, 0, 0.7); }
.sound-control:hover svg { stroke: #1a0f00; }
.sound-control svg { width: 20px; height: 20px; display: block; stroke: var(--accent-color); stroke-linecap: round; stroke-linejoin: round; transition: 0.3s; }
.sound-control.playing { animation: pulseGold 2s infinite; }

.menu-float-btn { display: none; }

/* --- MERGED MOBILE/TABLET QUERY (MAX-WIDTH: 1024px) --- */
@media (max-width: 1024px) {
    .menu-float-btn {
        display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; position: fixed; 
        bottom: 30px; left: 30px; width: 50px; height: 50px; background: rgba(20, 10, 5, 0.9); 
        border: 1px solid var(--accent-color); border-radius: 50%; z-index: 2000; backdrop-filter: blur(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }
    .menu-line { width: 20px; height: 1px; background-color: var(--accent-color); transition: 0.3s ease; }
    .menu-float-btn.active .top { transform: translateY(5px) rotate(45deg); }
    .menu-float-btn.active .mid { opacity: 0; }
    .menu-float-btn.active .bot { transform: translateY(-5px) rotate(-45deg); }

    header { 
        height: auto !important; 
        min-height: 100vh !important; 
        padding-bottom: 2cm !important; 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
    }
    nav { padding: 0 15px; }
    .cta-btn { padding: 10px 15px !important; font-size: 0.75rem !important; }
    .hero-content { margin-top: -80px !important; padding-top: 120px; }
    .hero-logo { width: 100%; max-width: 320px !important; margin: 0 auto -10px auto; filter: drop-shadow(0 10px 20px rgba(255, 100, 0, 0.3)); }
    .hero-content h1 { font-size: 2.2rem !important; margin-bottom: 15px !important; }
    .hero-content p { font-size: 1rem !important; margin-bottom: 40px !important; max-width: 90%; }
    .nav-links { display: none; }
    .mobile-separator {
        display: flex !important; position: relative; text-align: center; width: 100%; margin: 0; height: 60px;
        align-items: center; justify-content: center; background: transparent; z-index: 50;
    }
    .mobile-separator img { width: 80px; height: auto; transform: translateY(-50%); filter: drop-shadow(0 5px 20px rgba(255, 100, 0, 0.6)); }
    .mobile-separator .logo-wrapper { background-color: var(--bg-color); padding: 0 20px; z-index: 2; }
    .services { flex-direction: column; overflow: visible !important; position: relative; z-index: 20; }
    .service-box { padding: 60px 20px; border-right: none; border-bottom: 1px solid rgba(230, 179, 74, 0.1); overflow: visible !important; }
    .service-him { position: relative; z-index: 40 !important; border-bottom: 1px solid rgba(230, 179, 74, 0.2); }
    .service-her { position: relative; z-index: 30 !important; border-bottom: none !important; }
    .results-section { position: relative; z-index: 10 !important; padding: 60px 15px; }
    .service-him::after, .service-her::after {
        content: ''; position: absolute; width: 100px; height: 100px; bottom: 0; left: 50%;
        transform: translate(-50%, 50%); background-image: url('Fotografije/pecat.png'); background-size: contain;
        background-repeat: no-repeat; background-position: center; z-index: 100; pointer-events: none;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    }
    .lang-switch { margin-right: 0; }
    .sound-control, #backToTop { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    #backToTop { bottom: 75px; }
    .service-him h3, .service-him .credential-title, .service-her h3, .service-her .credential-title { text-align: center; align-self: center; }
    .service-role { position: relative; top: auto; left: auto; right: auto; display: block; text-align: center; margin-bottom: 20px; }
    .role-right { text-align: center; }
    .about p { padding: 25px !important; text-align: left !important; font-size: 1rem !important; margin: 0 !important; width: 100% !important; }
    .footer-content { display: flex; flex-direction: column; gap: 8px; }
    .footer-left, .footer-right { justify-content: center; }
    .divider { display: none; }
    .contact { padding-top: 20px !important; padding-bottom: 160px !important; position: relative; }
    .bg-seal-img { width: 280%; max-width: none; margin-top: 0; opacity: 0.12; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .atelier-text { position: absolute; bottom: 30px !important; left: 50%; transform: translateX(-50%); width: 100%; display: flex; flex-direction: column; gap: 5px; z-index: 5; }
    .word-row { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; width: 100%; }
    .part-left, .part-center, .part-right { display: flex; display: -webkit-flex; }
    .atelier-text span { font-size: 1.3rem !important; font-weight: 500; letter-spacing: 1px; }
    .part-center span { opacity: 0.5; font-weight: 300; margin: 0 5px; }
    .atelier-row-center { width: 100%; display: center; justify-content: center; padding: 0; }
    .atelier-word span { font-size: 3.2rem !important; letter-spacing: 6px; line-height: 1; font-weight: 400; display: inline-block; margin-top: 5px; }
    .desktop-only { display: none !important; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

    /* Merged content from the second media block */
    .about { position: relative !important; min-height: 600px !important; padding: 80px 20px !important; display: flex !important; flex-direction: column !important; justify-content: center !important; overflow: hidden !important; }
    .about-parallax-bg { background-image: url('Fotografije/aboutus1.jpeg') !important; background-attachment: scroll !important; background-position: center center !important; background-size: 100% 100% !important; position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; z-index: 0 !important; opacity: 1 !important; }
    .about-overlay { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; z-index: 1 !important; background: rgba(10, 5, 2, 0.33) !important; }
    .content-relative { position: relative !important; z-index: 5 !important; width: 100% !important; }
    .results-section h2 { 
        font-size: 1.8rem !important; 
        display: block !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        line-height: 1.2 !important;
    }
}

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10, 5, 2, 0.98); 
    backdrop-filter: blur(10px); z-index: 1999; opacity: 0; pointer-events: none; visibility: hidden; 
    transition: all 0.4s ease; display: flex; align-items: center; justify-content: center;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; visibility: visible; }
.mobile-nav-content { display: flex; flex-direction: column; gap: 40px; text-align: center; }
.mobile-nav-content a { font-family: 'Marcellus', serif; font-size: 2rem; color: #f2e8d5; text-transform: uppercase; text-decoration: none; letter-spacing: 3px; opacity: 0; transform: translateY(20px); transition: 0.5s ease; }
.mobile-nav-overlay.active .mobile-nav-content a { opacity: 1; transform: translateY(0); }

/* --- BUTTON STYLES (Old & New) --- */

/* Old Text Button Style (kept for safety) */
.app-btn-bespoke {
    padding: 10px 22px !important;
    background: #0a0502 !important;
    border: 1px solid #e6b34a !important;
    color: #e6b34a !important;
    font-family: 'Cinzel', serif !important;
    text-decoration: none !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease-in-out !important;
    display: inline-block !important;
    box-shadow: 0 0 15px rgba(230, 179, 74, 0.4) !important;
    filter: drop-shadow(0 0 5px rgba(230, 179, 74, 0.3)) !important;
}
.app-btn-bespoke:hover {
    background: #e6b34a !important;
    color: #0a0502 !important;
    box-shadow: 0 0 30px rgba(230, 179, 74, 0.8) !important;
    transform: scale(1.05) !important;
}

/* NEW LOGO BUTTON STYLE (Use this for the image replacement) */
.app-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 75px; /* Fits perfectly inside the 90px Nav */
    padding: 5px;
    transition: transform 0.3s ease;
}
.nav-app-icon {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(230, 179, 74, 0.6)); /* Premium Gold Glow */
    transition: all 0.4s ease-in-out;
}
.app-logo-link:hover .nav-app-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(230, 179, 74, 1));
}

.lukul-showcase {
    padding: 120px 5% 40px 5%;
    background: #000905;
    position: relative;
    overflow: hidden;
}

.lukul-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-label {
    font-family: 'Manrope', sans-serif;
    color: #e6b34a;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.lukul-text h2 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 25px;
}

.lukul-text p {
    font-weight: 300;
    line-height: 1.8;
    color: #ccc;
    font-size: 17px;
}

.tech-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    color: #e6b34a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-mockup {
    position: relative;
    border: 1px solid rgba(230, 179, 74, 0.2);
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(230,179,74,0.1) 0%, transparent 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.mockup-screen {
    border-radius: 12px;
    overflow: hidden;
    background: #011812;
}

.app-img {
    width: 100%;
    display: block;
    opacity: 0.8;
    transition: 0.5s ease;
}
*
.lukul-showcase:hover .app-img { opacity: 1; transform: scale(1.02); }

@media (max-width: 900px) {
    .lukul-grid { grid-template-columns: 1fr; text-align: center; }
    .feature { justify-content: center; }
}

/* --- SURGICAL HINT TOGGLE --- */
/* Mobile: Hide desktop hint by default on small screens */
@media (max-width: 768px) {
    .desktop-hint { display: none !important; }
    .mobile-hint { display: block !important; }
}

/* Desktop: Hide mobile hint on larger screens */
@media (min-width: 769px) {
    .desktop-hint { display: block !important; }
    .mobile-hint { display: none !important; }
}