/******************************************************** Checkers Pizza CSS *****************************************************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

html {
     scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100%;
    font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}

/*
=======
Home
=======
*/

/************** Top Banner Styling **************/
.banner-text {
    color: white; 
    text-align: center; 
    padding: 10px 0; 
    font-size: 1.3rem;
    font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    position: relative; 
    overflow: hidden; 
    height: 30px;
    text-shadow: 2px 2px black;
    z-index: 1000;
}

    #banner-message {
            animation: slideIn 5s ease-in-out infinite; /* Animation */
        }

    @keyframes slideIn {
        0% {
            transform: translateY(100%); /* Start below the banner */
            opacity: 0;
        }
        20% {
            transform: translateY(0); /* Slide in */
            opacity: 1;
        }
        80% {
            transform: translateY(0); /* Stay visible */
            opacity: 1;
        }
        100% {
            transform: translateY(-100%); /* Slide out above */
            opacity: 0;
        }
    }
/************** End Top Banner Styling **************/

/************** Style for language ESP/ENG buttons container *****************/
        .language-buttons {
            position: fixed;
            top: 800px;
            right: 0px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        /* Style for buttons */
        .lang-btn {
            padding: 5px 10px;
            background-color: black;
            color: white;
            border: none;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .lang-btn:hover {
            color: #fff;
            background-color: #CA080E;
        }
        
        /* Highlight active button */
        .lang-btn.active {
            background-color: #CA080E;
            color: #fff;
        }
/************** End Style for language ESP/ENG buttons container *****************/

/* Banner main for parallax */
.banner_main {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.slideshowContainer {
    position: fixed; /* Keep it in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Push it to the back */
}

.slideshowContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

.visible {
  opacity: 1;
}

.slideshowArrow {
  font-size: 5em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.slideshowArrow:hover {
  opacity: 0.75;
}

#leftArrow {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translate(-40%, -40%);
}

#rightArrow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(40%, -40%);
}

.slideshowCircles {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}

.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.main-content {
    flex: 1; 
}

/* Call Us & Order Now */
.main {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 25px 10px 10px;
    margin: 0px 5px 5px 5px;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.main a.btn {
    color: #fff;
    font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    text-transform: uppercase;
    transition: linear 1s;
    letter-spacing: 3px;
    font-size: 14px;
    cursor: pointer;
    z-index: 4;
    text-align: center;
    padding: 5px 10px;
    border: solid 1px;
    border-radius: 0px;
    box-shadow: 0px 0px 10px rgb(7 9 5 / 5%);
    background-color: #CA080E;
    text-decoration: none;
}

.main a:hover.btn {
  color: #fff;
  text-decoration: none;
  background-color: #CA080E;
  border: solid 2px gray;
}

/* End Call Us & Order Now */

/*

=========
Clearfix
=========
*/

.group: before,
.group: after {
	content: "";
	display: table;
}
.group: after {
	clear: both;
}
.group {
	clear: both;
	*zoom: 1;
}

/*
==============
Custom Styles
==============
*/

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
    background-color: #fff;
    margin: 0;
}

h1 {
   font-size: 30px; 
   margin:10px;
   text-align:center;
}

h2 {
	font-size: 30px;
	line-height: 44px;
	color: #fff;
	font-style: italic;
	margin-bottom: 10px;
	padding:10px 0px 0px 40px;
	background-color:#CA080E;
	width: 420px;
    letter-spacing: 2.0px;
    min-height: 60px;
        -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 25%, 75% 0);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 78% 100%, 85% 0)
}

h3 {
	font-size: 21px;
	color: black;
}

h4 {
	font-size: 18px;
	color: blue;
	line-height: 25px;
}

h5 {
	color: black;
	font-size: 14px;
	font-weight: 400;
}

strong {
	font-weight: 400;
}

.centered {
	text-align:center;
}

p {
    color: #606060;
}

/*
=======
Header
=======
*/

/* Navigation Bar */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 3px 20px;
    background: none;
    z-index: 10;
}

.navigation-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.navigation-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    width: 160px;
    height: auto;
    margin: 5px 0px 0px 5px;
    z-index: 2;
}

.primary-nav {
    display: flex;
    flex-direction: row;
    gap: 15px;
    list-style: none;
    font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    letter-spacing: 2.0px;
    z-index: 4;
    position: relative;
    transition: linear 1s;
}

.primary-nav a {
    text-decoration: none;
    background-color: #F67F04;
    color: #fff;
    padding: 10px 15px;
    transition: linear 1s;
    z-index: 4;
}

