/* Minimal Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #1a1a1a;
}
a {
    text-decoration: none;
    color: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 30px 0;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 10;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}
.nav-links a {
    margin-left: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?...') left/50% 100% no-repeat,
        url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?...') right/50% 100% no-repeat;
    opacity: 0.5;
    z-index: -1;
}
.hero-content {
    width: 100%;
}
.hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
}
.btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #333;
}
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 1px solid #444;
    color: #fff;
    font-family: inherit;
}
.form-group textarea {
    height: 120px;
    resize: vertical;
}
.submit-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #333;
    color: #999;
}
