* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    min-height: 100vh;
}

.container {
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: relative;
    overflow: hidden;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ec2127' fill-opacity='1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.header-content {
    position: relative;
    max-width: 28rem;
    margin: 0 auto;
}
.logo img{
    height: 6rem;
 
}

.logo {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #ec2127 0%, #d91e24 100%); */
    border-radius: 50%;
   /*  box-shadow: 0 10px 25px rgba(236, 33, 39, 0.25); */
    color: white;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.tagline {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Main Content */
.main-content {
    max-width: 28rem;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    gap: 1rem;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-card:active {
    transform: scale(0.98);
}

.link-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.link-icon svg{
    fill: white;
    width: 2rem;
    
}
.link-card:hover .link-icon {
    transform: scale(1.1);
}

.red-gradient {
    background: linear-gradient(135deg, #ec2127 0%, #d91e24 100%);
}

.gray-gradient {
    background: linear-gradient(135deg, #323232 0%, #1f1f1f 100%);
}

.link-content {
    flex: 1;
}

.link-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.link-card:hover .link-title {
    color: #ec2127;
}

.link-description {
    font-size: 0.875rem;
    color: #6b7280;
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 33, 39, 0.05) 0%, rgba(217, 30, 36, 0.05) 100%);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card:hover .hover-overlay {
    opacity: 1;
}

/* Social Section */
.social-section {
    margin-top: 3rem;
}

.social-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #fef2f2;
    color: #ec2127;
}

.social-link:active {
    transform: scale(0.95);
}

/* Contact Card */
.contact-card {
    margin-top: 3rem;
    background: linear-gradient(135deg, #ec2127 0%, #d91e24 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(236, 33, 39, 0.25);
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    gap: 0.75rem;
}

/* Footer */
.footer {
    margin-top: 3rem;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-subtext {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 480px) {
    .header {
        padding: 3rem 1rem 2rem;
    }
    
    .company-name {
        font-size: 1.875rem;
    }
    
    .main-content {
        padding: 0 1rem 4rem;
    }
    
    .link-card {
        padding: 1.25rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 3rem;
        height: 3rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-card {
    animation: fadeInUp 0.6s ease forwards;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }

.social-section {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.contact-card {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}
.contact-item a{
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.contact-item a:hover{
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
    transition: all 0.3s ease;
}   

.footer {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}
#footer-text{
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;    
}
#footer-text a{
    color: #ec2127;
    text-decoration: none;
}
#footer-text a:hover{
    color: #d91e24;
    text-decoration: underline;
    transition: all 0.3s ease;
}   