/* Shared Style across all portfolio website pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    background: #fdfdfd;
    color: #222;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 10%;
    background: white;
    border-bottom: 1px solid #eee;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav a:hover, nav a.active {
    color: #ff4757;
}

/* Page Content */
section {
    padding: 60px 10%;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }

.container {
    max-width: 1000px;
    margin: auto;
}

footer {
    text-align: center;
    padding: 40px;
    background: #f4f4f4;
    margin-top: 50px;
}

/* CTA Button on Home Page */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ff4757;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
}

.cta-button:hover {
    background-color: #ff6b81;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    color: white;
}
.spacer {
    height: 50px; /* Creates 50 pixels of vertical breathing room */
    width: 100%;  /* Ensures it spans the full width */
}
