@import url(font-import.css);

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background:
        radial-gradient(ellipse at bottom right, rgba(50, 45, 55, 0.5) 0%, rgba(35, 30, 40, 0.3) 40%, transparent 70%),
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    font-family: 'gotham_extralightregular', Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;
}

/* Typography */
h1 {
    font-family: 'gotham_boldregular', Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #ff9977;
    text-transform: uppercase;
    font-size: clamp(4.6rem, 3.2vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px #0000004d;
    letter-spacing: -3px;
}

.subtitle {
    color: #ff6644;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing:  2px;
}

/* Container section */
.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(circle at 30% 20%, rgba(100, 181, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(100, 181, 246, 0.05) 0%, transparent 40%);
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(100, 181, 246, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(100, 181, 246, 0.03) 50%, transparent 51%);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

.container-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container-content {
        padding: 1rem;
    }
    
    .contact-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .contact-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container-content {
        padding: 1rem 0.5rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }
}