.primary-nav a:hover {
    background-color: #CA080E;
    color: #fff;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.submenu {
    display: none;
    position: absolute;
    background-color: #F67F04;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 5;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    margin-top: 5px;
}

.submenu a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.submenu a:hover {
    background-color: #CA080E;
    color: #fff;
}

/* Show submenu on hover */
.dropdown:hover .submenu {
    display: block;
}

/* Burger Menu (for mobile) */
.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: black;
    cursor: pointer;
    position: absolute;
    padding: 10px;
    top: 30px;
    right: 15px;
    z-index: 20;
    transition: transform 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .primary-nav {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #F67F04;
        display: none;
    }

    .primary-nav a {
        padding: 15px;
        text-align: center;
        display: block;
    }

    .burger-menu {
        display: block;
    }

    .burger-menu:hover + .primary-nav {
        display: flex;
    }

    .submenu {
        position: static;
        box-shadow: none;
    }

    .dropdown:hover .submenu {
        display: block;
    }
}


/**************** Specials Section *****************/
#specials {
    position: relative;
    padding: 20px 20px 30px 20px;
    height:100%;
    text-align: center;
    z-index: 2; 
    background-color:#A3A3A3;
}

.specials-section {
    padding: 20px;
    text-align: center;
}

.specials-banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Ensures images wrap if needed */
    justify-content: center; /* Centers content */
    gap: 30px; /* Optional spacing between images */
}

/* Images in the banner */
.specials-banner img {
    flex: 1 1 calc(50% - 10px); /* Each image takes 50% of the width minus the gap */
    max-width: 30%; /* Prevent overflow */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensures images look good */
    border: solid #F67F04 5px;
    border-radius: 9px;
}

.specials-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.gifts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
}

.gifts-grid div {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 300px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.gifts-grid div:hover {
    transform: translateY(-5px);
}

.gifts-grid img {
    border-radius: 8px;
}

.gifts-grid h3 {
    color: #46d2f2;
    margin: 15px 0;
}

.gifts-grid .cta {
    text-decoration: none;
    background-color:black;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px;
    box-shadow: 0px 0px 10px rgb(7 9 5 / 5%);
    border-radius: 0px;
    color: #fffef9;
    transition: linear 1s;
    letter-spacing: 3px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    padding: 15px;
}


.gifts-grid .cta:hover {
    background-color: #f8e100;
    color: #40D1F2;
}
    
 .gifts-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background-size: cover;
    background-position: center;
 }
 
 
 /********************* CATEGORIES Section *********************/

#categories {
    padding: 40px 50px;
    text-align: center;
    height: 100%;
    background-color:black;
}

#categories h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0FAED2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.categories-grid a {
    display: block;
    transition: border-color 0.3s ease;
}

.categories-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px; 
    transition: transform 0.3s ease;
}

.categories-grid a:hover img {
    transform: scale(1.05); /* Adds a zoom effect on hover */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    #categories h2 {
        font-size: 1.5rem;
    }

    .categories-grid {
        gap: 10px; /* Reduce spacing on smaller screens */
    }
}

/****************** End Categories ********************/

/**************** Location Section *****************/
.location {
    display:flex;
    flex-direction: row;
    background-color: black;
    padding: 30px;
}

.location-banner {
    display:flex;
    flex-direction: column;
    background-color: #EBEBEB;
    align-items: center;
    padding: 20px;
    margin: 20px;
}

.location-banner p{
     color: black;
     padding: 20px;
     font-size: 1.5rem;
}

/**************** End Location Section *****************/
/**************** Most Popular Section *****************/
.most-ordered {
    display:flex;
    flex-direction: column;
    background-color: #fff;
    padding: 30px;
    overflow: hidden;
    position: relative;
}

.most-ordered-banner {
    display:flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    margin: 20px;
    animation: slide 10s linear infinite;
}
.most-ordered-banner:hover {
            animation-play-state: paused;
}

.image-holder {
    width: 20%;
    padding: 20px;
    flex-shrink: 0;
    text-align: center;
    text-shadow: 1px 1px gray;
}

.image-holder p{
    font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 2.0px;
    color: black;
}

@keyframes slide {
            from { transform: translateX(-50%); }
            to { transform: translateX(0); }
        }


/**************** End Most Ordered Section *****************/

