/* --- GLOBALNE VARIJABLE I RESET --- */
:root {
    --bg-dark: #0f172a; /* Ponoćno plava */
    --gold: #d4af37; /* Zlatna */
    --gold-light: #f5d76e;
    --text-light: #f8f9fa;
    --font-heading: 'Playfair Display', serif;
    --font-hand: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* --- 1. TICKER ANIMACIJA --- */
.ticker-wrap {
    width: 100%;
    background: linear-gradient(90deg, #000000, var(--bg-dark), #000000);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    padding: 10px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

.ticker__item {
    font-size: 14px;
    font-weight: 300;
    color: var(--gold-light);
    padding: 0 40px;
    letter-spacing: 1px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- 2. HERO SLIDER --- */
/* ==========================================================================
   HERO SEKCIJA - KOMPLETAN STIL
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Puna visina ekrana */
    background-color: #0f172a; /* Tamna podloga dok se slika ne učita */
    overflow: hidden;
}

/* Swiper kontejner unutar Hero sekcije */
.hero .mySwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- NOVO: Object-fit zamena za background-image --- */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Slika popunjava prostor bez razvlačenja */
    object-position: center; /* Fokus slike ostaje u sredini */
    z-index: 0; /* Slika je na dnu */
}

/* --- Overlay (Zatamnjenje preko slike za čitljivost teksta) --- */
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(15, 23, 42, 0.4) 0%, 
        rgba(15, 23, 42, 0.7) 60%, 
        rgba(15, 23, 42, 0.9) 100%
    );
    z-index: 1; /* Iznad slike, ispod teksta */
}

/* --- Sadržaj Hero sekcije (Tekst i dugmad) --- */
.hero-content {
    position: relative;
    z-index: 2; /* Iznad overlay-a */
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Responzivna veličina slova */
    letter-spacing: 4px;
    color: #d4af37; /* Zlatna boja */
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 3vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
    color: #f1f1f1;
}

/* --- Hero Dugmad --- */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button.pulse {
    background: #d4af37;
    color: #0f172a;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.cta-button.pulse:hover {
    background: #f1c40f;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
}

/* --- Scroll Indikator (Miš animacija) --- */
/* --- ISPRAVKA PREKLAPANJA: HERO SCROLL DUGME --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
@media (max-width: 768px) {
    .scroll-indicator { display: none !important; } /* Sklanjamo ga sa mobitela jer smeta Floating dugmetu */
}
.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #d4af37;
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #d4af37;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.scroll-indicator p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animacija točkića na mišu */
@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* --- Responzivnost za mobilne uređaje --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .cta-button {
        width: 100%;
    }
}
/* CTA DUGME */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold), #b8860b);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.4s;
}

.cta-button i { margin-right: 10px; }

.cta-button:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

.pulse-anim {
    animation: pulse 2s infinite 2.5s; /* Počinje da pulsira nakon učitavanja */
}

/* SCROLL INDIKATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    animation: scroll-mouse 1.5s infinite;
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(212, 175, 55, 0.9); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
}

@keyframes scroll-mouse {
    0% { top: 10px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .subtitle-handwritten { font-size: 2.2rem; }
    .hero-text { font-size: 1rem; }
}

/* --- ZAJEDNIČKI STILOVI ZA SEKCIJE --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.alt-bg {
    background-color: #0b1121; /* Malo tamnija nijansa za vizuelnu razliku */
    background-image: url('https://www.transparenttextures.com/patterns/black-paper.png'); /* Suptilna tekstura */
}

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.handwritten-gold {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.seo-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
    text-align: justify;
}

/* --- O MERIMI SPECIFIČNO --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ornament-frame {
    position: relative;
    padding: 15px;
    border: 2px solid var(--gold);
    border-radius: 10px;
}

.ornament-frame::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 1px solid var(--gold);
    border-radius: 15px;
    opacity: 0.5;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    filter: sepia(20%) contrast(110%);
}

.signature {
    font-family: var(--font-hand);
    font-size: 3.5rem;
    color: var(--gold);
    margin-top: 30px;
    text-align: right;
}

/* --- USLUGE I KONTAKT DUGMAD --- */
.service-content {
    text-align: center;
}

