/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #003DA5 0%, #1B2951 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 61, 165, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.club-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
}

.contact-label {
    font-weight: 500;
    opacity: 0.8;
}

.contact-value {
    font-weight: 600;
}

.language-switcher {
    display: flex;
    gap: 15px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    background: white;
    color: #003DA5;
    border-color: white;
    font-weight: 600;
}

.lang-btn.active:hover {
    background: #f8f9fa;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.hero h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1B2951;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Company Overview */
.company-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.usa-company, .croatian-branch {
    background: #f8f9fa;
    border-left: 4px solid #003DA5;
    padding: 1.5rem;
    border-radius: 8px;
}

.usa-company header, .croatian-branch header {
    margin-bottom: 1.5rem;
}

.usa-company h3, .croatian-branch h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1B2951;
    margin-bottom: 0.5rem;
}

.company-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    align-items: baseline;
}

.company-details dt {
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
}

.company-details dd {
    color: #2c3e50;
}

/* Financial Performance */
.financial-performance {
    margin-bottom: 3rem;
}

.financial-performance header {
    text-align: center;
    margin-bottom: 2rem;
}

.financial-performance h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1B2951;
    margin-bottom: 1rem;
}

.financial-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #003DA5 0%, #1B2951 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.2);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Asset Structure */
.asset-structure {
    margin-bottom: 3rem;
}

.asset-structure header {
    text-align: center;
    margin-bottom: 2rem;
}

.asset-structure h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1B2951;
}

.asset-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.asset-table th,
.asset-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.asset-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.asset-table td:last-child {
    font-weight: 600;
    color: #2c3e50;
}

.asset-table tr.total {
    background: #f1f3f4;
    font-weight: 700;
}

.asset-table tr.total td {
    border-top: 2px solid #003DA5;
}

/* Related Companies */
.related-companies {
    margin-bottom: 3rem;
}

.related-companies header {
    text-align: center;
    margin-bottom: 2rem;
}

.related-companies header h3 {
    color: #1B2951;
    margin-bottom: 1rem;
}

.related-companies header p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.related-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-companies-table th,
.related-companies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.related-companies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.related-companies-table td:last-child {
    font-weight: 600;
    color: #2c3e50;
}

.related-companies-table tr.total {
    background: #f1f3f4;
    font-weight: 700;
}

.related-companies-table tr.total td {
    border-top: 2px solid #003DA5;
}

/* Business Operations */
.business-operations {
    margin-bottom: 3rem;
}

.business-operations header {
    text-align: center;
    margin-bottom: 2rem;
}

.business-operations h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1B2951;
    margin-bottom: 1rem;
}

.business-operations p {
    color: #6c757d;
    font-size: 1.1rem;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.operation {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operation:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.15);
}

.operation h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #003DA5;
    margin-bottom: 0.5rem;
}

.operation p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Legal Framework */
.legal-framework {
    margin-bottom: 3rem;
}

.legal-framework header {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-framework h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1B2951;
}

.compliance-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.compliance-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.compliance-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1B2951;
    margin-bottom: 0.5rem;
}

.compliance-item p {
    color: #495057;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1B2951;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-title {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.domain-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.domain-link {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
    background: rgba(255, 255, 255, 0.1);
}

.domain-link:hover {
    background: #003DA5;
    transform: translateX(5px);
}

.business-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.business-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.business-tag:hover {
    background: #FFD700;
    color: #1B2951;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contact-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .club-name {
        font-size: 1.8rem;
    }
    
    .language-switcher {
        gap: 12px;
    }
    
    .lang-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .company-overview {
        grid-template-columns: 1fr;
    }
    
    .financial-metrics {
        grid-template-columns: 1fr;
    }
    
    .operations-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .domain-list {
        grid-template-columns: 1fr;
    }
    
    .business-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .club-name {
        font-size: 1.5rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .asset-table {
        font-size: 0.9rem;
    }
    
    .related-companies-table {
        font-size: 0.9rem;
    }
    
    .business-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
a:focus {
    outline: 2px solid #003DA5;
    outline-offset: 2px;
} 