/****************** Start footer ********************/
            
            footer {
              display: flex;
              flex-wrap: wrap;
              background-color:#CDCDCD;
              color: black;
              padding: 40px;
              justify-content: space-between;
              align-items: center;
              font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
              letter-spacing: 2.0px;
              flex-direction: row;
            }
            
            footer a {
              font-size: 1em; 
              line-height: 1.8; 
              letter-spacing: 1px; 
              text-transform: uppercase;
              text-decoration: none;
              color:#F67F04;
              font-weight: 600;
            }
            
            footer a:hover {
              color: #CA080E ;
              opacity: .8;
            }
            
            footer #left-footer {
              flex-wrap: wrap;
              display: flex;
              flex-direction: column;
            }
            
            footer #left-footer ul {
              list-style: none;
              line-height: 1.5;
            }
            
            footer #left-footer ul a:hover {
              color:#CA080E;
            }
            
            #social-media-footer ul {
                display: flex;
                flex-direction: row;
                text-align: center;
                font-size: 25px;
                list-style: none;
            }
            
            #social-media-footer li {
                padding: 0px 20px 10px 0px;
            }
            
            
            .bottom-footer{
            font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
            letter-spacing: 2.0px;
            background-color: #333333;
            height: 10%;
            width: 100%;
            padding: 15px;
            text-align: center;
            font-size: 12px;
            }
            
/************* End Footer ******************/
 



/*.ribbon {
  --s: 50px; /* the ribbon size */
  --d: 20px; /* the depth */
  --c: 20px; /* the cutout part */
  
 /* padding: 0 calc(var(--s) + var(--d)) var(--d); /* we need some padding so the text doesn't overlap the ribbon part */
  /*background:
    conic-gradient(at left  var(--s) bottom var(--d),
     #0000 25%,#0008 0 37.5%,#0004 0) 0   /50% no-repeat,
    conic-gradient(at right var(--s) bottom var(--d),
     #0004 62.5%,#0008 0 75%,#0000 0) 100%/50% no-repeat;
  clip-path: polygon(0 var(--d), var(--s) var(--d),var(--s) 0,calc(100% - var(--s)) 0,calc(100% - var(--s)) var(--d),100% var(--d),calc(100% - var(--c)) calc(50% + var(--d)/2),100% 100%,calc(100% - var(--s) - var(--d)) 100%,calc(100% - var(--s) - var(--d)) calc(100% - var(--d)),calc(var(--s) + var(--d)) calc(100% - var(--d)),calc(var(--s) + var(--d)) 100%,0 100%,var(--c) calc(50% + var(--d)/2));
  background-color: #46d2f2; /* the main color */
  width: fit-content;
}*/



/*==============
  Media Query
==============*/


/* ============== Mobile ============== */


@media screen and (max-width: 320px) {
    .main a.btn {
        font-size: 2rem;
    }
    
    
    .logo img{
        width: 100px;
        height: auto;
    }
    
    .primary-nav {
        display: none; /* Hide the nav */
        padding: 40px 60px 40px 20px;
        flex-direction: column;
        background-color: black; /* Optional: Dropdown background */
        position: absolute;
        height:25%;
        top: 85px;
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .primary-nav.show {
        display: flex;
        background-color:#46D2F2;
        height: 25%;
    }

    .burger-menu {
        display: block; 
    }
    
     /*  .imageSlides {
        min-width: 100%;
        height: 100vh;
        max-width: 100%;
      }*/
      
     .banner-text {
        font-size: 1rem;
    }
    
}


@media screen and (min-width: 321px) and (max-width: 767px) {
    
        .slideshowCircles {
        bottom: 3%;
    }
    
     .logo img{
        width: 100px;
        height: auto;
    }
    
    .primary-nav {
        display: none; /* Hide the nav */
        flex-direction: column;
        background-color: black; /* Optional: Dropdown background */
        position: absolute;
        padding:40px 60px 40px 20px;
        top: 110px; /* Adjust to your header height */
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .primary-nav.show {
        display: flex; 
    }

    .burger-menu {
        display: block; 
    }

 /* .imageSlides {
        min-width: 100%;
        height: 100vh;
        max-width: 100%;
      }*/
      
        .banner-text {
        font-size: 1rem;
    }
    
}

/* ============== Tablet ============== */

@media screen and (min-width: 768px) and (max-width: 1025px) {
 
    
    .logo img {
        width: 140px;
        height: auto;
    }
    
    
    .primary-nav {
        display: none; /* Hide the nav */
        flex-direction: column;
        background-color: black; /* Optional: Dropdown background */
        position: absolute;
        padding:40px 60px 40px 20px;
        top: 110px; /* Adjust to your header height */
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }
    
    .primary-nav.show {
        display: flex; 
    }

    .burger-menu {
        display: block; 
    }
    
 
}
 
/*============== Laptop ==============*/

@media screen and (min-width: 1026px) and (max-width: 1400px)  {
    .logo img {
        width: 140px;
        height: auto;
    }

}
 
@media screen and (min-width: 1401px) and (max-width: 1656px) {
     .logo img{
        width: 140px;
        height: auto;
    }
    
}

/*============== Desktop ==============*/

@media screen and (min-width: 1657px) and (max-width: 2143px) {
    
     .logo img{
        width: 140px;
        height: auto;
    }
 
}

@media screen and (min-width: 2144px){
   .logo img{
        width: 150px;
        height: auto;
    }
}


/*******************Menu Page********************/
#menu {
    position: relative;
    padding: 30px 20px 0px 20px;
    text-align: center;
}

.menu-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: white;
    position: relative;
    height: 50%;
    padding-top:50px;  
}