.service-description {
    max-width: 900px;
    margin: 0 auto 40px;
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-list li {
    color: var(--gold-light);
    font-weight: 600;
}

.benefit-list i {
    margin-right: 8px;
    color: var(--gold);
}

.service-cta {
    margin-top: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    border: 1px dashed var(--gold);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.contact-btn.call { background: #d4af37; color: #000; animation: pulse 2s infinite; }
.contact-btn.whatsapp { background: #25D366; }
.contact-btn.viber { background: #7360f2; }

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: 2; }
    .about-text { order: 1; }
}

/* --- SVETILIŠTE ŽELJA --- */
.wish-sanctuary {
    position: relative;
    padding: 100px 0;
    /* PUTANJA DO SLIKE */
    background-image: url('images/wish-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekat za luksuzniji izgled */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay da bi tekst bio čitljiv preko slike */
.wish-sanctuary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Tamni filter */
    z-index: 1;
}

.wish-box {
    position: relative;
    z-index: 2; /* Tekst ide iznad filtera */
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(5px); /* Efekt zamućenog stakla */
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.wish-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold);
    color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.light-btn {
    background: var(--gold);
    color: black;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.light-btn:hover {
    box-shadow: 0 0 20px var(--gold);
}

/* ANIMACIJA SVEĆE */
.candle-container {
    margin-top: 40px;
    transition: opacity 1s ease;
}

.hidden { display: none; opacity: 0; }

.candle {
    width: 40px;
    height: 120px;
    background: #fff;
    margin: 0 auto;
    position: relative;
    border-radius: 5px;
    box-shadow: inset 0 0 10px #ccc;
}

.flame {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: #ffcc00;
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 0 20px #ffcc00, 0 0 40px #ff6600;
    animation: flicker 0.1s infinite alternate;
}

@keyframes flicker {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-52%) scale(1.1); }
}

.blessing-msg {
    margin-top: 20px;
    color: var(--gold-light);
    font-style: italic;
    animation: fadeIn 2s forwards;
}

/* --- FAQ STILOVI --- */
.faq-container {
    max-width: 900px;
    margin: 50px auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--gold-light);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease; /* Ovo daje glatko otvaranje */
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Dovoljno velika vrednost da stane tekst */
    padding: 20px;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg); /* Rotira strelicu ka gore */
}
/* --- TESTIMONIALS SLIDER --- */
/* Stilovi za Testimonials Kartice */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-card {
    background: linear-gradient(145deg, #161e2e, #0f172a);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    height: 100%; /* Da sve kartice budu iste visine */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.testimonial-card i.quote-icon {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
}

/* Navigacija za slajder */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* --- KONTAKT SEKCIJA --- */
.contact-final {
    padding: 100px 0;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png'), linear-gradient(to bottom, #0f172a, #000000);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--gold);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.contact-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

/* Veliko Pulsirajuće Dugme */
.big-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--gold), #b8860b);
    color: #000;
    padding: 25px 50px;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 100px;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    margin-bottom: 30px;
}

.big-call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--gold);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 2px solid var(--gold);
    animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.social-contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 15px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.whatsapp-bg { background: #25D366; }
.viber-bg { background: #7360f2; }

.social-btn:hover { opacity: 0.9; transform: translateY(-3px); }

/* --- FOOTER --- */
.main-footer {
    background: #050505;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 50px;
}

.footer-logo { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 20px; }
.footer-logo span { color: var(--gold); }

.footer-links ul { list-style: none; }
.footer-links a { color: #94a3b8; text-decoration: none; line-height: 2.5; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-seo p { font-size: 0.9rem; color: #64748b; line-height: 1.8; font-style: italic; }

.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.05); margin: 40px 0 20px; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #475569; }

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: 0.5s;
    z-index: 1000;
}

.back-to-top.show { opacity: 1; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .big-call-btn { font-size: 1.5rem; padding: 20px 30px; }
}

/* Osiguravamo da su dugmići uvek klikabilni */
.scroll-indicator, .back-to-top, .cta-button, .contact-btn {
    pointer-events: auto !important;
    z-index: 999 !important;
}

/* Popravka za Back to Top da se vidi iznad svega */
.back-to-top {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Stilovi za slike u uslugama */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dve kolone */
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

/* Klasa koja okreće redosled (tekst levo, slika desno) */
.service-grid.reverse {
    direction: ltr; /* Osigurava da je tekst prvi u kodu, ali vizuelno drugi ako treba */
}
.service-grid.reverse .service-text { order: 1; }
.service-grid.reverse .service-image { order: 2; }

.service-image .image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Suptilna zlatna ivica */
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05); /* Suptilan zum na hover */
}

/* Responzivnost: Na mobilnom slika ide iznad teksta */
@media (max-width: 992px) {
    .service-grid, .service-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-grid.reverse .service-text { order: 2; }
    .service-grid.reverse .service-image { order: 1; }
}

.service-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seo-content p {
    margin-bottom: 15px; /* Razmak između pasusa teksta */
    line-height: 1.7;
    color: #e2e8f0;
}
/* Osiguranje da slike ne prelaze širinu ekrana na telefonu */
@media (max-width: 768px) {
    .service-grid {
        display: flex;
        flex-direction: column !important; /* Slika ide iznad ili ispod teksta */
        gap: 20px;
    }
    
    .service-image {
        order: -1; /* Forsira sliku da uvek bude PRVA na mobilnom, iznad teksta */
        max-height: 250px;
    }
    
    .service-image img {
        height: 250px;
        object-fit: cover;
    }
}


/* --- NOVO: FLOATING ACTION DUGME (Sredina desno) --- */
.floating-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-contact-btn {
    width: 60px; height: 60px; border-radius: 50%; background: var(--gold); border: none; color: #0f172a; font-size: 24px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.5); z-index: 10;
}
.contact-options {
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.3s;
}
.contact-options.active { opacity: 1; visibility: visible; transform: translateY(0); }
.option-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 20px; }
.option-btn.phone { background: #2ecc71; }
.option-btn.viber { background: #7360f2; }
.option-btn.whatsapp { background: #25d366; }

/* --- NOVO: BACK TO TOP (Dole desno) --- */
.back-to-top {
    position: fixed; bottom: 20px; right: 25px; width: 50px; height: 50px; background: rgba(15, 23, 42, 0.9); border: 1px solid var(--gold); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 9998; text-decoration: none; opacity: 0; visibility: hidden; transition: 0.3s;
}
.back-to-top.show { opacity: 1; visibility: visible; }