* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
    background: white;
    color: black;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: white;
    border-bottom: 1px solid black;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: block;
}

.logo img {
    height: 50vh;
    width: auto;
    max-width: 50vw;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 50vh;
    font-weight: normal;
    color: black;
    display: none;
    line-height: 1;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

#construction {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
}

.construction-content {
    max-width: 600px;
}

#construction h1 {
    font-size: 64px;
    font-weight: normal;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#construction p {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.8;
}

#contact {
    border-top: 1px solid black;
    padding: 80px 40px;
}

#contact h2 {
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-section {
    max-width: 500px;
    width: 100%;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.linkedin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    text-decoration: none;
    transition: background 0.3s;
    border: 1px solid black;
    box-sizing: border-box;
    min-width: 50px;
}

.linkedin-link:hover {
    background: black;
}

.linkedin-logo {
    filter: brightness(0);
    transition: filter 0.3s;
    height: 50px;
}

.linkedin-link:hover .linkedin-logo {
    filter: brightness(0) invert(1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
    font-size: 16px;
    padding: 12px;
    border: 1px solid black;
    background: white;
    color: black;
    outline: none;
    transition: box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: inset 0 0 0 1px black;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 40px;
    background: white;
    color: black;
    border: 1px solid black;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.submit-btn:hover {
    background: black;
    color: white;
}

.form-message {
    margin-top: 20px;
    font-size: 14px;
    min-height: 20px;
    text-align: left;
}

.form-message.success {
    color: black;
}

.form-message.error {
    color: black;
}

footer {
    border-top: 1px solid black;
    padding: 40px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    main {
        margin-top: 0;
    }
    
    .logo img {
        height: 50vh;
        max-width: 90vw;
    }
    
    .logo-text {
        font-size: 30vh;
    }

    section {
        padding: 60px 20px;
    }

    #construction {
        min-height: 40vh;
        padding: 40px 20px;
    }

    #construction h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    #construction p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact-content {
        justify-content: center;
    }

    .contact-form-section {
        max-width: 100%;
    }

    .form-actions {
        justify-content: flex-start;
        gap: 15px;
    }

    .linkedin-link {
        width: auto;
        justify-content: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    .logo img {
        height: 40vh;
        max-width: 95vw;
    }

    .logo-text {
        font-size: 25vh;
    }

    section {
        padding: 40px 15px;
    }

    #construction {
        min-height: 30vh;
        padding: 30px 15px;
    }

    #construction h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    #construction p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    #contact h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
