@font-face {
    font-family: 'Chalkduster'; /* Name your font family */
    src: url('Fonts/Chalkduster.ttf'); /* Locate the .ttf file within your directory*/
  }
  @font-face {
    font-family: 'Dead Kansas'; /* Name your font family */
    src: url('Fonts/Dead\ Kansas.ttf'); /* Locate the .ttf file within your directory*/
  }

  :root{
    --fb-color: rgb(255, 203, 4);
    --gg-color: rgb(215, 44, 132);
    --oe-color: rgb(224, 209, 150);
    --hi-color: rgb(179, 211, 52);
    --ps-color: rgb(103, 16, 12);
    --rr-color: rgb(216, 86, 41);
  }
  .progress-bar{
    width: 45%;
    color: black;
  }
  .beer-description h2.fb{
    color: var(--fb-color);
  }
  .progress-bar.fb{
    background-color: var(--fb-color);
  }
  .beer-description h2.gg{
    color: var(--gg-color);
  }
  .progress-bar.gg{
    background-color: var(--gg-color);
  }
  .beer-description h2.oe{
    color: var(--oe-color);
  }
  .progress-bar.oe{
    background:linear-gradient(0.25turn, var(--oe-color), white);
  }
  .beer-description h2.hi{
    color: var(--hi-color);
  }
  .progress-bar.hi{
    background-color: var(--hi-color);
  }
  .beer-description h2.ps{
    color: var(--ps-color);
  }
  .progress-bar.ps{
    background-color: var(--ps-color);
  }
  .beer-description h2.rr{
    color: var(--rr-color);
  }
  .progress-bar.rr{
    background-color: var(--rr-color);
  }
  

    
    *{
        padding: 0;
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
    }
    body{
        width: 100%;
        margin: 0px auto;
    }
    .header{
        position: sticky;
        top: 0px;
        z-index: 1000
    }
    .main-nav{
        background-color: rgb(45, 45, 45);
        display: flex;
        padding: 20px 40px;
        transition: background-color 0.5s ease;

    }
    .main-nav.transparent{
        background-color: rgba(45, 45, 45, 0.5);
    }
    .main-nav img{
        width: 250px;
    }
    .product-section .card{
        transform: transalteY(0px);
        transition: all 1s ease;
        box-shadow: none;
    }
    .product-section .card:hover{
        transform: translateY(-10px);
        box-shadow: rgb(69, 69, 72, 0.3) 0px 15px 15px 0px;
    }
    nav ul{
        display: flex;
        width: 80%;
        align-items: center;
        justify-content: right;
        list-style: none;
    }
    nav ul li{
        padding: 0px 20px;
    }
    nav ul li a{
        color: white;
        font-size: 1.1em;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        position: relative;
    }
    nav ul li a::after{
        content: '';
        background: white;
        position: absolute;
        height: 3px;
        left: 0px;
        bottom: -6px;
        width: 0%;
        transition: width 0.5s;
    }
    nav ul li a:hover::after{
        width: 100%;
    }
    .carousel-item{
        position: relative;
    }
    .carousel-item img, .beer-mood-image {
        max-height: 500px; /* Set the desired max height */
        object-fit: cover;
    }
    .carousel-text{
        text-align: center;
        position: absolute;
        top: 160px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        color: black;
    }
    .text-background{
            position: absolute;
            top: 140px;
            left: 50%;
            height: 220px;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            width: 100%;
            background-color: white;
            opacity: 70%;
        }
    .product-section, .label-section{
        display: flex;
        flex-wrap: wrap;
        padding: 40px;
        justify-content: center;
        gap: 20px;
    }
    .card-body{
        --_title: var(--title, red);
        --_button-hover: var(--button-hover, blue);
    }
    .product{
        width: 450px;
    }
    .card-title{
        font-family: 'Dead Kansas';
        font-size: 32px;
        color: var(--_title);
    }
    .card-body .btn{
        background-color: rgb(221, 221, 221);
    }
    .btn:hover{
        background-color: var(--_button-hover);
    }
    .fond-blond{
        --title: var(--fb-color);
        --button-hover: var(--fb-color);
        /* border: 2px solid var(--fb-color); */
    }
    .gentle-ginger{
        --title: var(--gg-color);
        --button-hover: var(--gg-color);
        /* border: 2px solid var(--gg-color); */
    }
    .older-elder{
        --title: var(--oe-color);
        --button-hover: var(--oe-color);
        /* border: 2px solid var(--oe-color); */
    }
    .hooray-ipa{
        --title: var(--hi-color);
        --button-hover: var(--hi-color);
        /* border: 2px solid var(--hi-color); */
    }
    .proud-stout{
        --title: var(--ps-color);
        --button-hover: var(--ps-color);
        /* border: 2px solid var(--ps-color); */
        color: white;
    }
    .rusty-red{
        --title: var(--rr-color);
        --button-hover: var(--rr-color);
        --card-shadow: var(--rr-color);
        /* border: 2px solid var(--rr-color); */
    }
    .card-text{
        font-size: 14px;
        font-family: 'Chalkduster';
        color: rgb(82, 82, 82);
    }
    .front-label{
        border: none;
        transform: translateY(0);
        transform: sacle(1);
        box-shadow: none;
        transition: all 1s ease;
    }
    .front-label{
        z-index: 1;
    }
    .top-label{
        z-index: 0;
        border: none;
    }
    .front-label:hover{
        transform: translateY(-10px);
        transform: scale(1.1);
        box-shadow: rgb(69, 69, 72, 0.3) 0px 15px 15px 0px;
    }
    .drunk-bird{
        width: 200px;
        transform: translateX(-100%);
        transition: transform 2s ease;
        position: absolute;
        top: 0px;
        left: 0px;
    }
    .drunk-bird.howdy{
        transform: translateX(0%);
    }
    .sign-up{
        background-color: rgb(229, 229, 229);
        padding: 80px 0px;
        position: relative;
    }
    .sign-up-content{
        color: rgb(44, 44, 44);
    }
    input{
        padding: 5px 10px;
        width: 400px;
        border-radius: 10px;
        outline: none;
        border: none;
        cursor: pointer;
    }
    .contact-list{
        position: relative;
    }
    .contact-list::before{
        content: "";
        position: absolute;
        top: 0;
        left: 4.2rem;
        bottom: 0;
        width: 2px;
        background-color: #ccc;
        z-index: 0;
    }
    .get-in-touch{
        color: rgb(71, 71, 71);
    }
    .info-value{
        color: rgb(92, 92, 92);
    }