/* ===========================
   CSS Custom Properties
   =========================== */
:root {
    --bg-dark: #2c3340;
    --text-white: #ffffff;
    --text-gray: #bfbfbf;
    --accent-yellow: #ffd401;
    
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
}

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5vh 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===========================
   Decorative Plus Symbol
   =========================== */
.decorative-plus {
    position: fixed;
    top: 40vh;
    left: 70vw;
    transform: translate(-50%, -50%);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-yellow);
    font-weight: 300;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* ===========================
   Main Content
   =========================== */
.content {
    position: relative;
    z-index: 1;
    padding-bottom: 5vh;
}

.company-info {
    max-width: 45vw;
    min-width: 320px;
    margin-left: 3vw;
}

/* ===========================
   Logo
   =========================== */
.logo {
    width: clamp(91px, 12vw, 156px);
    height: auto;
    display: block;
    margin-bottom: 40px;
}

/* Typography */
.company-name {
    font-size: clamp(1.25rem, 2.5vw, 1.375rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.address {
    font-size: clamp(1.063rem, 2vw, 1.063rem);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
    line-height: 1.5;
}

.country {
    font-size: clamp(1rem, 1.8vw, 1rem);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.country-details {
    color: var(--text-gray);
}

/* Registration Info */
.registration-info {
    margin-bottom: var(--spacing-lg);
}

.ico,
.dic {
    font-size: clamp(0.75rem, 1.6vw, 0.75rem);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
}

.value {
    color: var(--text-white);
    font-weight: 400;
}

/* Bottom Section - Contact & Registry */
.bottom-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.75;
}

.contact-link {
    font-size: clamp(1rem, 1.8vw, 1rem);
    font-weight: 400;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-yellow);
}

/* Separator */
.separator {
    display: none;
}

/* Registry Info */
.registry-block {
    flex-shrink: 0;
}

.registry-info {
    font-size: clamp(1rem, 1.8vw, 1rem);
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===========================
   Responsive Design
   =========================== */

/* Mobile (up to 767px) - larger text and top alignment */
@media screen and (max-width: 767px) {
    .container {
        justify-content: flex-start;
    }
    
    .content {
        padding-bottom: 0;
        margin-top: 0;
    }
    
    .company-name {
        font-size: 1.25rem;
    }
    
    .address {
        font-size: 1.063rem;
    }
    
    .country {
        font-size: 1rem;
    }
    
    .ico,
    .dic {
        font-size: 0.75rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .registry-info {
        font-size: 1rem;
    }
}

/* Tablet (768px and up) */
@media screen and (min-width: 768px) {
    .container {
        padding: 5vh 6vw;
    }
    
    .logo {
        width: clamp(117px, 11vw, 156px);
    }
    
    .company-info {
        max-width: 50vw;
    }
    
    .bottom-section {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--spacing-xl);
    }
    
    .separator {
        display: block;
        width: 1px;
        height: 60px;
        background-color: var(--text-gray);
        opacity: 0.3;
        flex-shrink: 0;
    }
    
    .contact-block {
        flex: 0 0 auto;
    }
    
    .registry-block {
        flex: 0 0 auto;
    }
}

/* Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
    .container {
        padding: 5vh 8vw;
    }
    
    .decorative-plus {
        font-size: 3rem;
    }
    
    .logo {
        width: 10vw;
        max-width: 156px;
    }
    
    .company-info {
        max-width: 45vw;
    }
    
    .company-name {
        font-size: 1.375rem;
    }
    
    .address,
    .country,
    .ico,
    .dic,
    .contact-link,
    .registry-info {
        font-size: 1.063rem;
    }
    
    .contact-icon {
        width: 24px;
        height: 24px;
    }
    
    .separator {
        height: 70px;
    }
}

/* Large Desktop (1440px and up) */
@media screen and (min-width: 1440px) {
    .container {
        padding: 5vh 10vw;
    }
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .decorative-plus {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .contact-link {
        color: black;
        text-decoration: underline;
    }
}
