/* Home Page Specific Styles */

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 45, 66, 0.85) 0%, rgba(30, 45, 66, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-company {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-verse {
    font-style: italic;
    color: var(--white);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    border-left: 4px solid var(--navy);
}

/* Projects Section */
.projects {
    padding: 100px 30px;
    background: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.project-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 45px 35px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: 0 15px 35px rgba(8, 102, 42, 0.15);
}

.project-icon {
    font-size: 65px;
    margin-bottom: 25px;
    background: var(--#1e2d42);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    transition: transform 0.3s;
}

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

.project-card h3 {
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 700;
}

.project-card p {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.7;
}

.external-link,
.internal-link {
    color: var(--green);
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
    display: inline-block;
}

.project-card:hover .external-link,
.project-card:hover .internal-link {
    transform: translateX(8px);
}

/* About Section */
.about {
    padding: 100px 30px;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-content h2 {
    font-size: 48px;
    color: var(--navy);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.about-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-company {
        font-size: 16px;
    }

    .hero-verse {
        font-size: 15px;
    }

    .projects {
        padding: 60px 20px;
    }

    .about {
        padding: 60px 20px;
    }
}
