root {
    --bg-color: #F9F8F3;
    --primary-blue: #2B435B;
    --accent-red: #C13333;
    --accent-gold: #E2B542;
    --text-dark: #1f2b38;
    --card-hover-bg: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F9F8F3;
    color: #1f2b38;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    padding: 20px;
}

header {
    margin-bottom: 50px;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 25px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #2B435B;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.2rem;
    color: #C13333;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

p {
    font-size: 1.1rem;
    color: #2B435B;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: transparent;
    padding: 30px 15px;
    border-radius: 12px;
    border: 2px solid rgba(43, 67, 91, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1f2b38;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 67, 91, 0.08);
    border-color: #E2B542;
    background-color: #ffffff;
}

.contact-card i {
    font-size: 2.2rem;
    color: #2B435B;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-card:hover i {
    color: #C13333;
}

.contact-card h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #2B435B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card span {
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.contact-card:hover span {
    color: #C13333;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(43, 67, 91, 0.1);
}

footer p {
    font-size: 0.75rem;
    color: #2B435B;
    opacity: 0.6;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.6rem;
    }
    .contact-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2.2rem;
    }
}
