* {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}
.header {
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 4px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 114px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    gap: 20px;
    color: #1e1e1e;
}
.header a {
    text-decoration: none;
    font-style: italic;
    font-weight: 900;
    color: #000;
    line-height: 100%;
    padding: 8px;
}
.home, .title {
    font-weight: 900;
    color: #000;
    line-height: 100%;
}

.pizzaclub-high-resolution-logo-icon {
    width: 182px;
    height: 77px;
    object-fit: cover;
}

.navigation-pill, .navigation-pill2 {
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    background-color: transparent; 
    border: none; 
}

.carousel-item {
    display: block;
    width: 100%;
    height: auto;
}

.carousel-item img {
    filter: brightness(80%);
    width: 100%;
    height: auto;
}

.carousel-inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel {
    margin-top: 0px;
}

.carousel-indicators {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-screen {
    width: 100%;
    position: relative;
    background-color: #fff;
    min-height: 100vh;
    overflow: hidden;
    text-align: left;
    font-size: 32px;
    color: #0d0d0d;
}
.container .frame-item {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 24px;
    border: 4px solid #000 !important;
}
.row {
    gap: 140px;
}
a {
    color: black !important;
}  
a:hover {
    color: black !important;
}
.extended-fab-parent {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
.fab-button {
    display: inline-block;
    cursor: pointer;
}
.fab-icon {
    width: 133px; 
    height: auto;
    border-radius: 0; 
    box-shadow: none; 
    background-color: transparent; 
    margin: 0; 
    padding: 0;
    border: none; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab-button:hover .fab-icon {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}
.fab-button:active .fab-icon {
    transform: scale(0.98);
}
.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}
.card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25em;
    margin-bottom: 8px;
}

.card-description {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 15px;
}

.card-price {
    font-size: 1.10em;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-button {
    display: inline-block;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    margin-top: auto;
    text-decoration: none;
    color: #000;
}
.card-button:hover {
    background-color: #ddd;
}
.pizza-page-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.pizza-image {
    width: 40%;
}

.pizza-image img {
    width: 100%;
    height: auto;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.pizza-details {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.option-group {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.option-button {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.option-button img {
    width: 100px;
    height: auto;
}

.option-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.ingredient-item {
    background-color: #f0e6f6;
    border-radius: 20px;
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #65558f;
}

.add-ingredient {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.add-ingredient img {
    width: 120px;
    height: auto;
}  
.add-ingredient:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
} 

.price-and-order {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.price {
    font-size: 2em;
    font-weight: bold;
    margin-right: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.quantity-button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.quantity-button img {
    width: 30px;
    height: auto;
}
.quantity-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.quantity {
    margin: 0 10px;
    font-size: 1.2em;
}

.order-button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.order-button img {
    width: auto;
    height: auto;
}
.order-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
