:root {
    --primary-green: #a4c639;
    --dark-text: #2c2c2c;

    --bs-primary: #c0d538;
    --bs-secondary: #ff5722;

    --bs-primary-rgb: 192, 213, 56;
    --bs-secondary-rgb: 255, 87, 34;

    --bs-btn-color: #000;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: #fdfdfd;
}

a {
    color: var(--dark-text);
}

.btn-primary {
    --bs-btn-bg: #c0d538;
    --bs-btn-border-color: #c0d538;
    --bs-btn-hover-bg: #aabf2f;
    --bs-btn-hover-border-color: #aabf2f;
    --bs-btn-active-bg: #95a92a;
    --bs-btn-active-border-color: #95a92a;
    --bs-btn-color: #000;
}

.btn-secondary {
    --bs-btn-bg: #ff5722;
    --bs-btn-border-color: #ff5722;
    --bs-btn-hover-bg: #e64a19;
    --bs-btn-hover-border-color: #e64a19;
    --bs-btn-active-bg: #d84315;
    --bs-btn-active-border-color: #d84315;
    --bs-btn-color: #fff;
}

/* Navbar & Sticky Logic */
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    /* Zmena: Tmavé pozadie aplikované globálne pre desktop aj mobil[cite: 4] */
    background-color: #212529 !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: #a4c639 !important;
    font-weight: 600;
    font-size: 3rem;
    font-family: 'Urbanist', sans-serif;
}

.nav-link {
    font-weight: 500;
    /* Zmena: Biele položky menu aplikované globálne[cite: 4] */
    color: #ffffff !important;
}

.btn-cta {
    border-radius: 12px;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    background-image: url('/img/BG.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.fw-800 {
    font-weight: 800;
}

.badge {
    background-color: #d8e69e;
    color: #6a8216;
    border-radius: 50px;
    padding: 8px 16px;
}

/* Map Labels */
.map-label {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    color: var(--dark-text);
    z-index: 10;
    pointer-events: none;
    font-size: 3rem;
    line-height: 1;
    opacity: 0;
}

#js-label-prievidza {
    background-color: #212529;
    color: #c2d73b;
}

#js-label-dublin {
    background-color: #212529;
    color: #cedcab;
}

/* Animations */
.animate-dublin {
    animation: slideFromLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-prievidza {
    animation: slideFromRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        left: -10%;
    }

    to {
        opacity: 1;
        left: 10%;
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        right: -10%;
    }

    to {
        opacity: 1;
        right: 10%;
    }
}

/* Profile Image & Decorations */
.profile-wrapper {
    position: relative;
    display: inline-block;
    padding: 40px;
}

.profile-img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 40px;
    border: 8px solid white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.deco-bubble-1,
.deco-bubble-2,
.deco-book,
.deco-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-green);
}

.deco-bubble-1 {
    top: 10%;
    left: 0;
}

.deco-bubble-2 {
    top: 5%;
    right: 5%;
}

.deco-book {
    bottom: 5%;
    left: 10%;
    border-radius: 12px;
}

.deco-star {
    bottom: 15%;
    right: 0;
    color: #f1c40f;
}

/* Services */
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #f1f8d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 15px;
}

/* Typography & Effects */
h1 {
    font-family: 'Urbanist', sans-serif;
}

.transition-effect {
    transition: opacity 0.6s ease-in-out;
}

.quote-container {
    transition: all 0.6s ease-in-out;
}

/* Responzivita */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 2rem;
    }

    .navbar>.container {
        position: relative;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #212529;
        padding: 1.5rem;
        z-index: 1000;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .navbar-collapse .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .navbar-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .hero-section {
        background-image: none;
        background-color: var(--primary-green);
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .map-label {
        display: none !important;
    }

    .profile-img {
        width: 100%;
    }
}