/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.4;
}

/* Hero Section with your Profile Image */
.main-header {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('profile.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid #222;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
}

.logo {
    color: #e50914;
    font-size: 2.5rem;
    font-weight: bold;
}

.lang-dropdown {
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 5px 15px;
    border: 1px solid #aaa;
    border-radius: 4px;
    margin-right: 20px;
}

.signin-btn {
    background-color: #e50914;
    color: white;
    border: none;
    padding: 7px 17px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Hero Content */
.hero-content {
    text-align: center;
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.125rem;
    margin-bottom: 1rem;
}

.fs-large {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
}

/* Email Form */
.email-signup {
    display: flex;
    margin-top: 20px;
}

.email-signup input {
    flex: 2;
    padding: 20px;
    font-size: 1rem;
    border: none;
}

.email-signup button {
    flex: 1;
    background: #e50914;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
}

.email-signup button:hover {
    background: #b20710;
}

/* Features */
.features {
    padding: 70px 5%;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text-side h2 { font-size: 3rem; margin-bottom: 20px; }
.text-side p { font-size: 1.5rem; }

.img-side img {
    width: 400px;
    border-radius: 10px;
}

/* Footer */
.main-footer {
    padding: 70px 15%;
    color: #757575;
    border-top: 8px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.main-footer ul { list-style: none; }
.main-footer li { margin-bottom: 15px; font-size: 0.9rem; cursor: pointer; }
.main-footer li:hover { text-decoration: underline; }

.copyright { margin-top: 40px; font-size: 0.8rem; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .feature-row { flex-direction: column; text-align: center; }
    .email-signup { flex-direction: column; gap: 10px; }
    .hero-content h1 { font-size: 2rem; }
    .img-side img { width: 100%; }
}