/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
        url('files/c8ba966b-2c7a-4e26-b37a-79b786321f24.jpg') center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    color: #F5F3EE;
    margin-bottom: 0.5rem;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

.tagline {
    font-size: 1.2rem;
    color: #F5F3EE;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

/* Main content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.coming-soon {
    background-color: #E4E6DA;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    max-width: 640px;
    width: 100%;
    backdrop-filter: blur(6px);
    animation: slideInRight 1s ease-out;
}

h2 {
    font-size: 2rem;
    color: #c89a3f;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-info {
    font-size: 0.95rem;
    margin-bottom: 0;
    margin-top: 9.5rem;
    color: #666;
    font-weight: 400;
}

.contact-info a {
    color: #c89a3f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: #a67c2f;
    border-bottom: 1px solid #c89a3f;
}

/* Logo/Image styles */
.logo-placeholder {
    margin: 2rem 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

#main-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: none;
}

/* Footer */
footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0.75rem;
    text-align: center;
    padding: 0 1.5rem;
    color: #ffffff;
    font-size: 0.85rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

footer p {
    color: #ffffff;
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.25rem;
        margin: 0 auto;
    }

    main {
        justify-content: center;
        padding-right: 0;
    }
    
    h1 {
        font-size: 1.9rem;
    }
    
    .tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .coming-soon {
        padding: 2rem 1.5rem;
    }

    #main-logo {
        max-height: 240px;
    }
}
