/*
 * Stylesheet for Ganeki Innovative Solutions landing page.
 * This file defines the visual look and responsive layout of the website.
 */

/* General resets and typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #0d1b2a;
    background-color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(5px);
}

.navbar .logo {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links a {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #f9b233;
}

/* Hero section */
#hero {
    background: url('images/hero.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    text-align: center;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f9b233;
    color: #0d1b2a;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e48a0b;
}

/* Section styling */
.section {
    padding: 80px 20px;
    margin-top: 80px; /* offset for fixed navbar */
}

.section-alt {
    background-color: #f5f7fa;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.section .text {
    flex: 1 1 50%;
    min-width: 280px;
}

.section .image {
    flex: 1 1 40%;
    min-width: 280px;
}

.section .image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section h2 {
    font-size: 2rem;
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.section p {
    margin-bottom: 1rem;
}

/* List styles */
.list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem 0;
}

.list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.list li::before {
    /* Use a simple bullet point instead of FontAwesome icon for maximum compatibility */
    content: '\2022';
    font-family: inherit;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    color: #f9b233;
    font-size: 1.1rem;
}

/* Steps list styling */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.steps li {
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #f9b233;
    color: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Contact section */
.contact {
    text-align: center;
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 60px 20px;
}

.contact h2 {
    color: #f9b233;
    margin-bottom: 1rem;
}

.contact p {
    margin-bottom: 0.5rem;
}

.contact a {
    color: #f9b233;
    text-decoration: none;
    margin: 0.25rem 0;
    display: block;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #0d1b2a;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    .navbar .nav-links {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    .section .section-content {
        flex-direction: column;
    }
    .section .text,
    .section .image {
        flex: 1 1 100%;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
}