@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #111111;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}

/* — LOGO — */
.logo-img {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

/* — HERO — */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem 1.5rem;
}

.hero-title {
    font-family: 'Abril Fatface', serif;
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: normal;
    color: #ee8d4d;
}

.hero-subtitle {
    font-family: 'DM Serif Text', serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* — BUTTONS — */
.btn-orange, .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    color: #ffffff;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-orange { background: #ee8d4d; }
.btn-orange:hover { background: #f66404; transform: translateY(-2px); }

.btn-dark { 
    background: #393430;
    border-radius: 25px;
}
.btn-dark:hover { background: #514c48; transform: translateY(-2px); }

/* — SECTIONS — */
.section {
    padding: 5rem 2rem;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* — PROCEDURE SECTION — */
.section-procedure {
    background: #ffffff;
}

.section-title-blue {
    font-family: 'DM Serif Text', serif;
    font-size: 2.2rem;
    color: #0210cd;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.procedure-text {
    font-size: 1.5rem;
    color: #0210cd;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.procedure-text strong {
    color: #111111;
}

.procedure-grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.bond-image-wrapper {
    flex-shrink: 0;
}

.bond-coupon {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
}

/* — BOND DETAILS SECTION — */
.section-details {
    background: #f5f3f0;
}

.detail-text {
    font-size: 1.3rem;
    color: #393430;
    line-height: 1.9;
}

.detail-text strong {
    color: #111111;
}

/* СЛИКАТА НА ОБВРЗНИЦАТА ОД 1000€ - 70% ШИРИНА НА ЛАПТОП */
.bond-full-image {
    width: 70%;
    max-width: 770px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    margin: 0 auto;
    display: block;
}

/* — REGISTRATION SECTION — */
.section-registration {
    background: #ffffff;
}

.reg-header {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #f66404;
    padding: 0.8rem 1.5rem;
    border-left: 4px solid #f66404;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.reg-step {
    font-size: 1.15rem;
    color: #393430;
    line-height: 1.9;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.reg-step strong {
    color: #111111;
}

/* — CTA SECTION — ПОСВЕТЛА ПОРТКАЛОВА, 50% ПОМАЛА ВИСОЧИНА — */
.section-cta {
    background: #f66404;
    color: #ffffff;
    text-align: center;
    padding: 2.5rem 1rem;
}

.cta-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-info {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-info strong {
    color: #ffffff;
}

/* WHATSAPP - светло зелена боја, подебела */
.whatsapp-text {
    color: #7CFC00;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* — FOOTER — ЦРНА ПОЗАДИНА — */
.footer {
    background: #1a1917;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1rem 1rem;
    font-size: 0.85rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.footer-icon:hover {
    background: #ee8d4d;
}

.footer-icon svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-icon:hover svg {
    fill: #ffffff;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* — SCROLL ANIMATIONS — */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================= */
/* 📱 МОБИЛЕН ФОРМАТ (Екрани до 768px) */
/* ========================================================= */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .logo-img {
        height: 60px;
        max-width: 200px;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-orange, .btn-dark {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 1.2rem;
    }
    
    .section-title-blue {
        font-size: 1.8rem;
    }
    
    .procedure-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #0210cd;
    }
    
    .procedure-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .bond-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .bond-coupon {
        width: 50%; 
        max-width: 250px; 
        margin: 0 auto;
    }
    
    .detail-text {
        font-size: 1.1rem;
        text-align: left;
    }
    
    /* СЛИКАТА НА ОБВРЗНИЦАТА ОД 1000€ - 100% ШИРИНА НА МОБИЛЕН */
    .bond-full-image {
        width: 100%;
        max-width: 100%;
    }
    
    .reg-header {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
    
    .reg-step {
        font-size: 1rem;
        padding-left: 0;
    }
    
    /* CTA - прилагодено за мобилен */
    .section-cta {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-info {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .footer {
        padding: 0.8rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .footer-icons {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .footer-copy {
        font-size: 0.7rem;
    }
}

/* ========================================================= */
/* 📲 ТАБЛЕТ ФОРМАТ (Екрани од 769px до 1024px) */
/* ========================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .procedure-grid {
        gap: 2rem;
    }
    
    .bond-coupon {
        width: 45%;
        max-width: 300px;
    }
    
    /* СЛИКАТА НА ОБВРЗНИЦАТА ОД 1000€ - 85% ШИРИНА НА ТАБЛЕТ */
    .bond-full-image {
        width: 85%;
        max-width: 935px;
    }
    
    /* CTA - прилагодено за таблет */
    .section-cta {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    
    .cta-info {
        margin-bottom: 1.5rem;
    }
}