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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #007BFF;
    color: #fff;
    padding: 20px 100px; /* Increased horizontal padding to move elements inward */
    display: flex;
    align-items: center; /* Aligns logo and nav-links vertically */
    justify-content: space-between; /* Ensures logo and nav-links are spaced apart */
}

header .logo-name {
    display: flex;
    align-items: center; /* Aligns logo and text vertically */
}

header .logo {
    height: 50px;
    margin-right: 15px;
}

header h1 {
    font-size: 1.8em;
    margin: 0;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px; /* Adds spacing between links */
    align-items: center; /* Ensures alignment with "Stephen Tindal" text */
}

.nav-link {
    font-size: 1.2em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}




/* Introduction Section */
.intro-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.intro-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.intro-section strong {
    color: #007BFF;
    font-weight: bold;
}

/* Projects Section */
.projects-section {
    padding: 60px 20px;
}

.projects-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #007BFF;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.03);
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.05);
}

.project-card h3 {
    font-size: 1.5em;
    margin: 15px 0 10px;
    color: #333;
}

.project-card p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #555;
}

.project-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.project-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* What I Bring Section */
.what-i-bring-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.what-i-bring-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-image {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.feature-card p {
    font-size: 1em;
    color: #555;
}

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