.menu-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: white;
    position: relative;
    padding-top: 100px; 
}

/* Product grid layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted for better responsiveness */
    gap: 20px;
    justify-content: center;
    padding: 10px 30px;
}

/* Individual product card */
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for better interactivity */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Placeholder for images */
.image-placeholder {
    width: 100%;
    height: 150px;
    background-color: #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

/* Optional hover effect for image placeholders */
.product-card:hover .image-placeholder {
    background-color: #ddd;
}

/* Product text styles */
.product-name {
    font-size: 16px;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

.italic {
    font-style: italic;
    font-size: 14px;
}

/* Improved price visibility */
.price {
    font-weight: bold;
    font-size: 16px;
    color: #e63946; /* Red color for better contrast */
}

/* Product description styling */
.product-description {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr; /* Single column for smaller screens */
    }

    .product-card {
        padding: 12px;
    }

    .image-placeholder {
        height: 120px; /* Smaller images for compact view */
    }

    .product-name {
        font-size: 14px;
    }

    .price {
        font-size: 14px;
    }
}
/*******************End Menu Page************************/

/*******************Pizzas Page**************************/

    .product-rectangle-prices {
       display:flex;
       flex-direction: row;
       justify-content: center;
       border: solid #CA080E 2px;
       background-color: #eee;
       border-radius: 0px;
       margin: 10px 30px;
    }
    
    .product-size {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        padding: 10px;
    }
    
    /*Create your own section*/
    
    .price-create-your-own {
       display:flex;
       flex-direction: row;
       justify-content: center;
       border: solid #CA080E 3px;
       background-color: #eee;
       border-radius: 0px;
       margin: 10px 30px;
    }
    
    .product-option {
        font-size: 20px;
        margin: 5px 0;
        color: black;
    }
    
    .product-name-create {
        font-size: 20px;
        margin: 5px 0;
        display: flex;
        align-items: center;
        color: black;
    }
    
    .product-size-option {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    .your-own-text{
       display: flex;
       align-items: center;
       padding:10px;
       justify-content: center;
    }
    
/*******************End Pizzas Page**********************/

/******************* Coupons Page **********************/

.sidebar {
            padding: 20px;
        }
        .coupons-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 20px;
            flex: 1;
        }
        .coupon {
            border: 2px dashed #ccc;
            padding: 15px;
            text-align: center;
        
        }
        .coupon-title {
            background-color:#CA080E;
            color: white;
            font-size: 22px;
            padding: 10px;
            min-height: 40px;
        -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 25%, 75% 0);
        clip-path: polygon(0 0, 0 100%, 100% 100%, 78% 100%, 85% 0)
        }
        .coupon-subtitle {
            color: black;
            font-size: 20px;
            margin: 10px 0;
        }
        .coupon-price {
            color: red;
            font-size: 2rem;
            font-weight: bold;
        }
        .coupon-text {
            color: gray;
            font-size: 12px;
        }
        .print-button {
            display: block;
            margin-top: 20px;
            padding: 10px;
            background-color: #F67F04;
            color: white;
            border: none;
            cursor: pointer;
        }
/******************* End Coupons Page **********************/

/******************* Order Section **********************/

.order{
    display: flex;
    flex-direction: column;
    align-items: left;
    background-color: #fff;
}

.order-logos{
    display: flex;
    flex-direction: row;
    margin-bottom: 25px;
    justify-content: space-evenly;
    padding: 30px;
    align-items: baseline;
}

.logo-delivery{
    display:flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

/******************* End Order Section **********************/








































