/* Font Face Declarations */
@font-face {
    font-family: 'PP Mondwest';
    src: url('/fonts/ppmondwest-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Mondwest';
    src: url('/fonts/ppneuebit-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Mondwest';
    src: url('/fonts/ppmondwest-regular.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
}


/* Header */
.header {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 200px;
    background: url('/images/bgs/banner.webp') center/cover;
    z-index: 1;
}

.company-name {
    position: relative;
    z-index: 2;
    font-family: 'PP Mondwest', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: white;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Main Content */
.main-content {
    margin-bottom: 3rem;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.column {
    text-align: left;
}

.tagline {
    font-family: 'PP Mondwest', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-section {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.contact-section h3 {
    font-family: 'PP Mondwest', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #666;
}

/* Services Section */
.column {
    position: relative;
}

.services-title {
    font-family: 'PP Mondwest', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.services-list {
    margin-bottom: 2rem;
}

.service-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8f9fa;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h4 {
    font-family: 'PP Mondwest', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Company Details */
.company-details {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.company-details h3 {
    font-family: 'PP Mondwest', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.details-list p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.details-list strong {
    font-family: 'Lora', Georgia, serif;
    color: #555;
    font-weight: 400;
}

/* Footer */
.footer {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.footer p {
    color: #999;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding-top: 1rem;
    }
    
    .container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .header {
        margin-bottom: 2rem;
    }
    
    .header-bg {
        height: 150px;
    }
    
    .company-name {
        font-size: 2.5rem;
        padding: 0;
        min-height: 150px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .column {
        text-align: left;
    }
    
    .tagline {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-section {
        padding-top: 1.5rem;
    }
    
    .services-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .service-item {
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }
    
    .service-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .company-details {
        padding-top: 1.25rem;
    }
    
    .company-details h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .details-list p {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .footer {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0.5rem;
    }
    
    .container {
        padding: 0.75rem;
    }
    
    .header {
        margin-bottom: 1.5rem;
    }
    
    .header-bg {
        height: 120px;
    }
    
    .company-name {
        font-size: 2rem;
        padding: 0;
        min-height: 120px;
    }
    
    .main-content {
        margin-bottom: 2rem;
    }
    
    .two-column {
        gap: 1.5rem;
    }
    
    .tagline {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .contact-section {
        padding-top: 1rem;
    }
    
    .contact-section h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-info p {
        margin-bottom: 0.25rem;
    }
    
    .contact-info a {
        font-size: 0.9rem;
    }
    
    .services-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.25rem;
    }
    
    .service-item {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .service-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .service-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .company-details {
        padding-top: 1rem;
    }
    
    .company-details h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .details-list p {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .footer {
        padding-top: 1rem;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
}
