/* Font definitions */
@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('Fonts/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('Fonts/Kumbh/KumbhSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('Fonts/Kumbh/KumbhSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'Avenir Next LT Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.logo {
    max-width: 520px;
    height: auto;
    margin-bottom: 1.25rem;
    margin-left: -10px;
}

header h1 {
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a202c;
    letter-spacing: -0.02em;
}

/* Main Content */
main {
    flex: 1;
}

/* Intro Section */
.intro {
    margin-bottom: 5rem;
}

.intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
}

/* Contact Section */
.contact {
    margin-bottom: 4rem;
}

.contact h2 {
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Form Styles */
form {
    max-width: 520px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.75rem;
}

label {
    display: block;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1rem;
    color: #2d3748;
    background-color: #ffffff;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #69B3E7;
    box-shadow: 0 0 0 3px rgba(105, 179, 231, 0.15);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    background-color: #69B3E7;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

button[type="submit"]:hover {
    background-color: #4A9DD9;
}

button[type="submit"]:active {
    transform: translateY(1px);
}

/* Footer */
footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 4rem;
}

footer p {
    font-size: 0.875rem;
    color: #718096;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .container {
        padding: 2rem 1.25rem;
    }

    header {
        margin-bottom: 3rem;
    }

    .logo {
        max-width: 360px;
        margin-left: -6px;
    }

    header h1 {
        font-size: 1.25rem;
    }

    .intro {
        margin-bottom: 3.5rem;
    }

    .intro p {
        font-size: 1.125rem;
    }

    .contact h2 {
        font-size: 1.5rem;
    }
}
