@font-face {
    font-family: 'ProximaNova';
    src: url('ProximaNova-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'ProximaNova', 'Arial', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 5px 15px rgba(238, 27, 37, 0.2));
}

h1 {
    font-family: 'Fugaz One', cursive;
    font-size: 5rem;
    color: #ee1b25;
    margin-bottom: 30px;
    font-weight: normal;
    text-shadow: 0 3px 6px rgba(238, 27, 37, 0.2);
    animation: fadeInUp 1s ease-out;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 80px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-info {
    display: grid;
    gap: 25px;
    max-width: 400px;
    margin: 0 auto;
}

/* Address styling */
address {
    font-style: normal;
}

.contact-item {
    background: #ffffff;
    border: 2px solid #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    overflow: hidden;
    position: relative;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(238, 27, 37, 0.15);
    border-color: #ee1b25;
}

.contact-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    width: 100%;
    height: 100%;
}

.contact-item a:hover {
    color: #ee1b25;
}

.contact-item i {
    color: #ee1b25;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-item span {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Address item without link */
.contact-item.address-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .contact-item i {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 1rem;
    }
}