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

:root {
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --gold-dark: #9B7509;
    --black: #000000;
    --black-soft: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #666666;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.2), 0 10px 10px -5px rgb(0 0 0 / 0.1);
    --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.3);
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(184, 134, 11, 0.03) 10px,
        rgba(184, 134, 11, 0.03) 20px
    );
    pointer-events: none;
}

.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(184, 134, 11, 0.3));
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4rem;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.contact-item-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    height: 100%;
}

.contact-item-link:hover .contact-item {
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.contact-icon i {
    color: var(--gold);
}

.contact-details h3 {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.contact-details p {
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-minimal {
    position: absolute;
    bottom: 2rem;
    text-align: center;
    color: var(--white);
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.footer-logo-small {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-minimal p {
    opacity: 0.7;
}

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

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

@media (max-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-logo {
        max-width: 280px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 3rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 1rem;
    }
    
    .footer-minimal {
        position: relative;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
}
