/* Main CSS - Late 2000s Corporate Style with #BB1717 Theme */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    background-color: #f5f5f5;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(187, 23, 23, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(187, 23, 23, 0.02) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #BB1717 0%, #8B0000 100%);
    border-bottom: 3px solid #660000;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #BB1717 50%, transparent 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.company-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navigation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #BB1717 0%, #8B0000 100%);
    color: #ffffff;
    border-color: #660000;
    box-shadow: 0 2px 5px rgba(187, 23, 23, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #CC2828 0%, #9B1010 100%);
    box-shadow: 0 4px 10px rgba(187, 23, 23, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #BB1717;
    border-color: #BB1717;
}

.btn-secondary:hover {
    background-color: #BB1717;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Section Styles */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #BB1717;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #BB1717 50%, transparent 100%);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 30px;
    text-align: center;
    border-bottom: 3px solid #BB1717;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(187, 23, 23, 0.03) 35px,
            rgba(187, 23, 23, 0.03) 70px
        );
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 50px 30px 20px;
    border-top: 3px solid #BB1717;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-logo span {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #BB1717;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #BB1717;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #BB1717;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444444;
    color: #999999;
    font-size: 12px;
}

/* Card Styles */
.card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 20px rgba(187, 23, 23, 0.15);
    border-color: #BB1717;
    transform: translateY(-2px);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        margin: 0;
    }
    
    .header-content {
        padding: 15px 20px;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .company-name {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 15px;
    }
    
    .nav-menu li a {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .page-header {
        padding: 40px 20px;
    }
    
    .footer {
        padding: 30px 20px 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
