/* css/main.css */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sabrosa Colors */
    --sabrosa-green: #228B22;
    --sabrosa-gold: #DAA520;
    --sabrosa-dark: #333333;
    
    /* Carabean Coffee Colors */
    --carabean-dark-red: #8B0000;
    --carabean-dark-green: #556B2F;
    --carabean-dark-brown: #8B7355;
    --carabean-latte: #F5E9D9;
    --carabean-berry: #8B008B;
    
    /* Additional Colors */
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--sabrosa-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--sabrosa-gold);
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--sabrosa-dark);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--sabrosa-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--sabrosa-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sabrosa-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background-color: var(--sabrosa-green);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--carabean-dark-green);
}

.contact-btn::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--sabrosa-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(139, 115, 85, 0.95),
        rgba(85, 107, 47, 0.95),
        rgba(62, 39, 35, 0.95)
    );
    background-size: 400% 400%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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


/* Photo Pop Container */
.photo-pop-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Photo Pop Cards */
.photo-pop {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    opacity: 0;
    pointer-events: auto;
    z-index: 3;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%);
}

.photo-pop:hover {
    z-index: 20 !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 0 5px var(--sabrosa-gold),
        inset 0 0 40px rgba(255, 215, 0, 0.2);
}

.photo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-pop:hover .photo-image {
    transform: scale(1.08);
}

.photo-info {
    padding: 15px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.7));
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.photo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sabrosa-gold);
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.photo-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    
    -webkit-line-clamp: 3;
    line-clamp: 3;

    overflow: hidden;
}


.photo-tag {
    display: inline-block;
    background: rgba(139, 115, 85, 0.3);
    color: var(--sabrosa-gold);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(139, 115, 85, 0.5);
}

/* Animation with longer visible phase */
@keyframes popInOut {
    0% {
        opacity: 0;
        transform: 
            translateZ(-800px) 
            rotateY(90deg) 
            rotateX(45deg) 
            scale(0.1);
        filter: blur(20px);
    }
    10% {
        opacity: 1;
        transform: 
            translateZ(0) 
            rotateY(0deg) 
            rotateX(0deg) 
            scale(1.1);
        filter: blur(0);
    }
    15% {
        opacity: 1;
        transform: 
            translateZ(50px) 
            rotateY(5deg) 
            scale(1);
        filter: blur(0);
    }
    20% {
        opacity: 1;
        transform: 
            translateZ(30px) 
            rotateY(-3deg);
        filter: blur(0);
    }
    /* Stay visible for longer */
    70% {
        opacity: 1;
        transform: 
            translateZ(20px) 
            rotateY(0deg);
        filter: blur(0);
    }
    85% {
        opacity: 1;
        transform: 
            translateZ(10px) 
            rotateY(-2deg);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: 
            translateZ(-800px) 
            rotateY(-90deg) 
            rotateX(-45deg) 
            scale(0.1);
        filter: blur(20px);
    }
}

/* Animation for photos that stay longer */
@keyframes floatAndFade {
    0% {
        opacity: 0;
        transform: 
            translateZ(-500px) 
            scale(0.3) 
            rotateY(45deg);
    }
    15% {
        opacity: 1;
        transform: 
            translateZ(0) 
            scale(1.05) 
            rotateY(0deg);
    }
    25%, 75% {
        opacity: 1;
        transform: 
            translateZ(30px) 
            scale(1) 
            rotateY(0deg);
    }
    90% {
        opacity: 0.7;
        transform: 
            translateZ(10px) 
            scale(0.95);
    }
    100% {
        opacity: 0;
        transform: 
            translateZ(-500px) 
            scale(0.3) 
            rotateY(-45deg);
    }
}

/* Subtle floating animation for visible period */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateZ(30px) translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateZ(50px) translateY(-10px) rotateY(3deg);
    }
}

