/* Basic Reset and Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black; /* Light, clean background */
    color: white;
}

/* Color Variables (Easy to change brand colors) */
:root {
    --primary-color: gold; /* Gold/Regal color */
    --secondary-color: teal; /* Dark blue/Tech color */
}

/* Header and Navigation */
header {
    background-color: black;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 204, 255, 0.05);
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
}
.logo-image {
    height: 40px;
    margin-left: 10px;
}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color); /* Gold hover effect */
}

/* Sections General Styling */
section {
    padding: 80px 5%;
    text-align: center;
}

h1, h2 {
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 150px 5%;
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: var(--primary-color); /* Gold headline for focus */
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
     border-color: aquamarine;
    padding: 12px 30px;
    background-color: aquamarine;
    color: #0f0e0e;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: mediumaquamarine; /* Brighter gold on hover */
}

/* Projects Section */
#projects {
    background-color: rgb(9, 211, 247);
}

.project-card {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    border-color: rgb(5, 240, 162);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color:black;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 20px 5%;
    text-align: center;
    font-size: 0.9em;
}