﻿/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', Arial, sans-serif;
    line-height: 1.6;
    color: #040000;
    background-color: #222021;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Careers Content */
.careers-content {
    width: 100%;
    background-color: #222021;
    padding: 32px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-subtitle {
    font-size: 24px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.highlight-text {
    color: #f7c35f;
}

.work-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0;
}

.gallery-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.description-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 24px;
}

.whatsapp-button {
    background-color: #25d366;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 26px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'ADLaM Display', Arial, sans-serif;
    display: inline-block;
    margin: 24px auto;
    text-align: center;
    transition: all 0.3s ease;
}

    .whatsapp-button:hover {
        background-color: #20b858;
        transform: translateY(-2px);
    }

/* Responsive media queries */
@media (min-width: 640px) {
    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-image {
        height: 250px;
    }

    .description-text {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .work-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .gallery-image {
        height: 280px;
    }

    .description-text {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .gallery-image {
        height: 320px;
    }
}