/* Who We Are Section */
.story-section {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.vision-card, .mission-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.vision-card .icon-container {
    background-color: var(--sabrosa-green);
}

.mission-card .icon-container {
    background-color: var(--sabrosa-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.people-section {
    margin-top: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 200px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-card h4, .team-card p {
    padding: 20px;
}

.team-card h4 {
    color: var(--sabrosa-dark);
    margin-bottom: 10px;
}

/* Brands Section */
.brands-section {
    background-color: var(--light-gray);
}

.brand-intro {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.brand-logo {
    max-height: 100px;
    width: auto;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--carabean-dark-red);
    text-align: center;
    margin-bottom: 20px;
}

.brand-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.core-strengths {
    margin-top: 40px;
}

.core-strengths h4 {
    font-size: 1.5rem;
    color: var(--carabean-dark-green);
    margin-bottom: 20px;
    text-align: center;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.strength-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--carabean-latte);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    background-color: var(--medium-gray);
}

.strength-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--carabean-dark-brown);
}

.products-showcase {
    margin-top: 60px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-left: 5px solid;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-1 {
    border-left-color: var(--carabean-dark-red);
}

.product-2 {
    border-left-color: var(--carabean-dark-brown);
}

.product-3 {
    border-left-color: var(--carabean-dark-green);
}

.product-4 {
    border-left-color: var(--carabean-berry);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--sabrosa-dark);
    margin-bottom: 20px;
}

.product-specs {
    margin-bottom: 20px;
}

.spec-item {
    margin-bottom: 10px;
}

.flavor-profile {
    margin-bottom: 20px;
}

.flavor-profile h5 {
    font-size: 1.2rem;
    color: var(--sabrosa-dark);
    margin-bottom: 10px;
}

.flavor-profile ul {
    list-style-type: none;
}

.flavor-profile li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.flavor-profile li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sabrosa-gold);
    font-size: 1.5rem;
}

.cupping-brewing {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.btn-product-details {
    background-color: var(--sabrosa-gold);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product-details:hover {
    background-color: var(--carabean-dark-brown);
}

/* Sustainability Section */
.sustainability-intro {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sustainability-category {
    margin-bottom: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.impact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.communities-content, .environment-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.communities-content ul {
    list-style-type: none;
    margin: 20px 0;
}

.communities-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.communities-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sabrosa-green);
    font-weight: bold;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.environment-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.environment-item:hover {
    transform: translateY(-5px);
    background-color: var(--medium-gray);
}

.environment-item i {
    font-size: 2.5rem;
    color: var(--sabrosa-green);
    margin-bottom: 15px;
}

/* Image Gallery Styles */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-gallery {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
}

.image-gallery img.active {
    opacity: 1;
    z-index: 2;
}

.image-gallery img.secondary {
    opacity: 0;
    z-index: 1;
}

.image-gallery img.transitioning {
    opacity: 0;
}

/* Gallery Controls */
.gallery-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 30px;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-prev,
.gallery-next {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--sabrosa-gold);
    color: var(--black);
}

.gallery-indicator {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* Product card hover effect */
.product-card:hover .image-gallery img.active {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-gallery {
        height: 250px;
    }
    
    .gallery-controls {
        bottom: 10px;
        right: 10px;
        padding: 5px 12px;
    }
}

/* Image Gallery Styles - Maintains original image size */
.product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Changed from hidden to visible */
}

.image-gallery-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-gallery-wrapper .product-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

/* Hide secondary images by default */
.image-gallery-wrapper .product-img:not(.active) {
    display: none;
}

/* Gallery Controls - Positioned on the image */
.gallery-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 30px;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: auto; /* Ensure clicks are captured */
}

.gallery-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 5px 8px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-btn:hover {
    background-color: var(--sabrosa-gold);
    color: black;
    transform: scale(1.1);
}

.gallery-indicator {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 35px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 5px;
    border-radius: 15px;
}

/* Ensure product card hover doesn't interfere */
.product-card:hover .product-img {
    transform: none; /* Remove any scaling that might affect layout */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-controls {
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
    }
    
    .gallery-btn {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

/* Partners Section */
.partners-intro {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partners-category {
    margin-bottom: 60px;
}

.suppliers-content, .buyers-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.supplier-highlights {
    margin: 30px 0;
}

.highlight {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.highlight-icon {
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.buyer-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.buyer-type {
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.buyer-type:hover {
    transform: translateY(-5px);
    background-color: var(--medium-gray);
}

.partnership-benefits {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--carabean-latte);
    border-radius: 8px;
}

.partnership-benefits ul {
    list-style-type: none;
    margin-top: 15px;
}

.partnership-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.partnership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sabrosa-green);
    font-weight: bold;
}

.become-partner {
    background-color: var(--sabrosa-green);
    color: var(--white);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.btn-partner {
    display: inline-block;
    background-color: var(--sabrosa-gold);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    background-color: var(--carabean-dark-brown);
    transform: translateY(-3px);
}

/* Media Section */
.media-resources, .press-resources {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    background-color: var(--medium-gray);
}

.resource-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.resource-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--sabrosa-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--carabean-dark-green);
}



.press-list {
    margin: 30px 0;
}

.press-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--medium-gray);
}

.press-date {
    min-width: 100px;
    text-align: center;
    margin-right: 30px;
}

.press-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sabrosa-green);
    line-height: 1;
}

.press-date .month {
    display: block;
    font-size: 1.2rem;
    color: var(--sabrosa-dark);
    text-transform: uppercase;
}

