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

:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941F;
    --black: #000000;
    --black-light: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--black);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

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

/* Logo Styles */
header {
    margin-bottom: 60px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

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

/* Main Content */
main {
    margin-bottom: 40px;
}

.contact-info h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    padding: 35px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item h2 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.email-link {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.email-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-details {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .contact-item {
        flex: 1;
        max-width: 300px;
    }
    
    .contact-info h1 {
        font-size: 3rem;
    }
    
    .logo {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .contact-info h1 {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-item h2 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
}

