/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
}

/* Navigation */
nav {
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-weight: 700;
    font-size: 2rem;
    color: black;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
}

.nav-links a:not(.contact-button):hover {
    text-decoration: underline;
}

.contact-button {
    background: white;
    color: black !important; /* Ensures text color stays black */
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    transition: background 0.3s;
}

.contact-button:hover {
    background: #f0f0f0;
}

/* Main Layout */
main {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Side */
.left-section {
    background-color: #dcdcdc;
    width: 50%;
    clip-path: polygon(0 0, 90% 0, 70% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-text {
    max-width: 400px;
}

.intro-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.intro-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.intro-text h3 {
    font-size: 1.2rem;
    color: gray;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    background: white;
    padding: 12px;
    border-radius: 8px;
    color: black;
    font-size: 1.2rem;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

/* Right Side */
.right-section {
    background-color: black;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-section img {
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}
