:root {
    --bg-dark: #2c333a;
    --bg-darker: #1a1e23;
    --bg-light: #ffffff;
    --text-white: #ffffff;
    --text-dark: #000000;
    --text-muted: #8b929a;
    --text-yellow: #ebd076;
    --btn-white: #ffffff;
    --btn-yellow: #f8e592;
    --border-color: #d8dde6;
    --border-focus: #ebd076;
    --footer-bg: #353b43;
    --font-family: 'Inter', sans-serif;
    --container-width: 1100px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3em;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

h1 span {
    color: var(--text-yellow);
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

p {
    font-family: Montserrat;
    font-size: 2.0rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--text-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--btn-white);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--btn-yellow);
    color: var(--text-dark);
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background-color: #e5d382;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.navbar .logo {
    color: var(--text-white);
    font-size: 2.0rem;
    font-weight: 400;
    font-family: 'Inter';
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-bottom: 80px;
    z-index: 2;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 45%;
    max-width: 600px;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: bottom;
    transform: rotate(-14deg) scale(1.0) translateY(10%);
    transform-origin: bottom center;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.newsletter-card {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #718096;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.form-group input:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(235, 208, 118, 0.2);
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    padding: 30px 0;
    color: var(--text-white);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .logo {
    font-size: 1.5rem;
    font-weight: 400;
}

.socials {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.linkedin-icon {
    color: var(--text-white);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.linkedin-icon:hover {
    color: var(--text-yellow);
    transform: translateY(-2px);
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 900px) {
    .navbar .logo {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Inter';
}
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        padding-bottom: 0;
    }

    .hero-image-wrapper {
        position: relative;
        justify-content: center;
        margin-top: 10px;
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        max-width: 400px;
        transform: rotate(-14deg) scale(1.0) translateY(20%);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .newsletter-card {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
