@font-face {
    font-family: "CA BND W00 Regular";
    src: url("5f73f6e0b1d9fa956ca4135071d4e604.eot");
    src: url("5f73f6e0b1d9fa956ca4135071d4e604.eot?#iefix")format("embedded-opentype"),
        url("5f73f6e0b1d9fa956ca4135071d4e604.woff")format("woff"),
        url("5f73f6e0b1d9fa956ca4135071d4e604.woff2")format("woff2"),
        url("5f73f6e0b1d9fa956ca4135071d4e604.ttf")format("truetype"),
        url("5f73f6e0b1d9fa956ca4135071d4e604.svg#CA BND W00 Regular")format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "F. CA Fourty Open";
    src: url("https://db.onlinewebfonts.com/t/f02bbb34dea7c889701b62818610fadb.eot");
    src: url("https://db.onlinewebfonts.com/t/f02bbb34dea7c889701b62818610fadb.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/f02bbb34dea7c889701b62818610fadb.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/f02bbb34dea7c889701b62818610fadb.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/f02bbb34dea7c889701b62818610fadb.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/f02bbb34dea7c889701b62818610fadb.svg#F. CA Fourty Open")format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #0B1315;
    font-family: "CA BND W00 Regular", sans-serif !important;
    color: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    transition: background-color 0.3s ease; /* Tranziție lină */
}
.header.scrolled {
    background-color: #000; /* Culoare complet opacă când antetul este derulat */
}
h1 {
    font-family: "F. CA Fourty Open", sans-serif !important;
    font-size: 70px;
    font-weight: 700; 
    text-transform: uppercase;
}
#product-grid {
    margin-left: -15px;
    margin-right: -15px;
}

#product-grid .col-6,
#product-grid .col-md-4,
#product-grid .col-lg-3 {
    padding: 15px;
}

#product-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#product-grid a:hover img {
    transform: scale(1.05);
}
.navbar-nav .nav-link {
    font-family: "CA BND W00 Regular", sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff !important;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #c9ab81;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scaleX(0);
    opacity: 0;
}

.navbar-nav .nav-link::before {
    transform-origin: left;
}

.navbar-nav .nav-link::after {
    transform-origin: right;
    bottom: -3px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:active::before,
.navbar-nav .nav-link:active::after,
.navbar-nav .nav-item.active .nav-link::before,
.navbar-nav .nav-item.active .nav-link::after {
    transform: scaleX(1);
    opacity: 1;
}

#about p {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 3px;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

#mainCarousel {
    position: relative;
}

.carousel-item {
    height: 100vh;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    z-index: 2;
}

.text-brand {
    color: #c9ab81 !important;
    word-break: break-word;
    font-size: 48px;
    margin-bottom: 3rem;
}
.text-app {
    color: #c9ab81 !important;
    font-size: 1.9rem;
    margin-bottom: 3rem;
}

#about {
    padding: 80px 0;
}
.text-gold {
    color: #c9ab81 !important;
    font-weight: bold;
}
#menu .card {
    cursor: pointer;
}
.divider {
    background-color: #111D22;
    width: 100%;
    height: 5rem;
    margin-bottom: 5rem;
}
.card {
    background-color: #111D22 !important;
    color: #fff;
}
/* Stiluri pentru secțiunea de comandă */
#comanda {
    padding: 80px 0;
}

.delivery-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.delivery-logo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.delivery-card:hover .delivery-logo {
    transform: scale(1.05);
}

.delivery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.delivery-card:hover .delivery-overlay {
    transform: translateY(0);
}

.delivery-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: block;
}
/* Stiluri pentru secțiunea cu hartă */
#locatie {
    padding: 80px 0;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.address-info {
    margin-top: 20px;
    font-size: 18px;
    color: #c9ab81;
}

footer {
    color: #fff;
    padding: 50px 0;
    margin-bottom: 5rem;
    text-align: center;
}

footer img {
    margin-bottom: 30px;
}

footer p {
    margin-bottom: 10px;
}
/* Stiluri pentru butonul "Comandă Acum" */
.btn-custom {
    display: inline-block;
    padding: 15px 30px;
    color: #c9ab81;
    border: 2px solid #c9ab81;
    background-color: transparent;
    border-radius: 100px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #c9ab81;
    color: #0B1315;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.5rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }

    #about p {
        font-size: 0.9rem;
    }
    .navbar-brand img {
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .carousel-caption h1 {
        font-size: 4rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .delivery-logo {
        height: 150px;
    }
}
.menu-category {
    color: #c9ab81;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-family: "F. CA Fourty Open", sans-serif;
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item img {
    width: 100%;
    border-radius: 5px;
}

.menu-item h4 {
    font-size: 1.2rem;
    margin-top: 0;
}

.menu-item p {
    font-size: 1rem;
    margin-bottom: 0;
}
