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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-width: 1000px; /* Ensures layout doesn't break as no responsive design is required */
}

/* Navigation */
header {
    background: #2c3e50;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #3498db;
}

/* Section Styling */
section {
    padding: 80px 20px;
    max-width: 960px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    width: 100%;
}

.bg-light {
    background-color: #f4f4f4;
    max-width: 100%; /* Spans full width */
    padding-left: calc((100% - 960px) / 2);
    padding-right: calc((100% - 960px) / 2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    color: white;
}

.hero h1 { font-size: 4rem; }
.intro { font-size: 1.2rem; max-width: 600px; }

/* Grid & Layout Helpers */
.grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    flex: 1;
    text-align: center;
}

.flex-row { display: flex; gap: 40px; }
.half { flex: 1; }

/* About Section */
.about-container { display: flex; gap: 40px; align-items: center; }
.about-text { flex: 2; }
.placeholder-img {
    width: 300px;
    height: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.placeholder-img img{
    width: 300px;
    height: 300px;
}

/* Skills */
.skills-list {
    list-style: square;
    column-count: 2;
    max-width: 500px;
    margin: 0 auto;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
}

button {
    padding: 10px;
    background: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover { background: #3498db; }

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
}

.social-links a { color: #3498db; text-decoration: none; }