*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
   background-color: #000;
   color: #fff;
   font-family: 'Roboto', sans-serif;
   margin: 0;
   padding: 40px;
}
header{
    text-align: center;
    margin-bottom: 40px;
}
header img{
    width: 400px;
}
header img{
    margin: auto;
}
.container{
    border-radius: 20px;
    padding: 30px;
}
.drinks{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.card{
    background-color: #111;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 23%;
    position: relative;
    border: 1px solid transparent;
    box-shadow: 2px 2px 10px rgba(120, 113, 113, 0.1);
}
.card:first-child{
    border: 1px solid #e67e22;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.5);
}
.card .tag{
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #e67e22;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.card .tag.new{
    color: #fff;
    background-color: #e67e22;
}
.card img{
    max-width: 80%;
    height: auto;
    margin-bottom: 15px;
}
.card h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin: 0 0 5px 0;
}
.card p{
    color: #aaa;
    margin: 0 0 15px 0;
    font-size: 14px;
}
.card span{
    font-size: 20px;
    font-weight: 500;
    color: #e67e22;
}
.special{
    display: flex;
    align-items: center;
    border: 1px solid rgba(128, 128, 128, 0.405);
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
    
}
.special-img{
    /* margin: auto; */
}
.special-img img{
    width: 120%;
    height: 50vh;
    border-radius: 50px;
    padding-right: 120px;
}
.special-text{
    width: 50%;
}
.special-text h4{
    color: #e67e22;
    font-size: 14px;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}
.special-text h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    margin: 0 0 20px 0;
}
.special-text p{
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}
.special-text button{
    background-color: transparent;
    color: #e67e22;
    border: 1px solid #e67e22;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}
.special-text button:hover{
    background-color: #e67e22;
    color: #000;
}
.leaf-pattern{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    opacity: 0.3;
}
footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}
.footer-center{
    display: flex;
    gap: 15px;
    align-items: center;
}
.footer-center a{
    color: #aaa;
    text-decoration: none;
}
.footer-center a:hover{
    color: #fff;
}
.footer-right{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-right p{
    margin: 0;
}
.footer-right a img{
    width: 20px;
    height: 20px;
    filter: invert(0.5);
}