/* font */
.core-eat {
    font-family: 'Baloo 2', cursive;
    font-size: 32px;        /* adjust size */
    font-weight: 700;
    color: white;           /* white text */
    background: #000;       /* black background */
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
  }

  .snacado {
    font-family: 'Lobster Two', cursive;
    font-size: 32px;        /* adjust size */
    font-weight: 700;
    color: white;           /* white text */
    background: #000;       /* black background */
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    
    
  }
  
  .tagline {
    font-family: 'Pacifico', cursive;
    font-size: 18px;
    color: #ffcc66;
  }
  
  


.client-section {
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #000;
}

.client-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background-color: #000;
}

.client-box {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #ddd;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    background-color: #f8f8f818;
    color: #000;
}

.client-logo {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.client-box:hover .client-logo {
    transform: scale(1.05);
}

/* Carousel Styles for Mobile/Tablet */
.carousel-container {
    display: none;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll-continuous 20s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    min-width: 200px;
    flex-shrink: 0;
    margin-right: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #ddd;
}

.carousel-item:hover {
    transform: translateY(-5px);
    background-color: #f8f8f8;
    z-index: 10;
}

.carousel-logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.carousel-item:hover .carousel-logo {
    transform: scale(1.1);
}

@keyframes scroll-continuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Specific brand styles */
.gisou {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 2.2rem;
}

.bb-records {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bb-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.bb-text {
    font-size: 1.4rem;
    font-weight: bold;
}

.bb-subtext {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.google-g {
    font-size: 3.5rem;
    font-weight: 500;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.warner-w {
    width: 35px;
    height: 35px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.warner-text {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.1;
}

.o2-logo {
    font-size: 3.5rem;
    font-weight: bold;
}

.benefit {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 2.2rem;
}

.apple {
    font-size: 3rem;
    font-weight: 300;
}

.spotify {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.netflix {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

.amazon {
    font-size: 2rem;
    font-weight: bold;
}

.microsoft {
    font-size: 1.8rem;
    font-weight: 500;
}

.tesla {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.nike {
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
}

.adidas {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.coca-cola {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Times New Roman', serif;
}

/* Carousel styles for mobile */
.carousel-gisou {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.6rem;
}

.carousel-bb-records {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-bb-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.carousel-bb-text {
    font-size: 1rem;
    font-weight: bold;
}

.carousel-bb-subtext {
    font-size: 0.5rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.carousel-google-g {
    font-size: 2.5rem;
    font-weight: 500;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-warner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-warner-w {
    width: 25px;
    height: 25px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.carousel-warner-text {
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1.1;
}

.carousel-o2-logo {
    font-size: 2.5rem;
    font-weight: bold;
}

.carousel-benefit {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.6rem;
}

.carousel-apple {
    font-size: 2rem;
    font-weight: 300;
}

.carousel-spotify {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.carousel-netflix {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000000;
}

.carousel-amazon {
    font-size: 1.6rem;
    font-weight: bold;
}

.carousel-microsoft {
    font-size: 1.4rem;
    font-weight: 500;
}

.carousel-tesla {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.carousel-nike {
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
}

.carousel-adidas {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.carousel-coca-cola {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000000;
    font-family: 'Times New Roman', serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .client-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .client-showcase {
        display: none;
    }
    
    .carousel-container {
        display: block;
    }

    .carousel-track {
        animation-duration: 25s;
    }
    
    .carousel-item {
        min-width: 180px;
        min-height: 160px;
    }
}

@media (max-width: 600px) {
    .carousel-item {
        min-width: 160px;
        min-height: 140px;
    }

    .carousel-track {
        animation-duration: 30s;
    }
}

@media (max-width: 400px) {
    .carousel-item {
        min-width: 140px;
        min-height: 120px;
    }

    .carousel-track {
        animation-duration: 35s;
    }
}