/* ==========================================
   ILIEV GLOBAL LLC — Custom Styles
   ========================================== */

* {
    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 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #ee8d4d;
    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:hover {
    background: #f66404;
    transform: translateY(-2px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #393430;
    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-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: #393430;
    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;
}

.bond-full-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* — 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 — */
.section-cta {
    background: #393430;
    color: #ffffff;
    text-align: center;
}

.cta-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-info {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-info strong {
    color: #ffffff;
}

/* — FOOTER — */
.footer {
    background: #1a1917;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 1rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-icon {
    width: 36px;
    height: 36px;
    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: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-icon:hover svg {
    fill: #ffffff;
}

.footer-copy {
    font-size: 0.95rem;
    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);
}

/* — RESPONSIVE IMAGES — */
.responsive-img {
    max-width: 100%;
    height: auto;
}