/* Inscape Art - Under Construction Styles */

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

body {
    font-family: 'Georgia', serif;
    background: #0a0a0a;
    color: #e8e8e8;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, #d4af37 0%, #b8860b 100%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* Main container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

/* Logo/Title area */
.logo-container {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.logo::before,
.logo::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    top: 50%;
}

.logo::before {
    left: -120px;
}

.logo::after {
    right: -120px;
}

.tagline {
    font-size: 1.2rem;
    color: #999;
    letter-spacing: 0.1em;
    font-style: italic;
}

/* Definition section */
.definition {
    max-width: 600px;
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.definition::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4af37, transparent, #d4af37);
    opacity: 0;
    animation: glow 4s linear infinite;
    z-index: -1;
}

@keyframes glow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

.definition h2 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.definition p {
    line-height: 1.8;
    color: #ccc;
    font-size: 1.1rem;
}

/* Under construction message */
.construction-message {
    text-align: center;
    margin-bottom: 50px;
}

.construction-message h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.construction-message p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Coming soon features */
.features {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(30, 30, 30, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.feature h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.feature p {
    color: #999;
    font-size: 1rem;
}

/* Email signup */
.notify-section {
    text-align: center;
    padding: 40px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.notify-section h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.email-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #e8e8e8;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
}

.email-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #0a0a0a;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Metal texture overlay */
.metal-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(
            45deg,
            #444,
            #444 1px,
            transparent 1px,
            transparent 15px
        ),
        repeating-linear-gradient(
            -45deg,
            #444,
            #444 1px,
            transparent 1px,
            transparent 15px
        );
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(10, 10, 10, 0.8);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    margin-bottom: 30px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    color: #0a0a0a;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.owner-image {
    display: block;
    width: 120px;
    height: 120px;
    margin: 30px auto 50px auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.owner-image:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 1rem;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.notification.success {
    background: #d4af37;
    color: #0a0a0a;
}

.notification.error {
    background: #c44569;
    color: #fff;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }
    
    .logo::before,
    .logo::after {
        display: none;
    }
    
    .features {
        flex-direction: column;
        gap: 20px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: auto;
    }

    footer {
        margin-top: 60px;
        padding: 30px 20px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        width: auto;
    }
}
