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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #000;
}

.navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 5px 1px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.212);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.navbar a.active {
    background-color: white;
    color: #000;
}

.mobile-navbar {
    display: none;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
}

.map-background {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background: transparent;
    position: relative;
    height: 65%;
    margin-top: 70px;
}

.contact-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    margin-bottom: 40px;
}

.workshop-info, .contact-details {
    flex: 1;
}

.workshop-info h3, .contact-details h3 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.workshop-info p, .contact-details p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.follow-us {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
}

.feedback-form {
    flex: 1;
    padding: 40px;
    background: white;
    color: black;
    border-radius: 4px;
}

.feedback-form h3 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

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

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.upload-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(0,0,0,0.7);
    font-size: 0.85rem;
}

.send-btn {
    background: black;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #333;
}