.press-date .year {
    display: block;
    font-size: 1rem;
    color: var(--dark-gray);
}

.press-content h4 {
    font-size: 1.3rem;
    color: var(--sabrosa-dark);
    margin-bottom: 10px;
}

.press-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--sabrosa-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: var(--carabean-dark-green);
}

.press-contact {
    padding: 25px;
    background-color: var(--carabean-latte);
    border-radius: 8px;
    margin-top: 40px;
}

/* Careers Section */
.careers-intro {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-10px);
}

.job-details {
    display: flex;
    margin: 15px 0;
}

.job-location, .job-type {
    margin-right: 20px;
    color: var(--dark-gray);
}

.job-location i, .job-type i {
    margin-right: 5px;
    color: var(--sabrosa-green);
}

.btn-apply {
    display: inline-block;
    background-color: var(--sabrosa-green);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background-color: var(--carabean-dark-green);
}

.no-openings-message {
    background-color: var(--carabean-latte);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.btn-send-resume {
    display: inline-block;
    background-color: var(--sabrosa-gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-send-resume:hover {
    background-color: var(--carabean-dark-brown);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-info, .contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--sabrosa-dark);
}

.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--sabrosa-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sabrosa-green);
}

.btn-submit {
    background-color: var(--sabrosa-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--carabean-dark-green);
}

/* Footer */
.footer {
    background-color: var(--sabrosa-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--sabrosa-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--sabrosa-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    position: relative;
    animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--sabrosa-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--carabean-dark-red);
}

.modal-header {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px 8px 0 0;
}

.modal-header h3 {
    color: var(--sabrosa-dark);
    font-family: 'Playfair Display', serif;
}

.modal-body {
    padding: 40px;
}

.modal-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.flavor-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.flavor-comparison th, .flavor-comparison td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.flavor-comparison th {
    background-color: var(--light-gray);
    color: var(--sabrosa-dark);
    width: 150px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 22px; /* add this line */
    }
    
    .vision-card, .mission-card,
    .story-section, .brand-intro,
    .contact-info, .contact-form {
        padding: 25px;
    }
    
    .modal-content {
        width: 95%;
        margin: 30px auto;
    }
    
    .modal-body {
        padding: 25px;
    }
}
/* Carabean Roastery Tour Section */
/* DEBUG - Force section to appear */
/* ========== CARABEAN ROASTERY TOUR SECTION ========== */
.roastery-tour-section {
    background: linear-gradient(135deg, #f9f5f0 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    display: block;
}

/* Tour Intro */
.tour-intro {
    background-color: var(--white, #ffffff);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.tour-description {
    font-size: 1.3rem;
    color: var(--carabean-dark-brown, #8B7355);
    font-weight: 500;
    margin: 0;
}

/* Tour Package */
.tour-package {
    margin-bottom: 60px;
}

/* Tour Grid */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Tour Items */
.tour-item {
    background-color: var(--white, #ffffff);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tour-item:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--sabrosa-gold, #DAA520);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white, #ffffff);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.tour-item:hover .tour-icon {
    transform: scale(1.1) rotate(5deg);
}

.tour-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--sabrosa-dark, #333333);
    margin-bottom: 15px;
}

.tour-item p {
    color: var(--dark-gray, #495057);
    line-height: 1.6;
    margin: 0;
}

/* Tour Booking Section */
.tour-booking {
    background-color: var(--white, #ffffff);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--medium-gray, #e9ecef);
}

.booking-intro {
    font-size: 1.2rem;
    color: var(--sabrosa-dark, #333333);
    margin-bottom: 40px;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.booking-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px;
    background-color: var(--light-gray, #f8f9fa);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.booking-item:hover {
    transform: translateY(-5px);
}

.booking-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white, #ffffff);
    font-size: 1.5rem;
}

.booking-text h4 {
    color: var(--sabrosa-dark, #333333);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.booking-text p {
    color: var(--dark-gray, #495057);
    margin-bottom: 3px;
}

.booking-cta {
    margin-top: 30px;
}

.btn-booking {
    display: inline-block;
    background-color: var(--sabrosa-gold, #DAA520);
    color: var(--white, #ffffff);
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--sabrosa-gold, #DAA520);
}

.btn-booking:hover {
    background-color: transparent;
    color: var(--sabrosa-gold, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .roastery-tour-section {
        padding: 60px 0;
    }
    
    .tour-booking {
        padding: 30px 20px;
    }
    
    .booking-item {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .btn-booking {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-intro {
        padding: 25px;
    }
    
    .tour-description {
        font-size: 1.1rem;
    }
}
.roastery-tour-section {
    border: 5px solid red !important;
}