* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #333;
    color: white;
}

/* Header Section */
.about-header {
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../Images/AboutUs_Background-Image.png");
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-header h1 {
    font-family: 'Alfa Slab One', serif;
    font-size: 70px;
    font-weight: bold;
    color: white;
    text-align: center;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
}

.logo-container {
    position: absolute;
    top: 0px;
    left: 45px;
    background-color: white;
    border-radius: 2px;
    padding: 10px;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 400px;
    height: auto;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 100px 15px;
    position: relative;
    margin-top: -55px;
    left: 95px;
    bottom: 28px;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.nav-links ul li::after {
    content: "";
    width: 0%;
    height: 4px;
    transition: 0.5s;
    border-radius: 2px;
    display: block;
    background: white;
    margin: auto;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.about-header h1 {
    font-size: 70px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 50px;
}

/* Main Content */
.about-main-text {
    background-color: #222;
    padding-bottom: 40px;
}

.about-content {
    display: flex;
    padding: 50px 8%;
    background-color: #222;
    align-items: center;
}

.about-image {
    background-color: white;
    padding: 10px;
    border-radius: 2px;
    width: 100%;
    max-width: 700px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.about-text {
    flex: 2;
    padding: 20px;
    color: white;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}

/* Mission Section */
.mission-section {
    display: flex;
    padding: 20px 8% 40px;
    background-color: #222;
    align-items: center;
}

.mission-text {
    flex: 1;
    padding-right: 20px;
    color: white;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 500;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}

.mission-text ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

.mission-text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
    list-style-type: none;
}

.sustainability-item:before {
    content: "🌱";
    position: absolute;
    left: 0;
}

.quality-item:before {
    content: "🔥";
    position: absolute;
    left: 0;
}

.taste-item:before {
    content: "☕";
    position: absolute;
    left: 0;
}

.highlight {
    color: #e67e22;
    font-weight: bold;
}

.divider {
    height: 3px;
    background: linear-gradient(to right, #e67e22, transparent);
    margin: 25px 0;
    width: 100%;
}

.mission-cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.mission-card {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.mission-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.mission-card h3 {
    color: #e67e22;
    margin-bottom: 10px;
}

.vacancy-header {
    background-color: #333;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #e67e22;
}

.job-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.job-summary p {
    background-color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.job-sections {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.job-section {
    flex: 1;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
}

.job-section h3 {
    color: #e67e22;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.perks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.perk-card {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.perk-icon {
    font-size: 24px;
}

.application-section {
    background-color: #333;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.apply-button {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    padding: 12px 35px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

@media only screen and (max-width: 768px) {
    .mission-cards, .job-sections, .perks-container {
        flex-direction: column;
    }
}

.mission-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mission-image img {
    max-width: 100%;
    height: auto;
}

/* Vacancies Section */
.vacancies-section {
    padding: 20px 8%;
    background-color: #222;
    border: none;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.vacancies-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
    border-bottom: none;
    padding-bottom: 0;
}

.vacancies-section p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: white;
    text-align: justify;
    hyphens: auto;
}

.job-details {
    background-color: transparent;
    padding: 5px 0;
    border-radius: 0;
    box-shadow: none;
}

.job-details p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
    text-align: justify;
    hyphens: auto;
}

.job-details h3 {
    font-size: 16px;
    margin: 15px 0 10px;
    color: white;
    font-weight: bold;
    border-left: none;
    padding-left: 0;
}

.job-details strong {
    color: white;
    font-weight: bold;
}

.job-responsibilities li,
.job-requirements li,
.job-perks li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
    color: white;
    display: block;
    background-color: transparent;
    padding: 0 0 0 20px;
    border-radius: 0;
    position: relative;
}

.apply-button-container {
    margin: 25px 0;
    text-align: center;
}

.apply-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    transition: none;
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
}

.apply-button:hover {
    background-color: #45a049;
    transform: none;
    box-shadow: none;
}


.menu-toggle {
    display: none; 
}

.footer {
    background-color: #222;
    color: white;
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo img {
    width: 180px;
    height: auto;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: white;
}

.newsletter-form button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #444;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #555;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* For Font Awesome Icons (you'll need to add the link to FontAwesome in your head) */
.social-links li a i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    .about-content, .mission-section {
        flex-direction: column;
    }
    
    .about-image, .mission-image {
        margin-bottom: 20px;
        width: 100%;
        height: auto;
    }
    
    .about-header h1 {
        font-size: 40px;
        margin-top: 100px; /* Add space for the fixed header */
    }
    
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: white;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 3;
    }
    
    .nav-links {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.9);
        height: 100vh;
        width: 80%;
        top: 0;
        right: -80%;
        text-align: left;
        z-index: 2;
        transition: 0.3s ease-in-out;
        padding: 60px 20px 20px;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links ul li {
        display: block;
        padding: 15px 0;
        margin: 0;
        position: static;
        left: auto;
        bottom: auto;
    }
    
    .logo-container {
        width: 150px;
        height: 150px;
        left: 10px;
    }
    
    .logo {
        width: 175px;
        height: auto;
    }
    
    .vacancies-section {
        margin: 0;
        padding: 20px 8%;
    }
    
    .apply-button {
        padding: 10px 30px;
        font-size: 16px;
    }
    
    .mission-cards, 
    .job-sections, 
    .perks-container,
    .job-summary {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-text h2,
    .mission-text h2 {
        font-size: 28px;
    }
}

/* Additional breakpoint for very small screens */
@media only screen and (max-width: 480px) {
    .about-header h1 {
        font-size: 30px;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
        left: 5px;
    }
    
    .about-text,
    .mission-text {
        padding: 10px 0;
    }
}
