/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155, #0f172a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);

    max-width: 700px;
    width: 100%;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);

    overflow-wrap: break-word;
}

.tagline {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-info {
    text-align: center;
    margin: 30px 0;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 14px 0;
}

.contact-info span {
    font-weight: bold;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted #fff;
    transition: border-color 0.3s;
}

.contact-info a:hover {
    border-bottom-color: transparent;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: #ffd700; /* Gold on hover */
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
    .contact-info {
        font-size: 1rem;
    }
    .contact-info span {
        width: 70px;
    }

    body {
        padding: 15px;
    }

    .container {
        padding: 30px 20px;
    }

    h1 {
        letter-spacing: 0;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .contact-info {
        font-size: 1rem;
    }
}