/* ================================
   Global Styles
   ================================ */
body {
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: url('assets/images/backgrounds/cloud-providers-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333333;
}

h1, h2, h3, h4 {
    margin: 0;
}

a {
    text-decoration: none;
}

/* ================================
   Header / Navigation
   ================================ */
header {
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo strong {
    font-size: 1.5rem;
    color: #0D1A45; /* Dark blue */
}

header .nav-links a {
    margin-left: 2rem;
    color: #333333;
    font-weight: 500;
}

header .nav-links a:hover {
    color: #1A73E8; /* blue on hover */
}

/* ================================
   Hero Section
   ================================ */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding-top: 80px;
}

.hero-inner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0D1A45; /* Dark blue */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-inner .tagline {
    font-size: 1.25rem;
    color: #0D1A45; /* Dark blue */
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* ================================
   Hero CTA Buttons
   ================================ */
.hero-ctas a {
    font-size: 1.25rem;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 10px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

/* Both buttons same style: dark blue filled */
.btn-contact-me,
.btn-see-projects {
    color: #ffffff;
    background-color: #0D1A45;
    border: 2px solid #0D1A45;
}

.btn-contact-me:hover,
.btn-see-projects:hover {
    color: #0D1A45;
    background-color: transparent;
}

/* ================================
   Sections Floating Over Background
   ================================ */
.about-me,
.skills,
.cloud-platforms,
.projects,
.contact {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 10px;
    text-align: center;
}

/* Add subtle text shadow for readability */
.about-me p,
.skills p,
.cloud-platforms p,
.project-card p,
.contact p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* ================================
   About Me Section
   ================================ */
.about-me {
    background-color: rgba(255, 255, 255, 0.85); /* semi-transparent white box */
}

.about-me h2 {
    font-size: 2rem;
    color: #1A73E8; /* unified blue for section headers */
    margin-bottom: 1rem;
}

.about-me p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 1rem;
}

/* ================================
   Skills & Expertise Section
   ================================ */
.skills {
    background-color: rgba(255,255,255,0.85); /* semi-transparent white box */
}

.skills h2 {
    font-size: 2rem;
    color: #1A73E8;
    margin-bottom: 2rem;
}

.skills ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.skills li {
    background-color: rgba(255,255,255,0.85);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
}

/* ================================
   Cloud Platforms Section
   ================================ */
.cloud-platforms {
    background-color: rgba(255, 255, 255, 0.85); /* semi-transparent white box */
}

.cloud-platforms h2 {
    font-size: 2rem;
    color: #1A73E8;
    margin-bottom: 2rem;
}

.cloud-platforms p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 2rem;
}

.cloud-platforms .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cloud-platforms .logos img {
    max-height: 50px;
    width: auto;
}

/* ================================
   Projects Section
   ================================ */
.projects {
    background-color: rgba(255,255,255,0.85); /* semi-transparent white box */
}

.projects h2 {
    font-size: 2rem;
    color: #1A73E8;
    margin-bottom: 2rem;
}

.project-card {
    background-color: rgba(255,255,255,0.85);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.project-card h3 {
    font-size: 1.5rem;
    color: #0D1A45;
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 1rem;
    color: #333333;
}

/* ================================
   Contact Section
   ================================ */
.contact {
    background-color: rgba(255,255,255,0.85); /* semi-transparent white box */
}

.contact h2 {
    font-size: 2rem;
    color: #1A73E8;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
}

.contact button {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #0D1A45;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.contact button:hover {
    background-color: #ffffff;
    color: #0D1A45;
    border: 1px solid #0D1A45;
}

/* ================================
   Footer
   ================================ */
footer {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    color: #333333;
}

footer a {
    color: #1A73E8;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}