* {
    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.5), rgba(0, 0, 0, 0.5)), url("../Images/Coffee_Collections.jpeg");
    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: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}

.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; /* Hide by default on larger screens */
    cursor: pointer;
    font-size: 24px;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.footer {
    background-color: #222;
    color: white;
    padding: 60px 30px 30px;
    margin-top: 0px;
}

.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;
        max-height: 400px;
    }
    
    .about-header h1 {
        font-size: 40px;
        margin-top: 80px;
    }
    
    /* Updated mobile menu styling to match index.css */
    .menu-toggle {
        display: block;
    }
    
    .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: 8px 12px;
        position: static;
        margin: 10px 0;
        left: 0;
        bottom: 0;
    }
    
    .logo-container {
        width: 80px;
        height: 80px;
        left: 20px;
        top: 10px;
    }
    
    .logo {
        width: 100%;
        height: auto;
    }
    
    .about-text h2, .mission-text h2 {
        font-size: 28px;
    }
    
    .about-text p, .mission-text p {
        font-size: 14px;
    }
}

/* Coffee Gallery Styling */
.coffee-gallery {
    padding: 40px 8%;
    background-color: #1a1a1a;
}

.coffee-gallery h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #f5f5f5;
    font-family: 'Alfa Slab One', serif;
    letter-spacing: 1px;
}

/* Coffee Items Grid */
.coffee-gallery {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.coffee-item {
    display: flex;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
}

.coffee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.coffee-image {
    flex: 0 0 40%;
    height: 100%;
    background-color: #3a3a3a;
    overflow: hidden;
    position: relative;
}

.coffee-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.coffee-details {
    flex: 1.5;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.coffee-details h3 {
    font-size: 28px;
    color: #f8f8f8;
    margin-bottom: 10px;
    font-weight: 700;
}

.coffee-origin {
    font-size: 16px;
    color: #bb9b6d;
    margin-bottom: 20px;
    font-weight: 500;
}

.coffee-description {
    font-size: 16px;
    line-height: 1.6;
    color: #d8d8d8;
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}

.coffee-roast {
    font-size: 16px;
    color: #999;
    margin-bottom: 5px;
}

.coffee-price {
    font-size: 20px;
    font-weight: 700;
    color: #e7c78e;
    margin: 10px 0 20px;
}

.shop-button {
    display: inline-block;
    background-color: #bb9b6d;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.shop-button:hover {
    background-color: #d8b78d;
}

@media only screen and (max-width: 992px) {
    .coffee-item {
        flex-direction: column;
        height: auto;
    }
    
    .coffee-image {
        flex: 0 0 200px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .coffee-gallery h2 {
        font-size: 32px;
    }
    
    .coffee-details h3 {
        font-size: 24px;
    }
    
    .coffee-details {
        padding: 20px;
    }
    
    .coffee-price {
        font-size: 18px;
    }
    
    .shop-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .coffee-gallery {
        padding: 30px 5%;
        gap: 30px;
    }
    
    .coffee-item {
        margin-bottom: 20px;
    }
    
    .coffee-details h3 {
        font-size: 20px;
    }
    
    .coffee-description {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .about-header {
        min-height: 40vh;
    }
    
    .about-header h1 {
        font-size: 32px;
    }
    
    .shop-button {
        width: 100%;
        text-align: center;
    }
}

