* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 40px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    text-decoration: none;
}

.brand-title {
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    margin-top: 10px;
}

.nav-item {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #F1A04B;
}




.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/icarus1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}

@keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

@keyframes slideInFromAbove {
            from {
                opacity: 0;
                transform: translateY(-100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.contact-header {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-100px);
    animation: slideInFromAbove 2.5s ease-out 0.3s forwards;
}

.contact-title {
    font-size: 4rem;
    font-weight: bold;
    color: #D4A574;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.3;
    opacity: 0.9;
    font-family: "Texturina", serif;
    padding-bottom: 2rem;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    
}

.contact-form-wrapper {
    max-width: 800px;
    width: 100%;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInFromBottom 2.5s ease-out 0.3s forwards;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4A574;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.message-group {
    grid-column: 1 / -1;
}

.send-btn {
    background: #D4A574;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    justify-self: end;
}

.send-btn:hover {
    background: #B8935F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.send-btn:active {
    transform: translateY(0);
}

.social-section {
    background: #000000;
    padding: 4rem 0;
    color: #ffffff;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.social-header {
    margin-bottom: 3rem;
}

.social-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4A574;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.social-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: #D4A574;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4A574;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.social-link small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-item i {
    color: #D4A574;
    font-size: 1.2rem;
}

.footer {
    padding: 40px;
    background-color: #000000;
    border-top: 1px solid #222222;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 11px;
    color: #666666;
    font-weight: 300;
}

.footer-right {
    display: flex;
    gap: 35px;
}

.footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}
