﻿
@font-face {
    font-family: 'Filson Pro';
    src: url('/fonts/FilsonPro-Regular.woff2') format('woff2'), url('/fonts/FilsonPro-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

/* Single, consistent :root block */
:root {
    font-family: 'Filson Pro', sans-serif;
    font-style: normal;
}

body {
    font-family: inherit;
    font-style: normal;
}



.titlecontainer {
    margin-top:43px;
    display: flex;
    align-items: center;
    background-color: #b0f963;
    height: 110px;
    position: fixed; /* Keep the container fixed */
    top: 0; /* Position it at the top of the viewport */
    left: 0; /* Align it to the left of the viewport */
    right: 0; /* Ensure it stretches to the full width of the viewport */
    z-index: 1000; /* Optional: Makes sure it stays on top of other content */
}




.page-title {
    font-family: 'Filson Pro';
    color: var(--Imperial-green, #243837);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: bolder;
    line-height: 75px; /* 107.143% */
    text-align: center;
    margin-left: 120px;
    margin-top: 20px;
}

.brands-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
    margin-top: 200px;
}

.brand-card {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .brand-card:hover {
        transform: translateY(-5px);
    }

.brand-imagemain {
    width: 100%;
    height: auto;
    display: block;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}


.action-buttons {
    display: flex;
    gap: 45px;
    margin-top: 60px;
    justify-content: center;
    margin-bottom:50px;
}

.about-btn {
    background-color: #a698ea;
    border-radius: 12px;
    padding: 16px 54px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .about-btn:hover {
        background-color: #b1a0ff;
    }

.contact-btn4 {
    background-color: transparent;
    border-radius: 12px;
    padding: 16px 44px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #2c3c3d;
    border: 2px solid #b1a0ff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .contact-btn4:hover {
        background-color: #b1a0ff;
        color: #ffffff;
    }
.footer {
    background-color: #2d3d3f;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.footer-tagline {
    font-size: 70px;
    font-weight: 500;
    line-height: 84px;
    margin-bottom: -20px;
}

.footer-subtitle {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
}
.messagetext {
    color: violet;
    font-weight: 900;
    margin-top: 100px;
    text-align: center;
}
.copyright {
    background-color: #a698ea;
    color: #ffffff;
    text-align: center;
    padding: 13px 0;
    font-size: 18px;
    font-weight: 400;
}

.highlight {
    color: #b0f963;
}
.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle:hover {
    outline: none;
    box-shadow: none;
    border: none;
}


/* Optional: remove default toggle arrow */
.hover-dropdown:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 50px;
        line-height: 60px;
        padding: 40px 0;
    }

    .footer-tagline {
        font-size: 40px;
        line-height: 50px;
    }

    .footer-subtitle {
        font-size: 20px;
        line-height: 240px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        
        margin-bottom: 50px;
    }

    .page-title {
        font-size: 36px;
        line-height: 44px;
   
    }

    .footer-tagline {
        font-size: 30px;
        line-height: 36px;
    }

    .copyright {
        font-size: 14px;
    }
  
}


/* The overlay container for the icons */
.beverages-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* increased gap between icons */
    background: rgba(255, 255, 255, 0); /* fully transparent base */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 20px; /* optional, adds more breathing room */
}

/* Show overlay on hover or active */
.igc-beverages:hover .beverages-overlay,
.igc-beverages.active .beverages-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Style the base image — this is what you blur or soften slightly */
.brand-imagemain {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Apply blur or dimming effect on hover */
.igc-beverages:hover .brand-imagemain,
.igc-beverages.active .brand-imagemain {
    filter: blur(2px); /* slightly milder blur */
    opacity: 0.9;
}

/* Style the overlay icons */
.overlay-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px; /* slightly bigger rounding */
    width: 250px; /* slightly smaller so they fit better */
    height: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}

    .overlay-icon img {
        max-width: 90%;
        max-height: 90%;
    }
        .overlay-icon img[alt="QuickMix"] {
            transform: scale(1.05);
            height: 255px;
        }
        .overlay-icon img[alt="Coffee"] {
            transform: scale(1.05);
           
          
        }

    .overlay-icon:hover {
        transform: scale(1.15); /* increase hover size a bit */
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }


/* Initially hide overlay */
.beverages-overlay {
    display: none;
    gap: 10px;
    justify-content: center;
}

/* Show on desktop hover */
.brand-card:hover .beverages-overlay {
    display: flex;
}

/* Show on mobile when active */
.brand-card.active .beverages-overlay {
    display: flex;
}

/* =====================
   Responsive Media Queries
   ===================== */

/* Mobile phones (portrait, up to 480px) */
@media (max-width: 480px) {
    .overlay-icon {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }

    .beverages-overlay {
        gap: 12px; /* tighter spacing on small screens */
        padding: 10px;
    }

    .overlay-icon img {
        max-width: 80%;
        max-height: 80%;
    }

    .brand-imagemain {
        filter: none; /* avoid heavy blur on small devices for performance */
    }
}



/* Small tablets (481px – 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .overlay-icon {
        width: 150px;
        height: 150px;
        border-radius: 10px;
    }

    .beverages-overlay {
        gap: 20px;
    }
}

/* Tablets (768px – 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .overlay-icon {
        width: 180px;
        height: 180px;
        border-radius: 12px;
    }

    .beverages-overlay {
        gap: 25px;
    }
}

/* Small desktops / laptops (1024px – 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .overlay-icon {
        width: 250px;
        height: 250px;
    }

    .beverages-overlay {
        gap: 30px;
    }
}

/* Large desktops (1440px and up) */
@media (min-width: 1440px) {
    .overlay-icon {
        width: 250px;
        height: 250px;
    }

    .beverages-overlay {
        gap: 40px;
    }
}

/* Small screens / mobile (up to 480px) */
@media (max-width: 480px) {
    .overlay-icon {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }

    .beverages-overlay {
        gap: 10px; /* keep a little space between icons */
        justify-content: center; /* center horizontally */
    }

    .brand-imagemain {
        width: 100%;
        height: auto;
    }
}

